I have a python file that takes in 6 parameters from the command line and runs.
python_file.py param1, param2, param3, param4, param5, param6
What I would like to do is pass the parameters from a web app using flask with bootstrap. Each parameter needs to have the option from the front end to select what parameter the user chooses. Example of what I am looking for on the front end below is:
Param1_drop_down: Param2 drop_down:
- option1 - option1 etc..
- option2
- option3
- option4
Any ideas on this? I am new to front end work so any help would be greatly appreciated.