I have a Python script that loops through a list of SQL queries read from an Excel file, executes them, and stores output results to a .csv file.
Currently I trigger this from the command line locally. I would like to create a very basic Web page, something that basically has a button to click to execute the Python script for now. If I can get the output file stored there somehow as well, even better.
The idea being I would start with it locally, but then move the web page somewhere where my team could access it and do the same thing.
I don't need much functionality at all for this web page obviously but this stuff is new to me so not quite sure where to start. Any ideas?
Thanks