├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.rst ├── requirements.txt ├── runtests.py ├── setup.py ├── tests.py └── wsgiadapter.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | .cache 4 | dist/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=1.0 2 | pytest 3 | flake8 4 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/tests.py -------------------------------------------------------------------------------- /wsgiadapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanbrant/requests-wsgi-adapter/HEAD/wsgiadapter.py --------------------------------------------------------------------------------