[search engine] Fix Python 2 implementation of Torrentz

This commit is contained in:
ngosang
2015-07-08 10:53:57 +02:00
parent d0b54b0797
commit ee44fd54b6
4 changed files with 14 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
#VERSION: 2.15
#VERSION: 2.16
#AUTHORS: Diego de las Heras (diegodelasheras@gmail.com)
# Redistribution and use in source and binary forms, with or without
@@ -106,14 +106,15 @@ class torrentz(object):
# initialize trackers for magnet links
trackers = '&' + '&'.join(urlencode({'tr' : tracker}) for tracker in self.trackers_list)
results_list = []
parser = self.MyHtmlParser(results_list, self.url, trackers)
i = 0
while i < 6:
results_list = []
# "what" is already urlencoded
html = retrieve_url(self.url + '/any?f=%s&p=%d' % (what, i))
parser = self.MyHtmlParser(results_list, self.url, trackers)
parser.feed(html)
parser.close()
if len(results_list) < 1:
break
del results_list[:]
i += 1
parser.close()

View File

@@ -6,4 +6,4 @@ legittorrents: 2.00
mininova: 2.00
piratebay: 2.11
torrentreactor: 1.40
torrentz: 2.15
torrentz: 2.16