Using a Nokia N900 , I have a urllib.urlopen statement that I want to be skipped if the server is offline. (If it fails to connect > proceed to next line of code ) .
How should / could this be done in Python?
|
|
|
According to the urllib documentation, it will raise
Edit: As unutbu pointed out, |
||||
|
|
|
If you are using Python 2.6 or better,
urllib2 also raises a urllib2.URLError exception if the url does not exist or if your network is down. |
|||||
|
|