]> jfr.im git - dlqueue.git/blob - venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py
init: venv aand flask
[dlqueue.git] / venv / lib / python3.11 / site-packages / pip / _vendor / cachecontrol / __init__.py
1 # SPDX-FileCopyrightText: 2015 Eric Larson
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 """CacheControl import Interface.
6
7 Make it easy to import from cachecontrol without long namespaces.
8 """
9 __author__ = "Eric Larson"
10 __email__ = "eric@ionrock.org"
11 __version__ = "0.12.11"
12
13 from .wrapper import CacheControl
14 from .adapter import CacheControlAdapter
15 from .controller import CacheController
16
17 import logging
18 logging.getLogger(__name__).addHandler(logging.NullHandler())