Created
March 8, 2013 00:45
-
-
Save pudquick/5113299 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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