]> jfr.im git - dlqueue.git/blame - 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
CommitLineData
e0df8241
JR
1# SPDX-FileCopyrightText: 2015 Eric Larson
2#
3# SPDX-License-Identifier: Apache-2.0
4
5"""CacheControl import Interface.
6
7Make 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
13from .wrapper import CacheControl
14from .adapter import CacheControlAdapter
15from .controller import CacheController
16
17import logging
18logging.getLogger(__name__).addHandler(logging.NullHandler())