summaryrefslogtreecommitdiff
path: root/requests_cache
Commit message (Expand)AuthorAgeFilesLines
* configure() for backward compatibility with simple scriptsRoman Haritonov2013-02-241-0/+4
* use UTC timeRoman Haritonov2013-02-022-2/+2
* cleanupRoman Haritonov2013-02-021-4/+2
* docsRoman Haritonov2013-01-131-0/+3
* restore clear() functionRoman Haritonov2013-01-132-1/+7
* fix API docsRoman Haritonov2013-01-131-9/+8
* Fix create_key() for Py3Roman Haritonov2013-01-131-4/+17
* cache_disabled() context manager for CachedSessionRoman Haritonov2013-01-131-2/+22
* version in README, get_cache(), fix exampleRoman Haritonov2013-01-132-3/+10
* disabled() context manager. All tests are passingRoman Haritonov2013-01-122-4/+22
* uninstall_cache()Roman Haritonov2013-01-122-2/+10
* Rename configure to install_cache and add session_factory parameterRoman Haritonov2013-01-122-8/+23
* fix monkey-patchingRoman Haritonov2013-01-121-1/+1
* missed package in setup.py, bump versionRoman Haritonov2013-01-121-1/+1
* has_url() and delete_url() methodsRoman Haritonov2013-01-121-1/+17
* move storage implementations to packageRoman Haritonov2013-01-125-76/+76
* fix instance check in CachedSession (str -> basestring)Roman Haritonov2013-01-121-2/+2
* response.history is tuple in Requests 1.x.xRoman Haritonov2013-01-121-2/+2
* clarify usage of key_mappingRoman Haritonov2013-01-121-8/+12
* cleanupsRoman Haritonov2013-01-121-6/+0
* possibility to pass cache backend instance instead nameRoman Haritonov2013-01-121-7/+10
* url -> keyRoman Haritonov2013-01-124-24/+22
* fix delete(key)Roman Haritonov2013-01-121-1/+1
* move key creation to cache, add attributes to stored responseRoman Haritonov2013-01-122-22/+16
* hash instead url+data, begin fixing redirectsRoman Haritonov2013-01-122-25/+55
* expire_after is secondsRoman Haritonov2013-01-121-2/+3
* CachedSession without monkey patching. Backward incompatibleRoman Haritonov2013-01-122-140/+74
* Merge branch 'master' of https://github.com/meowcoder/requests-cache into v1.0.0Roman Haritonov2013-01-121-35/+22
|\
| * Update code to work with Requests 1.0.4Alex Sinitsin2012-12-261-35/+22
* | v0.2.0v0.2.0Roman Haritonov2013-01-121-1/+1
|/
* Make sqlite3 optional for Heroku support. Thanks to @nathancahillRoman Haritonov2012-09-091-2/+9
* Fix issue #2 POST raw data now handled correctlyRoman Haritonov2012-05-151-3/+5
* Actualize docs for configure functionRoman Haritonov2012-05-111-2/+3
* Use relative importsRoman Haritonov2012-05-114-8/+8
* Add from_cache attribute for responses taken from cacheRoman Haritonov2012-05-101-0/+1
* Extension of sqlite database filename is now configurableRoman Haritonov2012-05-062-4/+6
* Bump version and add info to changelogv0.1.3Roman Haritonov2012-05-041-1/+1
* Small code cleanups and clarification about backends in documentationRoman Haritonov2012-05-042-17/+24
* clear some TODOsRoman Haritonov2012-05-041-1/+1
* can_commit now is a simple attribute not propertyRoman Haritonov2012-05-041-14/+10
* Remove reusable_dict parameter because of new connection logicRoman Haritonov2012-05-042-13/+5
* if not self._pending_connection -> if self._pending_connection is NoneRoman Haritonov2012-05-041-1/+1
* Add lock to support insert operations from multiple threadsRoman Haritonov2012-05-041-18/+25
* Possible solution for #3. Reopen connections for almost each operationRoman Haritonov2012-05-041-23/+54
* Fix #2. Take into account POST-parametersRoman Haritonov2012-05-031-3/+10
* bump version, update changelogRoman Haritonov2012-05-021-1/+1
* clarify docs about backend optionsRoman Haritonov2012-05-023-3/+5
* add fast_save option to DbCache backendRoman Haritonov2012-05-021-2/+4
* add fast_save option to DbDict (PRAGMA synchronous = 0;)Roman Haritonov2012-05-021-2/+6
* quote table name in queriesRoman Haritonov2012-05-021-135/+136