what is the easiest way to build forms to import to db

43 Views Asked by At

I need to convert an excel sheet that is shared between couple of users and they do insert/update on it to a more DB/web-based application. What would be the easiest route to do that?

1

There are 1 best solutions below

0
On

If I understand properly, What you want achieve is to switch from Excel file to web/based application.

  1. you have to create a SQL (Postgresql, Mysql...) database that represent the data structure of the excel file.
  2. Create REST API for web application
  3. Create your web interfaces in order to perform input data using html, css and javascript.

To achieve this, in python you have a lot of web frameworks that simplify your work. following some of the most popular:

Or maybe take a look of this tool, Streamlit https://streamlit.io/