__init__.py 363 B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. """
  3. requests-toolbelt.adapters
  4. ==========================
  5. See http://toolbelt.rtfd.org/ for documentation
  6. :copyright: (c) 2014 by Ian Cordasco and Cory Benfield
  7. :license: Apache v2.0, see LICENSE for more details
  8. """
  9. from .ssl import SSLAdapter
  10. from .source import SourceAddressAdapter
  11. __all__ = ['SSLAdapter', 'SourceAddressAdapter']