mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 20:05:04 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
# urllib3/__init__.py
|
|
# Copyright 2008-2013 Andrey Petrov and contributors (see CONTRIBUTORS.txt)
|
|
#
|
|
# This module is part of urllib3 and is released under
|
|
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
|
|
|
"""
|
|
urllib3 - Thread-safe connection pooling and re-using.
|
|
"""
|
|
|
|
__author__ = 'Andrey Petrov (andrey.petrov@shazow.net)'
|
|
__license__ = 'MIT'
|
|
__version__ = 'dev'
|
|
|
|
|
|
from .connectionpool import (
|
|
HTTPConnectionPool,
|
|
HTTPSConnectionPool,
|
|
connection_from_url
|
|
)
|
|
|
|
from . import exceptions
|
|
from .filepost import encode_multipart_formdata
|
|
from .poolmanager import PoolManager, ProxyManager, proxy_from_url
|
|
from .response import HTTPResponse
|
|
from .util import make_headers, get_host, Timeout
|
|
|
|
|
|
# Set default logging handler to avoid "No handler found" warnings.
|
|
import logging
|
|
try: # Python 2.7+
|
|
from logging import NullHandler
|
|
except ImportError:
|
|
class NullHandler(logging.Handler):
|
|
def emit(self, record):
|
|
pass
|
|
|
|
logging.getLogger(__name__).addHandler(NullHandler())
|
|
|
|
def add_stderr_logger(level=logging.DEBUG):
|
|
"""
|
|
Helper for quickly adding a StreamHandler to the logger. Useful for
|
|
debugging.
|
|
|
|
Returns the handler after adding it.
|
|
"""
|
|
# This method needs to be in this __init__.py to get the __name__ correct
|
|
# even if urllib3 is vendored within another package.
|
|
logger = logging.getLogger(__name__)
|
|
handler = logging.StreamHandler()
|
|
handler.setFormatter(logging.Formatter('%(asctime)s %(levelname)s %(message)s'))
|
|
logger.addHandler(handler)
|
|
logger.setLevel(level)
|
|
logger.debug('Added an stderr logging handler to logger: %s' % __name__)
|
|
return handler
|
|
|
|
# ... Clean up.
|
|
del NullHandler
|