I want to take HTML form data and handle the submited data(string for example) with my python application.
The html file with the form will be stored locally and values will be entered from a browser.
I then want to take the submited values to my python application.
How do I do with the form action and link it to my application? Please point me in the right direction.
BR,
If you are just trying to execute your application from the web application you would like to create, then you can go for anything from bare cgi scripts (in say … Perl) through PHP script and even Django (Python based web framework). It all depend on what you like to do 🙂
If your intention is to integrate your Python app with the web app, you can try doing it in Django web framework.