|
|
|
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
|
|
|
|
#VERSION: 1.25 |
|
|
|
|
#VERSION: 1.30 |
|
|
|
|
#AUTHORS: BTDigg team (research@btdigg.org) |
|
|
|
|
|
|
|
|
|
# GNU GENERAL PUBLIC LICENSE |
|
|
|
@ -33,26 +33,39 @@ class btdigg(object):
@@ -33,26 +33,39 @@ class btdigg(object):
|
|
|
|
|
|
|
|
|
|
def search(self, what, cat='all'): |
|
|
|
|
req = urllib.unquote(what) |
|
|
|
|
u = urllib2.urlopen('https://api.btdigg.org/api/public-8e9a50f8335b964f/s01?%s' % (urllib.urlencode(dict(q = req)),)) |
|
|
|
|
|
|
|
|
|
try: |
|
|
|
|
what_list = req.decode('utf8').split() |
|
|
|
|
i = 0 |
|
|
|
|
results = 0 |
|
|
|
|
while i < 3: |
|
|
|
|
u = urllib2.urlopen('https://api.btdigg.org/api/public-8e9a50f8335b964f/s01?%s' % urllib.urlencode(dict(q = req, p = i))) |
|
|
|
|
for line in u: |
|
|
|
|
try: |
|
|
|
|
line = line.decode('utf8') |
|
|
|
|
if line.startswith('#'): |
|
|
|
|
continue |
|
|
|
|
|
|
|
|
|
info_hash, name, files, size, dl, seen = line.strip().split('\t')[:6] |
|
|
|
|
name = name.translate(None, '|') |
|
|
|
|
res = dict(link = 'magnet:?xt=urn:btih:%s&dn=%s' % (info_hash, urllib.quote(name)), |
|
|
|
|
name = name.replace('|', '') |
|
|
|
|
# BTDigg returns unrelated results, we need to filter |
|
|
|
|
if not all(word in name.lower() for word in what_list): |
|
|
|
|
continue |
|
|
|
|
|
|
|
|
|
res = dict(link = 'magnet:?xt=urn:btih:%s&dn=%s' % (info_hash, urllib.quote(name.encode('utf8'))), |
|
|
|
|
name = name, |
|
|
|
|
size = size, |
|
|
|
|
seeds = int(dl), |
|
|
|
|
leech = int(dl), |
|
|
|
|
engine_url = self.url, |
|
|
|
|
desc_link = '%s/search?%s' % (self.url, urllib.urlencode(dict(info_hash = info_hash, q = req)),)) |
|
|
|
|
desc_link = '%s/search?%s' % (self.url, urllib.urlencode(dict(info_hash = info_hash, q = req)))) |
|
|
|
|
|
|
|
|
|
prettyPrinter(res) |
|
|
|
|
finally: |
|
|
|
|
u.close() |
|
|
|
|
results += 1 |
|
|
|
|
except: |
|
|
|
|
pass |
|
|
|
|
|
|
|
|
|
if results == 0: |
|
|
|
|
break |
|
|
|
|
i += 1 |
|
|
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
|
|
|
s = btdigg() |
|
|
|
|