summaryrefslogtreecommitdiff
path: root/requests_cache
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-04-12 19:22:22 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-04-15 18:32:19 -0500
commit08248be2b1502a2adda0ecfdd1d86bd981dc256e (patch)
tree9b057bad333cdbbd22593b6b1ab02cea86bbd877 /requests_cache
parent341303f78d95f44ed52208e7d90e05b49afea1cb (diff)
downloadrequests-cache-08248be2b1502a2adda0ecfdd1d86bd981dc256e.tar.gz
Update general expiration docs
Diffstat (limited to 'requests_cache')
-rw-r--r--requests_cache/backends/dynamodb.py2
-rw-r--r--requests_cache/patcher.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/requests_cache/backends/dynamodb.py b/requests_cache/backends/dynamodb.py
index 711022e..2ec971a 100644
--- a/requests_cache/backends/dynamodb.py
+++ b/requests_cache/backends/dynamodb.py
@@ -16,6 +16,8 @@ especially good fit for serverless applications running on
DynamoDB binary item sizes are limited to 400KB. If you need to cache larger responses, consider
using a different backend.
+
+
Creating Tables
^^^^^^^^^^^^^^^
Tables will be automatically created if they don't already exist. This is convienient if you just
diff --git a/requests_cache/patcher.py b/requests_cache/patcher.py
index 5678b7f..dd81f67 100644
--- a/requests_cache/patcher.py
+++ b/requests_cache/patcher.py
@@ -1,4 +1,4 @@
-"""Utilities for patching ``requests``.
+"""Utilities for patching ``requests``. See :ref:`patching` for general usage info.
.. warning:: These functions are not thread-safe. Use :py:class:`.CachedSession` if you want to use
caching in a multi-threaded environment.