├── .gitignore ├── .travis.yml ├── LICENCE.txt ├── MANIFEST.in ├── README.md ├── asks ├── __init__.py ├── auth.py ├── base_funcs.py ├── cookie_utils.py ├── errors.py ├── http_utils.py ├── multipart.py ├── req_structs.py ├── request_object.py ├── response_objects.py ├── sessions.py └── utils.py ├── docs ├── Makefile └── source │ ├── a-look-at-sessions.rst │ ├── conf.py │ ├── idioms.rst │ ├── index.rst │ ├── overview-of-funcs-and-args.rst │ └── the-response-object.rst ├── pylintrc ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_anyio.py ├── test_file1.txt ├── test_file2 ├── test_http_utils.py ├── test_multipart.py ├── test_request_object.py ├── test_response_objects.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENCE.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/README.md -------------------------------------------------------------------------------- /asks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/__init__.py -------------------------------------------------------------------------------- /asks/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/auth.py -------------------------------------------------------------------------------- /asks/base_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/base_funcs.py -------------------------------------------------------------------------------- /asks/cookie_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/cookie_utils.py -------------------------------------------------------------------------------- /asks/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/errors.py -------------------------------------------------------------------------------- /asks/http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/http_utils.py -------------------------------------------------------------------------------- /asks/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/multipart.py -------------------------------------------------------------------------------- /asks/req_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/req_structs.py -------------------------------------------------------------------------------- /asks/request_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/request_object.py -------------------------------------------------------------------------------- /asks/response_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/response_objects.py -------------------------------------------------------------------------------- /asks/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/sessions.py -------------------------------------------------------------------------------- /asks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/asks/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/a-look-at-sessions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/a-look-at-sessions.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/idioms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/idioms.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/overview-of-funcs-and-args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/overview-of-funcs-and-args.rst -------------------------------------------------------------------------------- /docs/source/the-response-object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/docs/source/the-response-object.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/pylintrc -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENCE.txt 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_anyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_anyio.py -------------------------------------------------------------------------------- /tests/test_file1.txt: -------------------------------------------------------------------------------- 1 | Compooper -------------------------------------------------------------------------------- /tests/test_file2: -------------------------------------------------------------------------------- 1 | My slug <3 -------------------------------------------------------------------------------- /tests/test_http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_http_utils.py -------------------------------------------------------------------------------- /tests/test_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_multipart.py -------------------------------------------------------------------------------- /tests/test_request_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_request_object.py -------------------------------------------------------------------------------- /tests/test_response_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_response_objects.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theelous3/asks/HEAD/tests/test_utils.py --------------------------------------------------------------------------------