summaryrefslogtreecommitdiff
path: root/requests_cache
Commit message (Expand)AuthorAgeFilesLines
* Redact ingored_parameters from CachedResponse.urlJordan Cook2021-09-152-15/+25
* Fix incorrect debug message for skipping cache writeJordan Cook2021-09-151-1/+2
* Add some alises so fully qualified imports of DbDict, etc. don't breakJordan Cook2021-09-142-1/+7
* Re-enable mypy pre-commit hook with attrs as an explicit hook dependency for ...Jordan Cook2021-09-081-2/+4
* Add note to Troubleshooting section about deprecated importsJordan Cook2021-09-071-1/+1
* Add note about 'cache_name' argument usage in init_backend()Jordan Cook2021-09-062-11/+11
* Alias/rename old_data_on_error to stale_if_error for consistency with Cache-C...Jordan Cook2021-09-062-10/+10
* Use blake2 instead of sha256 for hashing request infoJordan Cook2021-09-061-2/+3
* Fix SQLiteCache.db_path; supposed to be a property, not a methodJordan Cook2021-09-061-0/+1
* Allow match_headers to optionally accept a list of specific headers to matchJordan Cook2021-09-063-33/+51
* Alias/rename 'include_get_headers' to 'match_headers' for clarity (backwards-...Jordan Cook2021-09-064-10/+10
* Add some basic info about creating DynamoDB tablesJordan Cook2021-09-011-33/+37
* Revert renaming DynamoDB backend classes; a minor inconsistency is probably b...Jordan Cook2021-08-302-11/+9
* Use pathlib.Path objects for all file paths in Filesystem and SQLite backendsJordan Cook2021-08-292-51/+47
* Fix some type checking issuesJordan Cook2021-08-282-2/+3
* Allow has_url(), delete_url(), and create_key() to optionally take requests.R...Jordan Cook2021-08-285-32/+39
* Add some additional tests for cache key normalizationJordan Cook2021-08-281-2/+1
* Add another Quickstart example to briefly introduce some optionsJordan Cook2021-08-281-4/+6
* Reorganize user docs: break down User Guide and Advanced Usage sections into ...Jordan Cook2021-08-265-8/+6
* More docs on cache options; for clarity, refer to cache key behavior as 'requ...Jordan Cook2021-08-261-1/+2
* Enable conditional requests by defaultJordan Cook2021-08-262-7/+8
* Allow Stage objects to take functions instead of object + method namesJordan Cook2021-08-251-12/+26
* Minor optimization: exclude redundant CachedResponse.cache_key and CachedHTTP...Jordan Cook2021-08-255-17/+26
* Add some notes about Redis persistenceJordan Cook2021-08-251-3/+10
* Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ...Jordan Cook2021-08-254-75/+16
* Add BaseCache.update() method as a shortcut for exporting to a different cach...Jordan Cook2021-08-251-53/+59
* Add FileCache.cache_dir propertyJordan Cook2021-08-251-0/+5
* Add another monkey-patch for sphinx-automodapi instead of installing from git...Jordan Cook2021-08-231-1/+1
* Fix incorrect location of redirects.sqlite when using filesystem backendJordan Cook2021-08-231-4/+12
* Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil...Jordan Cook2021-08-212-33/+49
* Add CLI arg to benchmark script to select a backendJordan Cook2021-08-202-1/+5
* Add support for SQLite in-memory databasesJordan Cook2021-08-202-21/+49
* Make DynamoDB and MongoDB naming consistentJordan Cook2021-08-204-12/+14
* Add FileCache.paths() wrapper method, and return a list instead of generatorJordan Cook2021-08-202-9/+22
* Better backend docsJordan Cook2021-08-207-46/+280
* Better serializer docsJordan Cook2021-08-203-29/+44
* Move autosummaries to module docstrings instead of template, to make them eas...Jordan Cook2021-08-208-10/+64
* Rename DbDict to SQLiteDict for consistency with other backends (with aliases...Jordan Cook2021-08-193-34/+22
* Some misc docstring editsJordan Cook2021-08-196-22/+19
* Exclude cache headers from cache key by defaultJordan Cook2021-08-141-1/+3
* Add support for custom cache keysJordan Cook2021-08-143-26/+47
* Add support for Last-Modified + If-Modified-Since headersJordan Cook2021-08-145-80/+76
* Add support for ETag + If-None-Match headersJordan Cook2021-08-143-18/+35
* Convert CacheActions into an attrs classJordan Cook2021-08-142-18/+39
* Remove deprecated 'core' module and BaseCache.remove_old_entries()Jordan Cook2021-08-143-23/+1
* Drop support for python 3.6Jordan Cook2021-08-145-34/+10
* Replace some 'type: ignore' statements with better type hintingJordan Cook2021-08-144-17/+23
* Update changelog, contributors, and bump versionJordan Cook2021-08-121-1/+1
* Parallelize unit tests per module instead of per functionJordan Cook2021-08-122-3/+4
* Ensure httpdate strings from headers get converted to UTCJordan Cook2021-08-121-5/+4