├── .gitignore ├── .travis.yml ├── AUTHORS ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── __init__.py ├── debug.py ├── docs ├── Makefile ├── conf.py ├── debug.rst ├── headers_examples.txt ├── human_curl.rst ├── index.rst ├── make.bat └── modules.rst ├── env.sh ├── examples ├── async.py ├── async1.py ├── async2.py ├── async_contextmanager.py ├── auth.py ├── bench.py ├── cookies.py ├── multi_get.py ├── oauth.py ├── oauth2.py ├── proxy.py └── usage.py ├── human_curl ├── __init__.py ├── async_.py ├── auth.py ├── compat.py ├── core.py ├── exceptions.py ├── methods.py └── utils.py ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/debug.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/debug.rst -------------------------------------------------------------------------------- /docs/headers_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/headers_examples.txt -------------------------------------------------------------------------------- /docs/human_curl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/human_curl.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/env.sh -------------------------------------------------------------------------------- /examples/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/async.py -------------------------------------------------------------------------------- /examples/async1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/async1.py -------------------------------------------------------------------------------- /examples/async2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/async2.py -------------------------------------------------------------------------------- /examples/async_contextmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/async_contextmanager.py -------------------------------------------------------------------------------- /examples/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/auth.py -------------------------------------------------------------------------------- /examples/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/bench.py -------------------------------------------------------------------------------- /examples/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/cookies.py -------------------------------------------------------------------------------- /examples/multi_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/multi_get.py -------------------------------------------------------------------------------- /examples/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/oauth.py -------------------------------------------------------------------------------- /examples/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/oauth2.py -------------------------------------------------------------------------------- /examples/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/examples/proxy.py -------------------------------------------------------------------------------- /examples/usage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /human_curl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/__init__.py -------------------------------------------------------------------------------- /human_curl/async_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/async_.py -------------------------------------------------------------------------------- /human_curl/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/auth.py -------------------------------------------------------------------------------- /human_curl/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/compat.py -------------------------------------------------------------------------------- /human_curl/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/core.py -------------------------------------------------------------------------------- /human_curl/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/exceptions.py -------------------------------------------------------------------------------- /human_curl/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/methods.py -------------------------------------------------------------------------------- /human_curl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/human_curl/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [nosetests] 2 | verbosity=3 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lispython/human_curl/HEAD/tests.py --------------------------------------------------------------------------------