├── .bumpversion.cfg ├── .github └── workflows │ ├── publish.yml │ └── pythonpackage.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests ├── conftest.py ├── test_client.py └── test_context_consumer.py └── uplink_httpx ├── __init__.py ├── client.py └── consumer.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/README.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | bumpversion 2 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpx 2 | uplink 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_context_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/tests/test_context_consumer.py -------------------------------------------------------------------------------- /uplink_httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/uplink_httpx/__init__.py -------------------------------------------------------------------------------- /uplink_httpx/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/uplink_httpx/client.py -------------------------------------------------------------------------------- /uplink_httpx/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chassing/uplink-httpx/HEAD/uplink_httpx/consumer.py --------------------------------------------------------------------------------