I have created a database with python and the results are kept in a text file.
I would like to create a simple html with a search button that looks through my database.
My database would be accessible only on my computer.
My database looks something like this:
Reference | Name | Dimension
XXX AAA 45
So, for example, if I search for a specific reference I would like to obtain their name or dimension obviously.
Is this even possible with python and where do I start ?
I should mention I have basic skills in html and python.
There are multiple ways to solve this:
BaseHTTPServerEither way, you’re going to have to write HTML and JavaScript.