|
|
@ -1,16 +1,18 @@ |
|
|
|
#VERSION: 1.01 |
|
|
|
#VERSION: 1.10 |
|
|
|
#AUTHORS: Fabien Devaux (fab@gnux.info) |
|
|
|
#AUTHORS: Fabien Devaux (fab@gnux.info) |
|
|
|
from novaprinter import prettyPrinter |
|
|
|
from novaprinter import prettyPrinter |
|
|
|
import urllib |
|
|
|
import urllib |
|
|
|
import re |
|
|
|
import re |
|
|
|
|
|
|
|
|
|
|
|
# TODO: add multipage |
|
|
|
|
|
|
|
class btjunkie(object): |
|
|
|
class btjunkie(object): |
|
|
|
url = 'http://btjunkie.org' |
|
|
|
url = 'http://btjunkie.org' |
|
|
|
name = 'btjunkie' |
|
|
|
name = 'btjunkie' |
|
|
|
|
|
|
|
|
|
|
|
def search(self, what): |
|
|
|
def search(self, what): |
|
|
|
dat = urllib.urlopen(self.url+'/search?q=%s&o=52'%what).read().decode('utf8', 'replace') |
|
|
|
i = 1 |
|
|
|
|
|
|
|
while True: |
|
|
|
|
|
|
|
res = 0 |
|
|
|
|
|
|
|
dat = urllib.urlopen(self.url+'/search?q=%s&o=52&p=%d'%(what,i)).read().decode('utf8', 'replace') |
|
|
|
# I know it's not very readable, but the SGML parser feels in pain |
|
|
|
# I know it's not very readable, but the SGML parser feels in pain |
|
|
|
section_re = re.compile('(?s)href="/torrent.*?<tr>') |
|
|
|
section_re = re.compile('(?s)href="/torrent.*?<tr>') |
|
|
|
torrent_re = re.compile('(?s)href="(?P<link>.*?[^"]+).*?' |
|
|
|
torrent_re = re.compile('(?s)href="(?P<link>.*?[^"]+).*?' |
|
|
@ -27,3 +29,7 @@ class btjunkie(object): |
|
|
|
torrent_infos['engine_url'] = self.url |
|
|
|
torrent_infos['engine_url'] = self.url |
|
|
|
torrent_infos['link'] = self.url+torrent_infos['link'] |
|
|
|
torrent_infos['link'] = self.url+torrent_infos['link'] |
|
|
|
prettyPrinter(torrent_infos) |
|
|
|
prettyPrinter(torrent_infos) |
|
|
|
|
|
|
|
res = res + 1 |
|
|
|
|
|
|
|
if res == 0: |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
i = i + 1 |