Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 400 Bytes

README.rst

File metadata and controls

15 lines (9 loc) · 400 Bytes

Requests: HTTP for Humans (now with caching support)

This fork of request aim to add cache support to the original library.

>>> from requests.cache import SessionCache, FSStorage
>>> s = SessionCache(storage=FSStorage('./cache'))
...

Designed to support multiple backend the only actually implemented is a filesystem based.