Is there a way to open a browser from a Python application, while posting data to it in POST method?
I tried using webbrowser.open(url)
to open the browser window, but I need to also post some data to it (via POST variables), to make sure the page opens with the proper information.
As an example, I would like to open http://duckduckgo.com, while posting "q=mysearchterm" as POST data to it, so the page will open with pre-filled data.