You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
203 B
Python

#!/usr/bin/python
import sys, urllib2, re
contents = urllib2.urlopen(sys.argv[1]).read()
data = re.search('<a class="highlighted-btn" href="([^"]+)">Premium', contents)
url = data.group(1)
print url