mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
ce193ffcdb
Added cache handler to sickbeard it self so now everything should be running faster for searches and rss feeds.
14 lines
241 B
Python
14 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]
|