mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
21 lines
498 B
Python
21 lines
498 B
Python
from .adapter import CacheControlAdapter
|
|
from .cache import DictCache
|
|
|
|
|
|
def CacheControl(sess,
|
|
cache=None,
|
|
cache_etags=True,
|
|
serializer=None,
|
|
heuristic=None):
|
|
|
|
cache = cache or DictCache()
|
|
adapter = CacheControlAdapter(
|
|
cache,
|
|
cache_etags=cache_etags,
|
|
serializer=serializer,
|
|
heuristic=heuristic,
|
|
)
|
|
sess.mount('http://', adapter)
|
|
sess.mount('https://', adapter)
|
|
|
|
return sess
|