usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
21 lines
498 B
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
|
|
|