From f2a9d172a3df2e1ea0627212dbd42bced13aa778 Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Thu, 26 Aug 2021 14:24:00 -0500 Subject: More docs on cache options; for clarity, refer to cache key behavior as 'request matching', and selective caching options as 'cache filtering' --- requests_cache/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'requests_cache') diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py index 1854c38..03c6a69 100644 --- a/requests_cache/__init__.py +++ b/requests_cache/__init__.py @@ -33,8 +33,9 @@ def get_placeholder_class(original_exception: Exception = None): try: from .backends import * - from .patcher import * + from .cache_control import DO_NOT_CACHE, CacheActions from .models import * + from .patcher import * from .serializers import * from .session import ALL_METHODS, CachedSession, CacheMixin # Log and ignore ImportErrors, if setup.py is invoked outside a virtualenv -- cgit v1.2.1