Browse Source

Merge pull request #6443 from ngosang/extratorrent

[Search engine] Update Extratorrent plugin
adaptive-webui-19844
sledgehammer999 8 years ago committed by GitHub
parent
commit
884ca03624
  1. 8
      src/searchengine/nova/engines/extratorrent.py
  2. 2
      src/searchengine/nova/engines/versions.txt
  3. 8
      src/searchengine/nova3/engines/extratorrent.py
  4. 2
      src/searchengine/nova3/engines/versions.txt

8
src/searchengine/nova/engines/extratorrent.py

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
#VERSION: 3.00
#VERSION: 3.10
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
#CONTRIBUTORS: Diego de las Heras (ngosang@hotmail.es)
@ -33,7 +33,7 @@ from helpers import download_file, retrieve_url @@ -33,7 +33,7 @@ from helpers import download_file, retrieve_url
class extratorrent(object):
""" Search engine class """
url = 'https://extratorrent.cc'
url = 'https://extra.to'
name = 'ExtraTorrent'
supported_categories = {'all' : '0',
'movies' : '4',
@ -59,8 +59,8 @@ class extratorrent(object): @@ -59,8 +59,8 @@ class extratorrent(object):
for item in itemlist:
current_item = current_item = {"engine_url" : self.url}
current_item['name'] = item.getElementsByTagName('title')[0].childNodes[0].data
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value.replace('extratorrent.cc', 'extra.to')
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data.replace('extratorrent.cc', 'extra.to')
current_item["size"] = item.getElementsByTagName('size')[0].childNodes[0].data
current_item["leech"] = item.getElementsByTagName('leechers')[0].childNodes[0].data
if not current_item["leech"].isdigit():

2
src/searchengine/nova/engines/versions.txt

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
demonoid: 1.22
extratorrent: 3.00
extratorrent: 3.10
legittorrents: 2.01
mininova: 2.02
piratebay: 2.15

8
src/searchengine/nova3/engines/extratorrent.py

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
#VERSION: 3.00
#VERSION: 3.10
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
#CONTRIBUTORS: Diego de las Heras (ngosang@hotmail.es)
@ -33,7 +33,7 @@ from helpers import download_file, retrieve_url @@ -33,7 +33,7 @@ from helpers import download_file, retrieve_url
class extratorrent(object):
""" Search engine class """
url = 'https://extratorrent.cc'
url = 'https://extra.to'
name = 'ExtraTorrent'
supported_categories = {'all' : '0',
'movies' : '4',
@ -59,8 +59,8 @@ class extratorrent(object): @@ -59,8 +59,8 @@ class extratorrent(object):
for item in itemlist:
current_item = current_item = {"engine_url" : self.url}
current_item['name'] = item.getElementsByTagName('title')[0].childNodes[0].data
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value.replace('extratorrent.cc', 'extra.to')
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data.replace('extratorrent.cc', 'extra.to')
current_item["size"] = item.getElementsByTagName('size')[0].childNodes[0].data
current_item["leech"] = item.getElementsByTagName('leechers')[0].childNodes[0].data
if not current_item["leech"].isdigit():

2
src/searchengine/nova3/engines/versions.txt

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
demonoid: 1.22
extratorrent: 3.00
extratorrent: 3.10
legittorrents: 2.01
mininova: 2.02
piratebay: 2.15

Loading…
Cancel
Save