summaryrefslogtreecommitdiff
path: root/requests_cache
diff options
context:
space:
mode:
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.