mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 19:12:26 -05:00
9ac649444d
Added session handler to our cache handler so that we can pass in paramaters at the request level and use them for our cache handler to process features.
14 lines
440 B
Python
14 lines
440 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
|
|
from cachecontrol.session import CacheControlSession |