mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Change torrent provider links for bts, et, rarbg, tpb.
This commit is contained in:
parent
191986db58
commit
6f9fbcd927
5 changed files with 6 additions and 5 deletions
|
@ -244,6 +244,7 @@
|
|||
* Fix restart when switching from master to develop
|
||||
* Change update IMDb show parser
|
||||
* Fix rTorrent auth and magnet issue
|
||||
* Change torrent provider links for bts, et, rarbg, tpb
|
||||
|
||||
|
||||
### 0.11.16 (2016-10-16 17:30:00 UTC)
|
||||
|
|
|
@ -31,8 +31,7 @@ class BTSceneProvider(generic.TorrentProvider):
|
|||
def __init__(self):
|
||||
generic.TorrentProvider.__init__(self, 'BTScene')
|
||||
|
||||
self.url_home = ['http://www.btstorrent.cc/', 'http://bittorrentstart.com/',
|
||||
'http://diriri.xyz/', 'http://mytorrentz.tv/']
|
||||
self.url_home = ['http://btsone.cc/', 'http://diriri.xyz/', 'http://mytorrentz.tv/']
|
||||
|
||||
self.url_vars = {'search': '?q=%s&category=series&order=1', 'browse': 'lastdaycat/type/Series/',
|
||||
'get': 'torrentdownload.php?id=%s'}
|
||||
|
|
|
@ -31,7 +31,8 @@ class ExtraTorrentProvider(generic.TorrentProvider):
|
|||
def __init__(self):
|
||||
generic.TorrentProvider.__init__(self, 'ExtraTorrent')
|
||||
|
||||
self.url_home = ['https://www.extratorrent%s/' % u for u in '.works', 'live.com', 'online.com', '.cc'] + \
|
||||
self.url_home = ['https://www.extratorrent%s/' % u for u in '.life', 'live.com', 'online.com', '.one'] + \
|
||||
['https://extra.to/'] + \
|
||||
['https://etmirror.com/', 'https://etproxy.com/', 'https://extratorrent.usbypass.xyz/']
|
||||
|
||||
self.url_vars = {'search': 'search/?new=1&search=%s&s_cat=8', 'browse': 'view/today/TV.html',
|
||||
|
|
|
@ -30,7 +30,7 @@ class RarbgProvider(generic.TorrentProvider):
|
|||
def __init__(self):
|
||||
generic.TorrentProvider.__init__(self, 'Rarbg')
|
||||
|
||||
self.url_base = 'https://rarbg.com/'
|
||||
self.url_base = 'https://rarbg.unblocked.uno/'
|
||||
# api_spec: https://rarbg.com/pubapi/apidocs_v2.txt
|
||||
self.url_api = 'https://torrentapi.org/pubapi_v2.php?app_id=SickGear&'
|
||||
self.urls = {'config_provider_home_uri': self.url_base,
|
||||
|
|
|
@ -37,7 +37,7 @@ class ThePirateBayProvider(generic.TorrentProvider):
|
|||
generic.TorrentProvider.__init__(self, 'The Pirate Bay', cache_update_freq=20)
|
||||
|
||||
self.url_home = ['https://thepiratebay.%s/' % u for u in 'se', 'org'] + \
|
||||
['https://piratebay.usbypass.xyz/']
|
||||
['https://piratebay.usbypass.club/', 'https://tpb.run/']
|
||||
|
||||
self.url_vars = {'search': 'search/%s/0/7/200', 'browse': 'tv/latest/'}
|
||||
self.url_tmpl = {'config_provider_home_uri': '%(home)s', 'search': '%(home)s%(vars)s',
|
||||
|
|
Loading…
Reference in a new issue