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
#!/usr/bin/python | |
import urllib | |
import re | |
page = urllib.urlopen('http://dl.bukkit.org/downloads/craftbukkit/list/rb/').read() | |
re1='.*?' # Non-greedy match on filler | |
re2='(MD5)' # Variable Name 1 | |
re3='.*?' # Non-greedy match on filler |