Skip to content

Instantly share code, notes, and snippets.

@gregneagle
Last active August 29, 2015 14:02
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 gregneagle/b4cd9887adce867afbd4 to your computer and use it in GitHub Desktop.
Save gregneagle/b4cd9887adce867afbd4 to your computer and use it in GitHub Desktop.
import urllib2
url = 'http://www.macbartender.com/updates/Appcast.xml'
request = urllib2.Request(url=url)
request.add_header('user-agent', 'Mozilla/5.0')
url_handle = urllib2.urlopen(request)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment