Skip to content

Instantly share code, notes, and snippets.

@pudquick
Created March 8, 2013 00:45
Show Gist options
  • Select an option

  • Save pudquick/5113299 to your computer and use it in GitHub Desktop.

Select an option

Save pudquick/5113299 to your computer and use it in GitHub Desktop.
import urllib2, re
html_src = urllib2.urlopen('http://java.com/en/download/manual.jsp?locale=en').read()
dmg_link = re.search('<a title="[ ]*Download Java software for Mac OS X" href="(http://javadl.sun.com/webapps/download/AutoDL\?BundleId=[0-9]+)">', html_src).group(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment