I'm using python to display a web page with webbrowser like this:
url = "file://c/python27/debug.html"
webbrowser.open_new_tab(url)
The user then enters some values on the page and clicks submit. At that point I need my python script to do another function call. How do I know the user has clicked submit on the page that I displayed?
If not, is there a better way to display the html page so I CAN know that it was responded to with a callback or something?