From 6f9fbcd9270616151c238c0d7a64c7e987510906 Mon Sep 17 00:00:00 2001 From: JackDandy Date: Sat, 10 Dec 2016 01:33:46 +0000 Subject: [PATCH] Change torrent provider links for bts, et, rarbg, tpb. --- CHANGES.md | 1 + sickbeard/providers/btscene.py | 3 +-- sickbeard/providers/extratorrent.py | 3 ++- sickbeard/providers/rarbg.py | 2 +- sickbeard/providers/thepiratebay.py | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 38f4b256..1ef1f54c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/sickbeard/providers/btscene.py b/sickbeard/providers/btscene.py index bf4f46d7..0b5b0709 100644 --- a/sickbeard/providers/btscene.py +++ b/sickbeard/providers/btscene.py @@ -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'} diff --git a/sickbeard/providers/extratorrent.py b/sickbeard/providers/extratorrent.py index 447e20e4..b4cee880 100644 --- a/sickbeard/providers/extratorrent.py +++ b/sickbeard/providers/extratorrent.py @@ -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', diff --git a/sickbeard/providers/rarbg.py b/sickbeard/providers/rarbg.py index 4e5a45b3..c62713dd 100644 --- a/sickbeard/providers/rarbg.py +++ b/sickbeard/providers/rarbg.py @@ -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, diff --git a/sickbeard/providers/thepiratebay.py b/sickbeard/providers/thepiratebay.py index 51705a7b..179dd353 100644 --- a/sickbeard/providers/thepiratebay.py +++ b/sickbeard/providers/thepiratebay.py @@ -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',