├── .all-contributorsrc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml ├── dependabot.yml └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── .vscode └── settings.json ├── .zed └── settings.json ├── LICENSE ├── README.md ├── docs ├── index.md ├── reference │ └── httpx_ws.md └── usage │ ├── asgi.md │ ├── class_based_client.md │ ├── quickstart.md │ └── subprotocols.md ├── httpx_ws ├── __init__.py ├── _api.py ├── _exceptions.py ├── _ping.py ├── py.typed └── transport.py ├── justfile ├── mkdocs.yml ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── test_api.py └── test_transport.py └── uv.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md" 2 | -------------------------------------------------------------------------------- /docs/reference/httpx_ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/docs/reference/httpx_ws.md -------------------------------------------------------------------------------- /docs/usage/asgi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/docs/usage/asgi.md -------------------------------------------------------------------------------- /docs/usage/class_based_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/docs/usage/class_based_client.md -------------------------------------------------------------------------------- /docs/usage/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/docs/usage/quickstart.md -------------------------------------------------------------------------------- /docs/usage/subprotocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/docs/usage/subprotocols.md -------------------------------------------------------------------------------- /httpx_ws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/httpx_ws/__init__.py -------------------------------------------------------------------------------- /httpx_ws/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/httpx_ws/_api.py -------------------------------------------------------------------------------- /httpx_ws/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/httpx_ws/_exceptions.py -------------------------------------------------------------------------------- /httpx_ws/_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/httpx_ws/_ping.py -------------------------------------------------------------------------------- /httpx_ws/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /httpx_ws/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/httpx_ws/transport.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/justfile -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/tests/test_transport.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankie567/httpx-ws/HEAD/uv.lock --------------------------------------------------------------------------------