import urllib
fun open():
return urllib.urlopen('http://eample.com')
But when example.com opens. It does not render css and js. So, how to open a url in browser in python.
@error(404)
def error404(error):
return webbrowser.open('http://example.com')
I am using bottle. Giving me the error: TypeError("'bool' object is not iterable",)
errordecorator seems to be expecting an iterable.webbrowswer.openwill open a url in the browser and returnTrueorFalse, preserving command-query-separation. You don't actually want to open this page in the browswer, do you? – aaronasterling Nov 29 '10 at 8:54webbrowser.open('http://www.google.com')and see if it does what you want. – aaronasterling Nov 29 '10 at 9:16