cachecontrol 0.14.3


pip install cachecontrol

  Latest version

Released: Apr 30, 2025


Meta
Author: Eric Larson, Frost Ming, William Woodruff
Requires Python: >=3.9

Classifiers

Development Status
  • 4 - Beta

Environment
  • Web Environment

Operating System
  • OS Independent

Programming Language
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13

Topic
  • Internet :: WWW/HTTP
Latest Version https://github.com/psf/cachecontrol/actions/workflows/tests.yml/badge.svg

CacheControl is a port of the caching algorithms in httplib2 for use with requests session object.

It was written because httplib2’s better support for caching is often mitigated by its lack of thread safety. The same is true of requests in terms of caching.

Quickstart

import requests

from cachecontrol import CacheControl


sess = requests.session()
cached_sess = CacheControl(sess)

response = cached_sess.get('https://google.com')

If the URL contains any caching based headers, it will cache the result in a simple dictionary.

For more info, check out the docs

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
requests (>=2.16.0)
msgpack (<2.0.0,>=0.5.2)