Fixed issues with grabbing redirect url for session POST method.
Fixed login issue for FileList. Fixed issue with parsing torrents from Zooqle and YGGTorrent.
# coding=utf-8 | ||
# coding=utf-8 | ||
# Author: Ludovic Reenaers <[email protected]> | ||
# | ||
# URL: https://sickrage.ca | ||
... | ... | @@ -27,9 +27,18 @@ import sickrage |
from sickrage.core.caches.tv_cache import TVCache | ||
from sickrage.core.helpers import bs4_parser, try_int, convert_size, validate_url | ||
from sickrage.providers import TorrentProvider | ||
from __future__ import print_function, unicode_literals | ||
import re | ||
from urlparse import urljoin | ||
class Torrent9Provider(TorrentProvider): | ||
import sickrage | ||
from sickrage.core.caches.tv_cache import TVCache | ||
from sickrage.core.helpers import bs4_parser, try_int, convert_size, validate_url | ||
from sickrage.providers import TorrentProvider | ||
class Torrent9Provider(TorrentProvider): | ||
def __init__(self): | ||
super(Torrent9Provider, self).__init__('Torrent9', 'ww1.torrent9.ph', False) | ||
... | ... |
Please register or sign in to comment