I want to load a webpage in python and do something
import webbrowser
url = 'http://google.com'
webbrowser.open(url)
//do something
But I don't want the browser has been showed on my screen, I want to hide it so that I can do some other stuff, please give me some advices, thanks