How do I call a function after using 'webbrowser.get()' in Python?

196 Views Asked by At

The problem webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s").open("http://"+where.strip())

    main()       

I want to call main() while the browser is still open however it only runs after closing the browser,how do I fix that?

1

There are 1 best solutions below

0
On

You will need to open the browser as a new process and create a pipe for the data to flow between. There is a wonderful Stack Overflow topic that already covers this topic for Python; please check it out here:

Launch a completely independent process