Skip to content

The httplib2 caching algorithms packaged up for use with requests.

License

Notifications You must be signed in to change notification settings

Birne94/cachecontrol

This branch is 233 commits behind psf/cachecontrol:master.

Folders and files

NameName
Last commit message
Last commit date
Jan 7, 2017
Dec 14, 2016
Nov 4, 2013
Jan 7, 2017
Sep 13, 2016
Nov 26, 2013
Mar 23, 2016
Mar 7, 2015
May 11, 2015
May 16, 2015
Jul 31, 2015
Apr 4, 2016
Mar 23, 2016
Sep 5, 2016
Sep 13, 2016
Mar 24, 2016

Repository files navigation

CacheControl

Latest Version https://travis-ci.org/ionrock/cachecontrol.png?branch=master

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 threadsafety. 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('http://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

About

The httplib2 caching algorithms packaged up for use with requests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.9%
  • Makefile 1.1%