Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/requests_toolbelt/__init__.py: 100%
13 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:53 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:53 +0000
1# -*- coding: utf-8 -*-
2"""
3requests-toolbelt
4=================
6See https://toolbelt.readthedocs.io/ for documentation
8:copyright: (c) 2014 by Ian Cordasco and Cory Benfield
9:license: Apache v2.0, see LICENSE for more details
10"""
12from .adapters import SSLAdapter, SourceAddressAdapter
13from .auth.guess import GuessAuth
14from .multipart import (
15 MultipartEncoder, MultipartEncoderMonitor, MultipartDecoder,
16 ImproperBodyPartContentException, NonMultipartContentTypeException
17 )
18from .streaming_iterator import StreamingIterator
19from .utils.user_agent import user_agent
21__title__ = 'requests-toolbelt'
22__authors__ = 'Ian Cordasco, Cory Benfield'
23__license__ = 'Apache v2.0'
24__copyright__ = 'Copyright 2014 Ian Cordasco, Cory Benfield'
25__version__ = '1.0.0'
26__version_info__ = tuple(int(i) for i in __version__.split('.'))
28__all__ = [
29 'GuessAuth', 'MultipartEncoder', 'MultipartEncoderMonitor',
30 'MultipartDecoder', 'SSLAdapter', 'SourceAddressAdapter',
31 'StreamingIterator', 'user_agent', 'ImproperBodyPartContentException',
32 'NonMultipartContentTypeException', '__title__', '__authors__',
33 '__license__', '__copyright__', '__version__', '__version_info__',
34]