hmdev-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +157 -0
- package/bin/hmdev-cli.js +29 -0
- package/package.json +40 -0
- package/python/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__init__.py +111 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/_asyncio.py +2996 -0
- package/python/.venv/Lib/site-packages/anyio/_backends/_trio.py +1343 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py +200 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_eventloop.py +234 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_exceptions.py +156 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_fileio.py +799 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_resources.py +18 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_signals.py +29 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_sockets.py +1003 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_streams.py +52 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_subprocesses.py +196 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_synchronization.py +757 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_tasks.py +173 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_tempfile.py +613 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_testing.py +82 -0
- package/python/.venv/Lib/site-packages/anyio/_core/_typedattr.py +81 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__init__.py +58 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_eventloop.py +409 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_resources.py +33 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_sockets.py +399 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_streams.py +233 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_subprocesses.py +79 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_tasks.py +117 -0
- package/python/.venv/Lib/site-packages/anyio/abc/_testing.py +65 -0
- package/python/.venv/Lib/site-packages/anyio/from_thread.py +578 -0
- package/python/.venv/Lib/site-packages/anyio/functools.py +409 -0
- package/python/.venv/Lib/site-packages/anyio/lowlevel.py +196 -0
- package/python/.venv/Lib/site-packages/anyio/py.typed +0 -0
- package/python/.venv/Lib/site-packages/anyio/pytest_plugin.py +363 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/anyio/streams/buffered.py +188 -0
- package/python/.venv/Lib/site-packages/anyio/streams/file.py +154 -0
- package/python/.venv/Lib/site-packages/anyio/streams/memory.py +325 -0
- package/python/.venv/Lib/site-packages/anyio/streams/stapled.py +147 -0
- package/python/.venv/Lib/site-packages/anyio/streams/text.py +176 -0
- package/python/.venv/Lib/site-packages/anyio/streams/tls.py +421 -0
- package/python/.venv/Lib/site-packages/anyio/to_interpreter.py +246 -0
- package/python/.venv/Lib/site-packages/anyio/to_process.py +266 -0
- package/python/.venv/Lib/site-packages/anyio/to_thread.py +78 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/METADATA +105 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/RECORD +92 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/WHEEL +5 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/entry_points.txt +2 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/licenses/LICENSE +20 -0
- package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/top_level.txt +1 -0
- package/python/.venv/Lib/site-packages/certifi/__init__.py +4 -0
- package/python/.venv/Lib/site-packages/certifi/__main__.py +12 -0
- package/python/.venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/certifi/cacert.pem +3933 -0
- package/python/.venv/Lib/site-packages/certifi/core.py +83 -0
- package/python/.venv/Lib/site-packages/certifi/py.typed +0 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/METADATA +78 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/RECORD +14 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/WHEEL +5 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/licenses/LICENSE +20 -0
- package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/top_level.txt +1 -0
- package/python/.venv/Lib/site-packages/h11/__init__.py +62 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/h11/_abnf.py +132 -0
- package/python/.venv/Lib/site-packages/h11/_connection.py +659 -0
- package/python/.venv/Lib/site-packages/h11/_events.py +369 -0
- package/python/.venv/Lib/site-packages/h11/_headers.py +282 -0
- package/python/.venv/Lib/site-packages/h11/_readers.py +250 -0
- package/python/.venv/Lib/site-packages/h11/_receivebuffer.py +153 -0
- package/python/.venv/Lib/site-packages/h11/_state.py +365 -0
- package/python/.venv/Lib/site-packages/h11/_util.py +135 -0
- package/python/.venv/Lib/site-packages/h11/_version.py +16 -0
- package/python/.venv/Lib/site-packages/h11/_writers.py +145 -0
- package/python/.venv/Lib/site-packages/h11/py.typed +1 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
- package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
- package/python/.venv/Lib/site-packages/httpcore/__init__.py +141 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_api.py +94 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__init__.py +39 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/connection.py +222 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/connection_pool.py +420 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/http11.py +379 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/http2.py +592 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/http_proxy.py +367 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/interfaces.py +137 -0
- package/python/.venv/Lib/site-packages/httpcore/_async/socks_proxy.py +341 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/anyio.py +146 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/auto.py +52 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/base.py +101 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/mock.py +143 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/sync.py +241 -0
- package/python/.venv/Lib/site-packages/httpcore/_backends/trio.py +159 -0
- package/python/.venv/Lib/site-packages/httpcore/_exceptions.py +81 -0
- package/python/.venv/Lib/site-packages/httpcore/_models.py +516 -0
- package/python/.venv/Lib/site-packages/httpcore/_ssl.py +9 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__init__.py +39 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/connection.py +222 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/connection_pool.py +420 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/http11.py +379 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/http2.py +592 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/http_proxy.py +367 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/interfaces.py +137 -0
- package/python/.venv/Lib/site-packages/httpcore/_sync/socks_proxy.py +341 -0
- package/python/.venv/Lib/site-packages/httpcore/_synchronization.py +318 -0
- package/python/.venv/Lib/site-packages/httpcore/_trace.py +107 -0
- package/python/.venv/Lib/site-packages/httpcore/_utils.py +37 -0
- package/python/.venv/Lib/site-packages/httpcore/py.typed +0 -0
- package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/METADATA +625 -0
- package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/RECORD +68 -0
- package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/WHEEL +4 -0
- package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md +27 -0
- package/python/.venv/Lib/site-packages/httpx/__init__.py +105 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/__version__.py +3 -0
- package/python/.venv/Lib/site-packages/httpx/_api.py +438 -0
- package/python/.venv/Lib/site-packages/httpx/_auth.py +348 -0
- package/python/.venv/Lib/site-packages/httpx/_client.py +2019 -0
- package/python/.venv/Lib/site-packages/httpx/_config.py +248 -0
- package/python/.venv/Lib/site-packages/httpx/_content.py +240 -0
- package/python/.venv/Lib/site-packages/httpx/_decoders.py +393 -0
- package/python/.venv/Lib/site-packages/httpx/_exceptions.py +379 -0
- package/python/.venv/Lib/site-packages/httpx/_main.py +506 -0
- package/python/.venv/Lib/site-packages/httpx/_models.py +1277 -0
- package/python/.venv/Lib/site-packages/httpx/_multipart.py +300 -0
- package/python/.venv/Lib/site-packages/httpx/_status_codes.py +162 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__init__.py +15 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/asgi.py +187 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/base.py +86 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/default.py +406 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/mock.py +43 -0
- package/python/.venv/Lib/site-packages/httpx/_transports/wsgi.py +149 -0
- package/python/.venv/Lib/site-packages/httpx/_types.py +114 -0
- package/python/.venv/Lib/site-packages/httpx/_urlparse.py +527 -0
- package/python/.venv/Lib/site-packages/httpx/_urls.py +641 -0
- package/python/.venv/Lib/site-packages/httpx/_utils.py +242 -0
- package/python/.venv/Lib/site-packages/httpx/py.typed +0 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/METADATA +203 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +55 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/REQUESTED +0 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/WHEEL +4 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/entry_points.txt +2 -0
- package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md +12 -0
- package/python/.venv/Lib/site-packages/idna/__init__.py +45 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/idna/codec.py +159 -0
- package/python/.venv/Lib/site-packages/idna/compat.py +41 -0
- package/python/.venv/Lib/site-packages/idna/core.py +620 -0
- package/python/.venv/Lib/site-packages/idna/idnadata.py +4367 -0
- package/python/.venv/Lib/site-packages/idna/intranges.py +56 -0
- package/python/.venv/Lib/site-packages/idna/package_data.py +1 -0
- package/python/.venv/Lib/site-packages/idna/py.typed +0 -0
- package/python/.venv/Lib/site-packages/idna/uts46data.py +8383 -0
- package/python/.venv/Lib/site-packages/idna-3.15.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/idna-3.15.dist-info/METADATA +194 -0
- package/python/.venv/Lib/site-packages/idna-3.15.dist-info/RECORD +22 -0
- package/python/.venv/Lib/site-packages/idna-3.15.dist-info/WHEEL +4 -0
- package/python/.venv/Lib/site-packages/idna-3.15.dist-info/licenses/LICENSE.md +31 -0
- package/python/.venv/Lib/site-packages/pip/__init__.py +13 -0
- package/python/.venv/Lib/site-packages/pip/__main__.py +24 -0
- package/python/.venv/Lib/site-packages/pip/__pip-runner__.py +50 -0
- package/python/.venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__init__.py +18 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/build_env.py +322 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cache.py +290 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__init__.py +4 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +176 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/base_command.py +240 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/command_context.py +27 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/index_command.py +171 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/main.py +80 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/main_parser.py +134 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/parser.py +294 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +94 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/req_command.py +329 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/spinners.py +159 -0
- package/python/.venv/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__init__.py +132 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/cache.py +228 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/check.py +67 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/completion.py +130 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/configuration.py +280 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/debug.py +201 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/download.py +146 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/freeze.py +109 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/hash.py +59 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/help.py +41 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/index.py +139 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/install.py +784 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/list.py +375 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/search.py +172 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/show.py +224 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/uninstall.py +114 -0
- package/python/.venv/Lib/site-packages/pip/_internal/commands/wheel.py +182 -0
- package/python/.venv/Lib/site-packages/pip/_internal/configuration.py +383 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/base.py +53 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/installed.py +29 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/sdist.py +158 -0
- package/python/.venv/Lib/site-packages/pip/_internal/distributions/wheel.py +42 -0
- package/python/.venv/Lib/site-packages/pip/_internal/exceptions.py +809 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/__init__.py +2 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/collector.py +494 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/package_finder.py +1029 -0
- package/python/.venv/Lib/site-packages/pip/_internal/index/sources.py +284 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/__init__.py +456 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/_distutils.py +172 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
- package/python/.venv/Lib/site-packages/pip/_internal/locations/base.py +81 -0
- package/python/.venv/Lib/site-packages/pip/_internal/main.py +12 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/__init__.py +128 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/_json.py +86 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/base.py +688 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +228 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
- package/python/.venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__init__.py +2 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/direct_url.py +224 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/index.py +28 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/installation_report.py +56 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/link.py +604 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/search_scope.py +127 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +53 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/target_python.py +121 -0
- package/python/.venv/Lib/site-packages/pip/_internal/models/wheel.py +118 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__init__.py +2 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/auth.py +566 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/cache.py +118 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/download.py +187 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/session.py +523 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/utils.py +98 -0
- package/python/.venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +62 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +42 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/check.py +181 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/freeze.py +256 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +741 -0
- package/python/.venv/Lib/site-packages/pip/_internal/operations/prepare.py +732 -0
- package/python/.venv/Lib/site-packages/pip/_internal/pyproject.py +185 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__init__.py +90 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/constructors.py +560 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/req_file.py +623 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/req_install.py +934 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/req_set.py +82 -0
- package/python/.venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
- package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
- package/python/.venv/Lib/site-packages/pip/_internal/self_outdated_check.py +252 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/compat.py +79 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/datetime.py +11 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/deprecation.py +124 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/egg_link.py +80 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/filesystem.py +149 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/filetypes.py +27 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/glibc.py +101 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/hashes.py +147 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/logging.py +354 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/misc.py +773 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/packaging.py +58 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/retry.py +42 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/subprocess.py +245 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +296 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/unpacking.py +337 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- package/python/.venv/Lib/site-packages/pip/_internal/utils/wheel.py +134 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/git.py +527 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/subversion.py +324 -0
- package/python/.venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
- package/python/.venv/Lib/site-packages/pip/_internal/wheel_builder.py +354 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/__init__.py +116 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +500 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/core.py +114 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/database.py +1329 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/index.py +508 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/locators.py +1295 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +384 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/markers.py +162 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/version.py +750 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +263 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_parser.py +354 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/markers.py +331 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/metadata.py +863 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +91 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1020 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/tags.py +617 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/utils.py +163 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/packaging/version.py +582 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +298 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +269 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +16 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/adapters.py +719 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/compat.py +78 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/models.py +1037 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/requests/utils.py +1096 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__main__.py +273 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +159 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/align.py +312 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/box.py +480 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/console.py +2661 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/control.py +225 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +191 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/emoji.py +96 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/live.py +375 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/live_render.py +112 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/panel.py +318 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/spinner.py +138 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/style.py +796 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/syntax.py +966 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/table.py +1007 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/traceback.py +797 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +770 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_re.py +112 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_api.py +316 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/typing_extensions.py +3641 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/python/.venv/Lib/site-packages/pip/_vendor/vendor.txt +18 -0
- package/python/.venv/Lib/site-packages/pip/py.typed +4 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +806 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/LICENSE.txt +20 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/METADATA +90 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/RECORD +854 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/WHEEL +5 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/entry_points.txt +3 -0
- package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/top_level.txt +1 -0
- package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER +1 -0
- package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/METADATA +72 -0
- package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/RECORD +7 -0
- package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/WHEEL +4 -0
- package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE +279 -0
- package/python/.venv/Lib/site-packages/typing_extensions.py +4317 -0
- package/python/.venv/Scripts/Activate.ps1 +528 -0
- package/python/.venv/Scripts/activate +76 -0
- package/python/.venv/Scripts/activate.bat +34 -0
- package/python/.venv/Scripts/deactivate.bat +22 -0
- package/python/.venv/Scripts/httpx.exe +0 -0
- package/python/.venv/Scripts/pip.exe +0 -0
- package/python/.venv/Scripts/pip3.12.exe +0 -0
- package/python/.venv/Scripts/pip3.exe +0 -0
- package/python/.venv/Scripts/python.exe +0 -0
- package/python/.venv/Scripts/pythonw.exe +0 -0
- package/python/.venv/pyvenv.cfg +5 -0
- package/python/__pycache__/builder.cpython-312.pyc +0 -0
- package/python/__pycache__/config.cpython-312.pyc +0 -0
- package/python/builder.py +225 -0
- package/python/cli.py +787 -0
- package/python/config.py +82 -0
- package/scripts/runner.js +145 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: h11
|
|
3
|
+
Version: 0.16.0
|
|
4
|
+
Summary: A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
|
|
5
|
+
Home-page: https://github.com/python-hyper/h11
|
|
6
|
+
Author: Nathaniel J. Smith
|
|
7
|
+
Author-email: njs@pobox.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
22
|
+
Classifier: Topic :: System :: Networking
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
License-File: LICENSE.txt
|
|
25
|
+
Dynamic: author
|
|
26
|
+
Dynamic: author-email
|
|
27
|
+
Dynamic: classifier
|
|
28
|
+
Dynamic: description
|
|
29
|
+
Dynamic: home-page
|
|
30
|
+
Dynamic: license
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
Dynamic: requires-python
|
|
33
|
+
Dynamic: summary
|
|
34
|
+
|
|
35
|
+
h11
|
|
36
|
+
===
|
|
37
|
+
|
|
38
|
+
.. image:: https://travis-ci.org/python-hyper/h11.svg?branch=master
|
|
39
|
+
:target: https://travis-ci.org/python-hyper/h11
|
|
40
|
+
:alt: Automated test status
|
|
41
|
+
|
|
42
|
+
.. image:: https://codecov.io/gh/python-hyper/h11/branch/master/graph/badge.svg
|
|
43
|
+
:target: https://codecov.io/gh/python-hyper/h11
|
|
44
|
+
:alt: Test coverage
|
|
45
|
+
|
|
46
|
+
.. image:: https://readthedocs.org/projects/h11/badge/?version=latest
|
|
47
|
+
:target: http://h11.readthedocs.io/en/latest/?badge=latest
|
|
48
|
+
:alt: Documentation Status
|
|
49
|
+
|
|
50
|
+
This is a little HTTP/1.1 library written from scratch in Python,
|
|
51
|
+
heavily inspired by `hyper-h2 <https://hyper-h2.readthedocs.io/>`_.
|
|
52
|
+
|
|
53
|
+
It's a "bring-your-own-I/O" library; h11 contains no IO code
|
|
54
|
+
whatsoever. This means you can hook h11 up to your favorite network
|
|
55
|
+
API, and that could be anything you want: synchronous, threaded,
|
|
56
|
+
asynchronous, or your own implementation of `RFC 6214
|
|
57
|
+
<https://tools.ietf.org/html/rfc6214>`_ -- h11 won't judge you.
|
|
58
|
+
(Compare this to the current state of the art, where every time a `new
|
|
59
|
+
network API <https://trio.readthedocs.io/>`_ comes along then someone
|
|
60
|
+
gets to start over reimplementing the entire HTTP protocol from
|
|
61
|
+
scratch.) Cory Benfield made an `excellent blog post describing the
|
|
62
|
+
benefits of this approach
|
|
63
|
+
<https://lukasa.co.uk/2015/10/The_New_Hyper/>`_, or if you like video
|
|
64
|
+
then here's his `PyCon 2016 talk on the same theme
|
|
65
|
+
<https://www.youtube.com/watch?v=7cC3_jGwl_U>`_.
|
|
66
|
+
|
|
67
|
+
This also means that h11 is not immediately useful out of the box:
|
|
68
|
+
it's a toolkit for building programs that speak HTTP, not something
|
|
69
|
+
that could directly replace ``requests`` or ``twisted.web`` or
|
|
70
|
+
whatever. But h11 makes it much easier to implement something like
|
|
71
|
+
``requests`` or ``twisted.web``.
|
|
72
|
+
|
|
73
|
+
At a high level, working with h11 goes like this:
|
|
74
|
+
|
|
75
|
+
1) First, create an ``h11.Connection`` object to track the state of a
|
|
76
|
+
single HTTP/1.1 connection.
|
|
77
|
+
|
|
78
|
+
2) When you read data off the network, pass it to
|
|
79
|
+
``conn.receive_data(...)``; you'll get back a list of objects
|
|
80
|
+
representing high-level HTTP "events".
|
|
81
|
+
|
|
82
|
+
3) When you want to send a high-level HTTP event, create the
|
|
83
|
+
corresponding "event" object and pass it to ``conn.send(...)``;
|
|
84
|
+
this will give you back some bytes that you can then push out
|
|
85
|
+
through the network.
|
|
86
|
+
|
|
87
|
+
For example, a client might instantiate and then send a
|
|
88
|
+
``h11.Request`` object, then zero or more ``h11.Data`` objects for the
|
|
89
|
+
request body (e.g., if this is a POST), and then a
|
|
90
|
+
``h11.EndOfMessage`` to indicate the end of the message. Then the
|
|
91
|
+
server would then send back a ``h11.Response``, some ``h11.Data``, and
|
|
92
|
+
its own ``h11.EndOfMessage``. If either side violates the protocol,
|
|
93
|
+
you'll get a ``h11.ProtocolError`` exception.
|
|
94
|
+
|
|
95
|
+
h11 is suitable for implementing both servers and clients, and has a
|
|
96
|
+
pleasantly symmetric API: the events you send as a client are exactly
|
|
97
|
+
the ones that you receive as a server and vice-versa.
|
|
98
|
+
|
|
99
|
+
`Here's an example of a tiny HTTP client
|
|
100
|
+
<https://github.com/python-hyper/h11/blob/master/examples/basic-client.py>`_
|
|
101
|
+
|
|
102
|
+
It also has `a fine manual <https://h11.readthedocs.io/>`_.
|
|
103
|
+
|
|
104
|
+
FAQ
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
*Whyyyyy?*
|
|
108
|
+
|
|
109
|
+
I wanted to play with HTTP in `Curio
|
|
110
|
+
<https://curio.readthedocs.io/en/latest/tutorial.html>`__ and `Trio
|
|
111
|
+
<https://trio.readthedocs.io>`__, which at the time didn't have any
|
|
112
|
+
HTTP libraries. So I thought, no big deal, Python has, like, a dozen
|
|
113
|
+
different implementations of HTTP, surely I can find one that's
|
|
114
|
+
reusable. I didn't find one, but I did find Cory's call-to-arms
|
|
115
|
+
blog-post. So I figured, well, fine, if I have to implement HTTP from
|
|
116
|
+
scratch, at least I can make sure no-one *else* has to ever again.
|
|
117
|
+
|
|
118
|
+
*Should I use it?*
|
|
119
|
+
|
|
120
|
+
Maybe. You should be aware that it's a very young project. But, it's
|
|
121
|
+
feature complete and has an exhaustive test-suite and complete docs,
|
|
122
|
+
so the next step is for people to try using it and see how it goes
|
|
123
|
+
:-). If you do then please let us know -- if nothing else we'll want
|
|
124
|
+
to talk to you before making any incompatible changes!
|
|
125
|
+
|
|
126
|
+
*What are the features/limitations?*
|
|
127
|
+
|
|
128
|
+
Roughly speaking, it's trying to be a robust, complete, and non-hacky
|
|
129
|
+
implementation of the first "chapter" of the HTTP/1.1 spec: `RFC 7230:
|
|
130
|
+
HTTP/1.1 Message Syntax and Routing
|
|
131
|
+
<https://tools.ietf.org/html/rfc7230>`_. That is, it mostly focuses on
|
|
132
|
+
implementing HTTP at the level of taking bytes on and off the wire,
|
|
133
|
+
and the headers related to that, and tries to be anal about spec
|
|
134
|
+
conformance. It doesn't know about higher-level concerns like URL
|
|
135
|
+
routing, conditional GETs, cross-origin cookie policies, or content
|
|
136
|
+
negotiation. But it does know how to take care of framing,
|
|
137
|
+
cross-version differences in keep-alive handling, and the "obsolete
|
|
138
|
+
line folding" rule, so you can focus your energies on the hard /
|
|
139
|
+
interesting parts for your application, and it tries to support the
|
|
140
|
+
full specification in the sense that any useful HTTP/1.1 conformant
|
|
141
|
+
application should be able to use h11.
|
|
142
|
+
|
|
143
|
+
It's pure Python, and has no dependencies outside of the standard
|
|
144
|
+
library.
|
|
145
|
+
|
|
146
|
+
It has a test suite with 100.0% coverage for both statements and
|
|
147
|
+
branches.
|
|
148
|
+
|
|
149
|
+
Currently it supports Python 3 (testing on 3.8-3.12) and PyPy 3.
|
|
150
|
+
The last Python 2-compatible version was h11 0.11.x.
|
|
151
|
+
(Originally it had a Cython wrapper for `http-parser
|
|
152
|
+
<https://github.com/nodejs/http-parser>`_ and a beautiful nested state
|
|
153
|
+
machine implemented with ``yield from`` to postprocess the output. But
|
|
154
|
+
I had to take these out -- the new *parser* needs fewer lines-of-code
|
|
155
|
+
than the old *parser wrapper*, is written in pure Python, uses no
|
|
156
|
+
exotic language syntax, and has more features. It's sad, really; that
|
|
157
|
+
old state machine was really slick. I just need a few sentences here
|
|
158
|
+
to mourn that.)
|
|
159
|
+
|
|
160
|
+
I don't know how fast it is. I haven't benchmarked or profiled it yet,
|
|
161
|
+
so it's probably got a few pointless hot spots, and I've been trying
|
|
162
|
+
to err on the side of simplicity and robustness instead of
|
|
163
|
+
micro-optimization. But at the architectural level I tried hard to
|
|
164
|
+
avoid fundamentally bad decisions, e.g., I believe that all the
|
|
165
|
+
parsing algorithms remain linear-time even in the face of pathological
|
|
166
|
+
input like slowloris, and there are no byte-by-byte loops. (I also
|
|
167
|
+
believe that it maintains bounded memory usage in the face of
|
|
168
|
+
arbitrary/pathological input.)
|
|
169
|
+
|
|
170
|
+
The whole library is ~800 lines-of-code. You can read and understand
|
|
171
|
+
the whole thing in less than an hour. Most of the energy invested in
|
|
172
|
+
this so far has been spent on trying to keep things simple by
|
|
173
|
+
minimizing special-cases and ad hoc state manipulation; even though it
|
|
174
|
+
is now quite small and simple, I'm still annoyed that I haven't
|
|
175
|
+
figured out how to make it even smaller and simpler. (Unfortunately,
|
|
176
|
+
HTTP does not lend itself to simplicity.)
|
|
177
|
+
|
|
178
|
+
The API is ~feature complete and I don't expect the general outlines
|
|
179
|
+
to change much, but you can't judge an API's ergonomics until you
|
|
180
|
+
actually document and use it, so I'd expect some changes in the
|
|
181
|
+
details.
|
|
182
|
+
|
|
183
|
+
*How do I try it?*
|
|
184
|
+
|
|
185
|
+
.. code-block:: sh
|
|
186
|
+
|
|
187
|
+
$ pip install h11
|
|
188
|
+
$ git clone git@github.com:python-hyper/h11
|
|
189
|
+
$ cd h11/examples
|
|
190
|
+
$ python basic-client.py
|
|
191
|
+
|
|
192
|
+
and go from there.
|
|
193
|
+
|
|
194
|
+
*License?*
|
|
195
|
+
|
|
196
|
+
MIT
|
|
197
|
+
|
|
198
|
+
*Code of conduct?*
|
|
199
|
+
|
|
200
|
+
Contributors are requested to follow our `code of conduct
|
|
201
|
+
<https://github.com/python-hyper/h11/blob/master/CODE_OF_CONDUCT.md>`_ in
|
|
202
|
+
all project spaces.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
h11-0.16.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
|
2
|
+
h11-0.16.0.dist-info/METADATA,sha256=KPMmCYrAn8unm48YD5YIfIQf4kViFct7hyqcfVzRnWQ,8348
|
|
3
|
+
h11-0.16.0.dist-info/RECORD,,
|
|
4
|
+
h11-0.16.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
5
|
+
h11-0.16.0.dist-info/licenses/LICENSE.txt,sha256=N9tbuFkm2yikJ6JYZ_ELEjIAOuob5pzLhRE4rbjm82E,1124
|
|
6
|
+
h11-0.16.0.dist-info/top_level.txt,sha256=F7dC4jl3zeh8TGHEPaWJrMbeuoWbS379Gwdi-Yvdcis,4
|
|
7
|
+
h11/__init__.py,sha256=iO1KzkSO42yZ6ffg-VMgbx_ZVTWGUY00nRYEWn-s3kY,1507
|
|
8
|
+
h11/__pycache__/__init__.cpython-312.pyc,,
|
|
9
|
+
h11/__pycache__/_abnf.cpython-312.pyc,,
|
|
10
|
+
h11/__pycache__/_connection.cpython-312.pyc,,
|
|
11
|
+
h11/__pycache__/_events.cpython-312.pyc,,
|
|
12
|
+
h11/__pycache__/_headers.cpython-312.pyc,,
|
|
13
|
+
h11/__pycache__/_readers.cpython-312.pyc,,
|
|
14
|
+
h11/__pycache__/_receivebuffer.cpython-312.pyc,,
|
|
15
|
+
h11/__pycache__/_state.cpython-312.pyc,,
|
|
16
|
+
h11/__pycache__/_util.cpython-312.pyc,,
|
|
17
|
+
h11/__pycache__/_version.cpython-312.pyc,,
|
|
18
|
+
h11/__pycache__/_writers.cpython-312.pyc,,
|
|
19
|
+
h11/_abnf.py,sha256=ybixr0xsupnkA6GFAyMubuXF6Tc1lb_hF890NgCsfNc,4815
|
|
20
|
+
h11/_connection.py,sha256=k9YRVf6koZqbttBW36xSWaJpWdZwa-xQVU9AHEo9DuI,26863
|
|
21
|
+
h11/_events.py,sha256=I97aXoal1Wu7dkL548BANBUCkOIbe-x5CioYA9IBY14,11792
|
|
22
|
+
h11/_headers.py,sha256=P7D-lBNxHwdLZPLimmYwrPG-9ZkjElvvJZJdZAgSP-4,10412
|
|
23
|
+
h11/_readers.py,sha256=a4RypORUCC3d0q_kxPuBIM7jTD8iLt5X91TH0FsduN4,8590
|
|
24
|
+
h11/_receivebuffer.py,sha256=xrspsdsNgWFxRfQcTXxR8RrdjRXXTK0Io5cQYWpJ1Ws,5252
|
|
25
|
+
h11/_state.py,sha256=_5LG_BGR8FCcFQeBPH-TMHgm_-B-EUcWCnQof_9XjFE,13231
|
|
26
|
+
h11/_util.py,sha256=LWkkjXyJaFlAy6Lt39w73UStklFT5ovcvo0TkY7RYuk,4888
|
|
27
|
+
h11/_version.py,sha256=GVSsbPSPDcOuF6ptfIiXnVJoaEm3ygXbMnqlr_Giahw,686
|
|
28
|
+
h11/_writers.py,sha256=oFKm6PtjeHfbj4RLX7VB7KDc1gIY53gXG3_HR9ltmTA,5081
|
|
29
|
+
h11/py.typed,sha256=sow9soTwP9T_gEAQSVh7Gb8855h04Nwmhs2We-JRgZM,7
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Nathaniel J. Smith <njs@pobox.com> and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
h11
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
from ._api import request, stream
|
|
2
|
+
from ._async import (
|
|
3
|
+
AsyncConnectionInterface,
|
|
4
|
+
AsyncConnectionPool,
|
|
5
|
+
AsyncHTTP2Connection,
|
|
6
|
+
AsyncHTTP11Connection,
|
|
7
|
+
AsyncHTTPConnection,
|
|
8
|
+
AsyncHTTPProxy,
|
|
9
|
+
AsyncSOCKSProxy,
|
|
10
|
+
)
|
|
11
|
+
from ._backends.base import (
|
|
12
|
+
SOCKET_OPTION,
|
|
13
|
+
AsyncNetworkBackend,
|
|
14
|
+
AsyncNetworkStream,
|
|
15
|
+
NetworkBackend,
|
|
16
|
+
NetworkStream,
|
|
17
|
+
)
|
|
18
|
+
from ._backends.mock import AsyncMockBackend, AsyncMockStream, MockBackend, MockStream
|
|
19
|
+
from ._backends.sync import SyncBackend
|
|
20
|
+
from ._exceptions import (
|
|
21
|
+
ConnectError,
|
|
22
|
+
ConnectionNotAvailable,
|
|
23
|
+
ConnectTimeout,
|
|
24
|
+
LocalProtocolError,
|
|
25
|
+
NetworkError,
|
|
26
|
+
PoolTimeout,
|
|
27
|
+
ProtocolError,
|
|
28
|
+
ProxyError,
|
|
29
|
+
ReadError,
|
|
30
|
+
ReadTimeout,
|
|
31
|
+
RemoteProtocolError,
|
|
32
|
+
TimeoutException,
|
|
33
|
+
UnsupportedProtocol,
|
|
34
|
+
WriteError,
|
|
35
|
+
WriteTimeout,
|
|
36
|
+
)
|
|
37
|
+
from ._models import URL, Origin, Proxy, Request, Response
|
|
38
|
+
from ._ssl import default_ssl_context
|
|
39
|
+
from ._sync import (
|
|
40
|
+
ConnectionInterface,
|
|
41
|
+
ConnectionPool,
|
|
42
|
+
HTTP2Connection,
|
|
43
|
+
HTTP11Connection,
|
|
44
|
+
HTTPConnection,
|
|
45
|
+
HTTPProxy,
|
|
46
|
+
SOCKSProxy,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
# The 'httpcore.AnyIOBackend' class is conditional on 'anyio' being installed.
|
|
50
|
+
try:
|
|
51
|
+
from ._backends.anyio import AnyIOBackend
|
|
52
|
+
except ImportError: # pragma: nocover
|
|
53
|
+
|
|
54
|
+
class AnyIOBackend: # type: ignore
|
|
55
|
+
def __init__(self, *args, **kwargs): # type: ignore
|
|
56
|
+
msg = (
|
|
57
|
+
"Attempted to use 'httpcore.AnyIOBackend' but 'anyio' is not installed."
|
|
58
|
+
)
|
|
59
|
+
raise RuntimeError(msg)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# The 'httpcore.TrioBackend' class is conditional on 'trio' being installed.
|
|
63
|
+
try:
|
|
64
|
+
from ._backends.trio import TrioBackend
|
|
65
|
+
except ImportError: # pragma: nocover
|
|
66
|
+
|
|
67
|
+
class TrioBackend: # type: ignore
|
|
68
|
+
def __init__(self, *args, **kwargs): # type: ignore
|
|
69
|
+
msg = "Attempted to use 'httpcore.TrioBackend' but 'trio' is not installed."
|
|
70
|
+
raise RuntimeError(msg)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
__all__ = [
|
|
74
|
+
# top-level requests
|
|
75
|
+
"request",
|
|
76
|
+
"stream",
|
|
77
|
+
# models
|
|
78
|
+
"Origin",
|
|
79
|
+
"URL",
|
|
80
|
+
"Request",
|
|
81
|
+
"Response",
|
|
82
|
+
"Proxy",
|
|
83
|
+
# async
|
|
84
|
+
"AsyncHTTPConnection",
|
|
85
|
+
"AsyncConnectionPool",
|
|
86
|
+
"AsyncHTTPProxy",
|
|
87
|
+
"AsyncHTTP11Connection",
|
|
88
|
+
"AsyncHTTP2Connection",
|
|
89
|
+
"AsyncConnectionInterface",
|
|
90
|
+
"AsyncSOCKSProxy",
|
|
91
|
+
# sync
|
|
92
|
+
"HTTPConnection",
|
|
93
|
+
"ConnectionPool",
|
|
94
|
+
"HTTPProxy",
|
|
95
|
+
"HTTP11Connection",
|
|
96
|
+
"HTTP2Connection",
|
|
97
|
+
"ConnectionInterface",
|
|
98
|
+
"SOCKSProxy",
|
|
99
|
+
# network backends, implementations
|
|
100
|
+
"SyncBackend",
|
|
101
|
+
"AnyIOBackend",
|
|
102
|
+
"TrioBackend",
|
|
103
|
+
# network backends, mock implementations
|
|
104
|
+
"AsyncMockBackend",
|
|
105
|
+
"AsyncMockStream",
|
|
106
|
+
"MockBackend",
|
|
107
|
+
"MockStream",
|
|
108
|
+
# network backends, interface
|
|
109
|
+
"AsyncNetworkStream",
|
|
110
|
+
"AsyncNetworkBackend",
|
|
111
|
+
"NetworkStream",
|
|
112
|
+
"NetworkBackend",
|
|
113
|
+
# util
|
|
114
|
+
"default_ssl_context",
|
|
115
|
+
"SOCKET_OPTION",
|
|
116
|
+
# exceptions
|
|
117
|
+
"ConnectionNotAvailable",
|
|
118
|
+
"ProxyError",
|
|
119
|
+
"ProtocolError",
|
|
120
|
+
"LocalProtocolError",
|
|
121
|
+
"RemoteProtocolError",
|
|
122
|
+
"UnsupportedProtocol",
|
|
123
|
+
"TimeoutException",
|
|
124
|
+
"PoolTimeout",
|
|
125
|
+
"ConnectTimeout",
|
|
126
|
+
"ReadTimeout",
|
|
127
|
+
"WriteTimeout",
|
|
128
|
+
"NetworkError",
|
|
129
|
+
"ConnectError",
|
|
130
|
+
"ReadError",
|
|
131
|
+
"WriteError",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
__version__ = "1.0.9"
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
__locals = locals()
|
|
138
|
+
for __name in __all__:
|
|
139
|
+
# Exclude SOCKET_OPTION, it causes AttributeError on Python 3.14
|
|
140
|
+
if not __name.startswith(("__", "SOCKET_OPTION")):
|
|
141
|
+
setattr(__locals[__name], "__module__", "httpcore") # noqa
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import contextlib
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
from ._models import URL, Extensions, HeaderTypes, Response
|
|
7
|
+
from ._sync.connection_pool import ConnectionPool
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def request(
|
|
11
|
+
method: bytes | str,
|
|
12
|
+
url: URL | bytes | str,
|
|
13
|
+
*,
|
|
14
|
+
headers: HeaderTypes = None,
|
|
15
|
+
content: bytes | typing.Iterator[bytes] | None = None,
|
|
16
|
+
extensions: Extensions | None = None,
|
|
17
|
+
) -> Response:
|
|
18
|
+
"""
|
|
19
|
+
Sends an HTTP request, returning the response.
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
response = httpcore.request("GET", "https://www.example.com/")
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Arguments:
|
|
26
|
+
method: The HTTP method for the request. Typically one of `"GET"`,
|
|
27
|
+
`"OPTIONS"`, `"HEAD"`, `"POST"`, `"PUT"`, `"PATCH"`, or `"DELETE"`.
|
|
28
|
+
url: The URL of the HTTP request. Either as an instance of `httpcore.URL`,
|
|
29
|
+
or as str/bytes.
|
|
30
|
+
headers: The HTTP request headers. Either as a dictionary of str/bytes,
|
|
31
|
+
or as a list of two-tuples of str/bytes.
|
|
32
|
+
content: The content of the request body. Either as bytes,
|
|
33
|
+
or as a bytes iterator.
|
|
34
|
+
extensions: A dictionary of optional extra information included on the request.
|
|
35
|
+
Possible keys include `"timeout"`.
|
|
36
|
+
|
|
37
|
+
Returns:
|
|
38
|
+
An instance of `httpcore.Response`.
|
|
39
|
+
"""
|
|
40
|
+
with ConnectionPool() as pool:
|
|
41
|
+
return pool.request(
|
|
42
|
+
method=method,
|
|
43
|
+
url=url,
|
|
44
|
+
headers=headers,
|
|
45
|
+
content=content,
|
|
46
|
+
extensions=extensions,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
@contextlib.contextmanager
|
|
51
|
+
def stream(
|
|
52
|
+
method: bytes | str,
|
|
53
|
+
url: URL | bytes | str,
|
|
54
|
+
*,
|
|
55
|
+
headers: HeaderTypes = None,
|
|
56
|
+
content: bytes | typing.Iterator[bytes] | None = None,
|
|
57
|
+
extensions: Extensions | None = None,
|
|
58
|
+
) -> typing.Iterator[Response]:
|
|
59
|
+
"""
|
|
60
|
+
Sends an HTTP request, returning the response within a content manager.
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
with httpcore.stream("GET", "https://www.example.com/") as response:
|
|
64
|
+
...
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
When using the `stream()` function, the body of the response will not be
|
|
68
|
+
automatically read. If you want to access the response body you should
|
|
69
|
+
either use `content = response.read()`, or `for chunk in response.iter_content()`.
|
|
70
|
+
|
|
71
|
+
Arguments:
|
|
72
|
+
method: The HTTP method for the request. Typically one of `"GET"`,
|
|
73
|
+
`"OPTIONS"`, `"HEAD"`, `"POST"`, `"PUT"`, `"PATCH"`, or `"DELETE"`.
|
|
74
|
+
url: The URL of the HTTP request. Either as an instance of `httpcore.URL`,
|
|
75
|
+
or as str/bytes.
|
|
76
|
+
headers: The HTTP request headers. Either as a dictionary of str/bytes,
|
|
77
|
+
or as a list of two-tuples of str/bytes.
|
|
78
|
+
content: The content of the request body. Either as bytes,
|
|
79
|
+
or as a bytes iterator.
|
|
80
|
+
extensions: A dictionary of optional extra information included on the request.
|
|
81
|
+
Possible keys include `"timeout"`.
|
|
82
|
+
|
|
83
|
+
Returns:
|
|
84
|
+
An instance of `httpcore.Response`.
|
|
85
|
+
"""
|
|
86
|
+
with ConnectionPool() as pool:
|
|
87
|
+
with pool.stream(
|
|
88
|
+
method=method,
|
|
89
|
+
url=url,
|
|
90
|
+
headers=headers,
|
|
91
|
+
content=content,
|
|
92
|
+
extensions=extensions,
|
|
93
|
+
) as response:
|
|
94
|
+
yield response
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from .connection import AsyncHTTPConnection
|
|
2
|
+
from .connection_pool import AsyncConnectionPool
|
|
3
|
+
from .http11 import AsyncHTTP11Connection
|
|
4
|
+
from .http_proxy import AsyncHTTPProxy
|
|
5
|
+
from .interfaces import AsyncConnectionInterface
|
|
6
|
+
|
|
7
|
+
try:
|
|
8
|
+
from .http2 import AsyncHTTP2Connection
|
|
9
|
+
except ImportError: # pragma: nocover
|
|
10
|
+
|
|
11
|
+
class AsyncHTTP2Connection: # type: ignore
|
|
12
|
+
def __init__(self, *args, **kwargs) -> None: # type: ignore
|
|
13
|
+
raise RuntimeError(
|
|
14
|
+
"Attempted to use http2 support, but the `h2` package is not "
|
|
15
|
+
"installed. Use 'pip install httpcore[http2]'."
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
try:
|
|
20
|
+
from .socks_proxy import AsyncSOCKSProxy
|
|
21
|
+
except ImportError: # pragma: nocover
|
|
22
|
+
|
|
23
|
+
class AsyncSOCKSProxy: # type: ignore
|
|
24
|
+
def __init__(self, *args, **kwargs) -> None: # type: ignore
|
|
25
|
+
raise RuntimeError(
|
|
26
|
+
"Attempted to use SOCKS support, but the `socksio` package is not "
|
|
27
|
+
"installed. Use 'pip install httpcore[socks]'."
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
__all__ = [
|
|
32
|
+
"AsyncHTTPConnection",
|
|
33
|
+
"AsyncConnectionPool",
|
|
34
|
+
"AsyncHTTPProxy",
|
|
35
|
+
"AsyncHTTP11Connection",
|
|
36
|
+
"AsyncHTTP2Connection",
|
|
37
|
+
"AsyncConnectionInterface",
|
|
38
|
+
"AsyncSOCKSProxy",
|
|
39
|
+
]
|
|
Binary file
|
|
Binary file
|
package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|