- Support category-based requests in piratebay search plugin

This commit is contained in:
Christophe Dumez 2009-08-26 06:02:17 +00:00
parent 0ede09efb5
commit 290bc8b7a6
2 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#VERSION: 1.20
#VERSION: 1.21
#AUTHORS: Fabien Devaux (fab@gnux.info)
#CONTRIBUTORS: Christophe Dumez (chris@qbittorrent.org)
@ -33,7 +33,7 @@ from helpers import retrieve_url, download_file
class piratebay(object):
url = 'http://thepiratebay.org'
name = 'The Pirate Bay'
supported_categories = {'all': '', 'movies': '', 'music': '', 'games': '', 'software': ''}
supported_categories = {'all': '0', 'movies': '200', 'music': '100', 'games': '400', 'software': '300'}
def __init__(self):
self.results = []
@ -101,7 +101,9 @@ class piratebay(object):
while True and i<11:
results = []
parser = self.SimpleSGMLParser(results, self.url)
dat = retrieve_url(self.url+'/search/%s/%u/7' % (what, i))
print self.url+'/search/%s/%u/99/%s' % (what, i, self.supported_categories[cat])
return
dat = retrieve_url(self.url+'/search/%s/%u/99/%s' % (what, i, self.supported_categories[cat]))
parser.feed(dat)
parser.close()
if len(results) <= 0:

View file

@ -2,4 +2,4 @@ isohunt: 1.30
torrentreactor: 1.20
btjunkie: 2.21
mininova: 1.31
piratebay: 1.11
piratebay: 1.21