|
@ -18,7 +18,7 @@ class Base(TorrentProvider): |
|
|
'base_url': 'https://iptorrents.eu', |
|
|
'base_url': 'https://iptorrents.eu', |
|
|
'login': 'https://iptorrents.eu/', |
|
|
'login': 'https://iptorrents.eu/', |
|
|
'login_check': 'https://iptorrents.eu/oldinbox.php', |
|
|
'login_check': 'https://iptorrents.eu/oldinbox.php', |
|
|
'search': 'https://iptorrents.eu/t?%s%%s&q=%s&qf=#torrents&p=%%d', |
|
|
'search': 'https://iptorrents.eu/t?%s%%s&q=%s&qf=ti#torrents&p=%%d', |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
http_time_between_calls = 1 # Seconds |
|
|
http_time_between_calls = 1 # Seconds |
|
@ -36,7 +36,7 @@ class Base(TorrentProvider): |
|
|
log.warning('Unable to find category ids for identifier "%s"', quality.get('identifier')) |
|
|
log.warning('Unable to find category ids for identifier "%s"', quality.get('identifier')) |
|
|
return None |
|
|
return None |
|
|
|
|
|
|
|
|
return self.urls['search'] % ("&".join(("l%d=" % x) for x in cat_ids), tryUrlencode(query).replace('%', '%%')) |
|
|
return self.urls['search'] % ("&".join(("%d=" % x) for x in cat_ids), tryUrlencode(query).replace('%', '%%')) |
|
|
|
|
|
|
|
|
def _searchOnTitle(self, title, media, quality, results): |
|
|
def _searchOnTitle(self, title, media, quality, results): |
|
|
|
|
|
|
|
|