mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
94670f7f95
Updated rsstorrents to not bother using requests sessions.
17 lines
470 B
Python
17 lines
470 B
Python
from .adapter import CacheControlAdapter
|
|
from .cache import DictCache
|
|
from .session import CacheControlSession
|
|
|
|
def CacheControl(sess=None, cache=None, cache_etags=True, serializer=None):
|
|
sess = sess or CacheControlSession()
|
|
cache = cache or DictCache()
|
|
adapter = CacheControlAdapter(
|
|
cache,
|
|
cache_etags=cache_etags,
|
|
serializer=serializer,
|
|
)
|
|
sess.mount('http://', adapter)
|
|
sess.mount('https://', adapter)
|
|
|
|
return sess
|