mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 14:55:07 -05:00
05410e2aa0
Replaced urllib2 with requests for both TVDB and TVRage. Updated cache cleanup code to process both TVDB and TVRage cache folders.
14 lines
388 B
Python
14 lines
388 B
Python
"""CacheControl import Interface.
|
|
|
|
Make it easy to import from cachecontrol without long namespaces.
|
|
"""
|
|
|
|
# patch our requests.models.Response to make them pickleable in older
|
|
# versions of requests.
|
|
|
|
import cachecontrol.patch_requests
|
|
|
|
from cachecontrol.wrapper import CacheControl
|
|
from cachecontrol.adapter import CacheControlAdapter
|
|
from cachecontrol.controller import CacheController
|