Skip to content

Instantly share code, notes, and snippets.

@pushmon
Created February 22, 2012 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pushmon/1886414 to your computer and use it in GitHub Desktop.
Save pushmon/1886414 to your computer and use it in GitHub Desktop.
Python
import urllib2
urlString = 'http://pshmn.com/eaFnY'
try:
handle = urllib2.urlopen(urlString)
handle.read()
handle.close()
except IOError:
print "log error"
@fawkesley
Copy link

Probably time to make this Python3 compatible :) You'll need to change line 9 to print("log error") and not use urllib2. Cheers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment