1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

Get the url as a argument and not hardcode it..

This commit is contained in:
Johan Andersson 2011-03-01 17:51:33 +01:00
parent cd8b995565
commit 2c3bc7293e

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python
import re,urllib2,urllib,os,subprocess
import re,urllib2,urllib,sys,os,subprocess
def getdata(url):
request = urllib2.Request(url)
request.add_header = [('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3')]
@ -8,7 +8,8 @@ def getdata(url):
response.close();
return data
text = getdata("http://svtplay.se/t/103466/dokument_inifran")
argv = sys.argv[1]
text = getdata(argv)
m = re.search('dynamicStreams=(.*)\&amp\;background', text)
new = m.group(1)
tmp = new.split("|")