mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
ce193ffcdb
Added cache handler to sickbeard it self so now everything should be running faster for searches and rss feeds.
15 lines
241 B
Python
15 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
__init__.py
|
|
~~~~~~~~~~~
|
|
|
|
Defines the public API to the httpcache module.
|
|
"""
|
|
|
|
__version__ = '0.1.3'
|
|
|
|
from .cache import HTTPCache
|
|
from .adapter import CachingHTTPAdapter
|
|
|
|
__all__ = [HTTPCache, CachingHTTPAdapter]
|