1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00

fix spaces

This commit is contained in:
Viktor Stanchev 2013-02-21 13:24:45 -05:00
parent 031d057cb7
commit e6bf79b444

View File

@ -6,18 +6,18 @@ import sys
import re
if(len(sys.argv) == 1):
print "usage: pirate-get <search query>"
exit()
print "usage: pirate-get <search query>"
exit()
q = sys.argv[1]
f = urllib2.urlopen('http://thepiratebay.se/search/'+q.replace(" ", "+")+'/0/7/0')
f = urllib2.urlopen('http://thepiratebay.se/search/' + q.replace(" ", "+") + '/0/7/0')
mag = re.findall(""""(magnet\:\?xt=[^"]*)""", f.read())
if mag:
for m in range(len(mag)):
name = re.search("dn=([^\&]*)", mag[m])
print str(m)+".", urllib.unquote(name.group(1).encode('ascii')).decode('utf-8').replace("+", " ")
l = raw_input("Select a link: ")
webbrowser.open(mag[int(l)])
for m in range(len(mag)):
name = re.search("dn=([^\&]*)", mag[m])
print str(m) + ".", urllib.unquote(name.group(1).encode('ascii')).decode('utf-8').replace("+", " ")
l = raw_input("Select a link: ")
webbrowser.open(mag[int(l)])
else:
print "no results"