• File: wrapper.py
  • Full Path: /home/masbinta/public_html/admin/installer/css/sass/sym404/root/usr/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.py
  • File size: 498 bytes
  • MIME-type: text/x-python
  • Charset: utf-8
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