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?
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