comparison env/lib/python3.9/site-packages/requests_toolbelt/__init__.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 # -*- coding: utf-8 -*-
2 """
3 requests-toolbelt
4 =================
5
6 See http://toolbelt.rtfd.org/ for documentation
7
8 :copyright: (c) 2014 by Ian Cordasco and Cory Benfield
9 :license: Apache v2.0, see LICENSE for more details
10 """
11
12 from .adapters import SSLAdapter, SourceAddressAdapter
13 from .auth.guess import GuessAuth
14 from .multipart import (
15 MultipartEncoder, MultipartEncoderMonitor, MultipartDecoder,
16 ImproperBodyPartContentException, NonMultipartContentTypeException
17 )
18 from .streaming_iterator import StreamingIterator
19 from .utils.user_agent import user_agent
20
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__ = '0.9.1'
26 __version_info__ = tuple(int(i) for i in __version__.split('.'))
27
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 ]