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,300 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import io
|
|
4
|
+
import mimetypes
|
|
5
|
+
import os
|
|
6
|
+
import re
|
|
7
|
+
import typing
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
from ._types import (
|
|
11
|
+
AsyncByteStream,
|
|
12
|
+
FileContent,
|
|
13
|
+
FileTypes,
|
|
14
|
+
RequestData,
|
|
15
|
+
RequestFiles,
|
|
16
|
+
SyncByteStream,
|
|
17
|
+
)
|
|
18
|
+
from ._utils import (
|
|
19
|
+
peek_filelike_length,
|
|
20
|
+
primitive_value_to_str,
|
|
21
|
+
to_bytes,
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
_HTML5_FORM_ENCODING_REPLACEMENTS = {'"': "%22", "\\": "\\\\"}
|
|
25
|
+
_HTML5_FORM_ENCODING_REPLACEMENTS.update(
|
|
26
|
+
{chr(c): "%{:02X}".format(c) for c in range(0x1F + 1) if c != 0x1B}
|
|
27
|
+
)
|
|
28
|
+
_HTML5_FORM_ENCODING_RE = re.compile(
|
|
29
|
+
r"|".join([re.escape(c) for c in _HTML5_FORM_ENCODING_REPLACEMENTS.keys()])
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _format_form_param(name: str, value: str) -> bytes:
|
|
34
|
+
"""
|
|
35
|
+
Encode a name/value pair within a multipart form.
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
def replacer(match: typing.Match[str]) -> str:
|
|
39
|
+
return _HTML5_FORM_ENCODING_REPLACEMENTS[match.group(0)]
|
|
40
|
+
|
|
41
|
+
value = _HTML5_FORM_ENCODING_RE.sub(replacer, value)
|
|
42
|
+
return f'{name}="{value}"'.encode()
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def _guess_content_type(filename: str | None) -> str | None:
|
|
46
|
+
"""
|
|
47
|
+
Guesses the mimetype based on a filename. Defaults to `application/octet-stream`.
|
|
48
|
+
|
|
49
|
+
Returns `None` if `filename` is `None` or empty.
|
|
50
|
+
"""
|
|
51
|
+
if filename:
|
|
52
|
+
return mimetypes.guess_type(filename)[0] or "application/octet-stream"
|
|
53
|
+
return None
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
def get_multipart_boundary_from_content_type(
|
|
57
|
+
content_type: bytes | None,
|
|
58
|
+
) -> bytes | None:
|
|
59
|
+
if not content_type or not content_type.startswith(b"multipart/form-data"):
|
|
60
|
+
return None
|
|
61
|
+
# parse boundary according to
|
|
62
|
+
# https://www.rfc-editor.org/rfc/rfc2046#section-5.1.1
|
|
63
|
+
if b";" in content_type:
|
|
64
|
+
for section in content_type.split(b";"):
|
|
65
|
+
if section.strip().lower().startswith(b"boundary="):
|
|
66
|
+
return section.strip()[len(b"boundary=") :].strip(b'"')
|
|
67
|
+
return None
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class DataField:
|
|
71
|
+
"""
|
|
72
|
+
A single form field item, within a multipart form field.
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
def __init__(self, name: str, value: str | bytes | int | float | None) -> None:
|
|
76
|
+
if not isinstance(name, str):
|
|
77
|
+
raise TypeError(
|
|
78
|
+
f"Invalid type for name. Expected str, got {type(name)}: {name!r}"
|
|
79
|
+
)
|
|
80
|
+
if value is not None and not isinstance(value, (str, bytes, int, float)):
|
|
81
|
+
raise TypeError(
|
|
82
|
+
"Invalid type for value. Expected primitive type,"
|
|
83
|
+
f" got {type(value)}: {value!r}"
|
|
84
|
+
)
|
|
85
|
+
self.name = name
|
|
86
|
+
self.value: str | bytes = (
|
|
87
|
+
value if isinstance(value, bytes) else primitive_value_to_str(value)
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
def render_headers(self) -> bytes:
|
|
91
|
+
if not hasattr(self, "_headers"):
|
|
92
|
+
name = _format_form_param("name", self.name)
|
|
93
|
+
self._headers = b"".join(
|
|
94
|
+
[b"Content-Disposition: form-data; ", name, b"\r\n\r\n"]
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
return self._headers
|
|
98
|
+
|
|
99
|
+
def render_data(self) -> bytes:
|
|
100
|
+
if not hasattr(self, "_data"):
|
|
101
|
+
self._data = to_bytes(self.value)
|
|
102
|
+
|
|
103
|
+
return self._data
|
|
104
|
+
|
|
105
|
+
def get_length(self) -> int:
|
|
106
|
+
headers = self.render_headers()
|
|
107
|
+
data = self.render_data()
|
|
108
|
+
return len(headers) + len(data)
|
|
109
|
+
|
|
110
|
+
def render(self) -> typing.Iterator[bytes]:
|
|
111
|
+
yield self.render_headers()
|
|
112
|
+
yield self.render_data()
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
class FileField:
|
|
116
|
+
"""
|
|
117
|
+
A single file field item, within a multipart form field.
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
CHUNK_SIZE = 64 * 1024
|
|
121
|
+
|
|
122
|
+
def __init__(self, name: str, value: FileTypes) -> None:
|
|
123
|
+
self.name = name
|
|
124
|
+
|
|
125
|
+
fileobj: FileContent
|
|
126
|
+
|
|
127
|
+
headers: dict[str, str] = {}
|
|
128
|
+
content_type: str | None = None
|
|
129
|
+
|
|
130
|
+
# This large tuple based API largely mirror's requests' API
|
|
131
|
+
# It would be good to think of better APIs for this that we could
|
|
132
|
+
# include in httpx 2.0 since variable length tuples(especially of 4 elements)
|
|
133
|
+
# are quite unwieldly
|
|
134
|
+
if isinstance(value, tuple):
|
|
135
|
+
if len(value) == 2:
|
|
136
|
+
# neither the 3rd parameter (content_type) nor the 4th (headers)
|
|
137
|
+
# was included
|
|
138
|
+
filename, fileobj = value
|
|
139
|
+
elif len(value) == 3:
|
|
140
|
+
filename, fileobj, content_type = value
|
|
141
|
+
else:
|
|
142
|
+
# all 4 parameters included
|
|
143
|
+
filename, fileobj, content_type, headers = value # type: ignore
|
|
144
|
+
else:
|
|
145
|
+
filename = Path(str(getattr(value, "name", "upload"))).name
|
|
146
|
+
fileobj = value
|
|
147
|
+
|
|
148
|
+
if content_type is None:
|
|
149
|
+
content_type = _guess_content_type(filename)
|
|
150
|
+
|
|
151
|
+
has_content_type_header = any("content-type" in key.lower() for key in headers)
|
|
152
|
+
if content_type is not None and not has_content_type_header:
|
|
153
|
+
# note that unlike requests, we ignore the content_type provided in the 3rd
|
|
154
|
+
# tuple element if it is also included in the headers requests does
|
|
155
|
+
# the opposite (it overwrites the headerwith the 3rd tuple element)
|
|
156
|
+
headers["Content-Type"] = content_type
|
|
157
|
+
|
|
158
|
+
if isinstance(fileobj, io.StringIO):
|
|
159
|
+
raise TypeError(
|
|
160
|
+
"Multipart file uploads require 'io.BytesIO', not 'io.StringIO'."
|
|
161
|
+
)
|
|
162
|
+
if isinstance(fileobj, io.TextIOBase):
|
|
163
|
+
raise TypeError(
|
|
164
|
+
"Multipart file uploads must be opened in binary mode, not text mode."
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
self.filename = filename
|
|
168
|
+
self.file = fileobj
|
|
169
|
+
self.headers = headers
|
|
170
|
+
|
|
171
|
+
def get_length(self) -> int | None:
|
|
172
|
+
headers = self.render_headers()
|
|
173
|
+
|
|
174
|
+
if isinstance(self.file, (str, bytes)):
|
|
175
|
+
return len(headers) + len(to_bytes(self.file))
|
|
176
|
+
|
|
177
|
+
file_length = peek_filelike_length(self.file)
|
|
178
|
+
|
|
179
|
+
# If we can't determine the filesize without reading it into memory,
|
|
180
|
+
# then return `None` here, to indicate an unknown file length.
|
|
181
|
+
if file_length is None:
|
|
182
|
+
return None
|
|
183
|
+
|
|
184
|
+
return len(headers) + file_length
|
|
185
|
+
|
|
186
|
+
def render_headers(self) -> bytes:
|
|
187
|
+
if not hasattr(self, "_headers"):
|
|
188
|
+
parts = [
|
|
189
|
+
b"Content-Disposition: form-data; ",
|
|
190
|
+
_format_form_param("name", self.name),
|
|
191
|
+
]
|
|
192
|
+
if self.filename:
|
|
193
|
+
filename = _format_form_param("filename", self.filename)
|
|
194
|
+
parts.extend([b"; ", filename])
|
|
195
|
+
for header_name, header_value in self.headers.items():
|
|
196
|
+
key, val = f"\r\n{header_name}: ".encode(), header_value.encode()
|
|
197
|
+
parts.extend([key, val])
|
|
198
|
+
parts.append(b"\r\n\r\n")
|
|
199
|
+
self._headers = b"".join(parts)
|
|
200
|
+
|
|
201
|
+
return self._headers
|
|
202
|
+
|
|
203
|
+
def render_data(self) -> typing.Iterator[bytes]:
|
|
204
|
+
if isinstance(self.file, (str, bytes)):
|
|
205
|
+
yield to_bytes(self.file)
|
|
206
|
+
return
|
|
207
|
+
|
|
208
|
+
if hasattr(self.file, "seek"):
|
|
209
|
+
try:
|
|
210
|
+
self.file.seek(0)
|
|
211
|
+
except io.UnsupportedOperation:
|
|
212
|
+
pass
|
|
213
|
+
|
|
214
|
+
chunk = self.file.read(self.CHUNK_SIZE)
|
|
215
|
+
while chunk:
|
|
216
|
+
yield to_bytes(chunk)
|
|
217
|
+
chunk = self.file.read(self.CHUNK_SIZE)
|
|
218
|
+
|
|
219
|
+
def render(self) -> typing.Iterator[bytes]:
|
|
220
|
+
yield self.render_headers()
|
|
221
|
+
yield from self.render_data()
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
class MultipartStream(SyncByteStream, AsyncByteStream):
|
|
225
|
+
"""
|
|
226
|
+
Request content as streaming multipart encoded form data.
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
def __init__(
|
|
230
|
+
self,
|
|
231
|
+
data: RequestData,
|
|
232
|
+
files: RequestFiles,
|
|
233
|
+
boundary: bytes | None = None,
|
|
234
|
+
) -> None:
|
|
235
|
+
if boundary is None:
|
|
236
|
+
boundary = os.urandom(16).hex().encode("ascii")
|
|
237
|
+
|
|
238
|
+
self.boundary = boundary
|
|
239
|
+
self.content_type = "multipart/form-data; boundary=%s" % boundary.decode(
|
|
240
|
+
"ascii"
|
|
241
|
+
)
|
|
242
|
+
self.fields = list(self._iter_fields(data, files))
|
|
243
|
+
|
|
244
|
+
def _iter_fields(
|
|
245
|
+
self, data: RequestData, files: RequestFiles
|
|
246
|
+
) -> typing.Iterator[FileField | DataField]:
|
|
247
|
+
for name, value in data.items():
|
|
248
|
+
if isinstance(value, (tuple, list)):
|
|
249
|
+
for item in value:
|
|
250
|
+
yield DataField(name=name, value=item)
|
|
251
|
+
else:
|
|
252
|
+
yield DataField(name=name, value=value)
|
|
253
|
+
|
|
254
|
+
file_items = files.items() if isinstance(files, typing.Mapping) else files
|
|
255
|
+
for name, value in file_items:
|
|
256
|
+
yield FileField(name=name, value=value)
|
|
257
|
+
|
|
258
|
+
def iter_chunks(self) -> typing.Iterator[bytes]:
|
|
259
|
+
for field in self.fields:
|
|
260
|
+
yield b"--%s\r\n" % self.boundary
|
|
261
|
+
yield from field.render()
|
|
262
|
+
yield b"\r\n"
|
|
263
|
+
yield b"--%s--\r\n" % self.boundary
|
|
264
|
+
|
|
265
|
+
def get_content_length(self) -> int | None:
|
|
266
|
+
"""
|
|
267
|
+
Return the length of the multipart encoded content, or `None` if
|
|
268
|
+
any of the files have a length that cannot be determined upfront.
|
|
269
|
+
"""
|
|
270
|
+
boundary_length = len(self.boundary)
|
|
271
|
+
length = 0
|
|
272
|
+
|
|
273
|
+
for field in self.fields:
|
|
274
|
+
field_length = field.get_length()
|
|
275
|
+
if field_length is None:
|
|
276
|
+
return None
|
|
277
|
+
|
|
278
|
+
length += 2 + boundary_length + 2 # b"--{boundary}\r\n"
|
|
279
|
+
length += field_length
|
|
280
|
+
length += 2 # b"\r\n"
|
|
281
|
+
|
|
282
|
+
length += 2 + boundary_length + 4 # b"--{boundary}--\r\n"
|
|
283
|
+
return length
|
|
284
|
+
|
|
285
|
+
# Content stream interface.
|
|
286
|
+
|
|
287
|
+
def get_headers(self) -> dict[str, str]:
|
|
288
|
+
content_length = self.get_content_length()
|
|
289
|
+
content_type = self.content_type
|
|
290
|
+
if content_length is None:
|
|
291
|
+
return {"Transfer-Encoding": "chunked", "Content-Type": content_type}
|
|
292
|
+
return {"Content-Length": str(content_length), "Content-Type": content_type}
|
|
293
|
+
|
|
294
|
+
def __iter__(self) -> typing.Iterator[bytes]:
|
|
295
|
+
for chunk in self.iter_chunks():
|
|
296
|
+
yield chunk
|
|
297
|
+
|
|
298
|
+
async def __aiter__(self) -> typing.AsyncIterator[bytes]:
|
|
299
|
+
for chunk in self.iter_chunks():
|
|
300
|
+
yield chunk
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from enum import IntEnum
|
|
4
|
+
|
|
5
|
+
__all__ = ["codes"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class codes(IntEnum):
|
|
9
|
+
"""HTTP status codes and reason phrases
|
|
10
|
+
|
|
11
|
+
Status codes from the following RFCs are all observed:
|
|
12
|
+
|
|
13
|
+
* RFC 7231: Hypertext Transfer Protocol (HTTP/1.1), obsoletes 2616
|
|
14
|
+
* RFC 6585: Additional HTTP Status Codes
|
|
15
|
+
* RFC 3229: Delta encoding in HTTP
|
|
16
|
+
* RFC 4918: HTTP Extensions for WebDAV, obsoletes 2518
|
|
17
|
+
* RFC 5842: Binding Extensions to WebDAV
|
|
18
|
+
* RFC 7238: Permanent Redirect
|
|
19
|
+
* RFC 2295: Transparent Content Negotiation in HTTP
|
|
20
|
+
* RFC 2774: An HTTP Extension Framework
|
|
21
|
+
* RFC 7540: Hypertext Transfer Protocol Version 2 (HTTP/2)
|
|
22
|
+
* RFC 2324: Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0)
|
|
23
|
+
* RFC 7725: An HTTP Status Code to Report Legal Obstacles
|
|
24
|
+
* RFC 8297: An HTTP Status Code for Indicating Hints
|
|
25
|
+
* RFC 8470: Using Early Data in HTTP
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
def __new__(cls, value: int, phrase: str = "") -> codes:
|
|
29
|
+
obj = int.__new__(cls, value)
|
|
30
|
+
obj._value_ = value
|
|
31
|
+
|
|
32
|
+
obj.phrase = phrase # type: ignore[attr-defined]
|
|
33
|
+
return obj
|
|
34
|
+
|
|
35
|
+
def __str__(self) -> str:
|
|
36
|
+
return str(self.value)
|
|
37
|
+
|
|
38
|
+
@classmethod
|
|
39
|
+
def get_reason_phrase(cls, value: int) -> str:
|
|
40
|
+
try:
|
|
41
|
+
return codes(value).phrase # type: ignore
|
|
42
|
+
except ValueError:
|
|
43
|
+
return ""
|
|
44
|
+
|
|
45
|
+
@classmethod
|
|
46
|
+
def is_informational(cls, value: int) -> bool:
|
|
47
|
+
"""
|
|
48
|
+
Returns `True` for 1xx status codes, `False` otherwise.
|
|
49
|
+
"""
|
|
50
|
+
return 100 <= value <= 199
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def is_success(cls, value: int) -> bool:
|
|
54
|
+
"""
|
|
55
|
+
Returns `True` for 2xx status codes, `False` otherwise.
|
|
56
|
+
"""
|
|
57
|
+
return 200 <= value <= 299
|
|
58
|
+
|
|
59
|
+
@classmethod
|
|
60
|
+
def is_redirect(cls, value: int) -> bool:
|
|
61
|
+
"""
|
|
62
|
+
Returns `True` for 3xx status codes, `False` otherwise.
|
|
63
|
+
"""
|
|
64
|
+
return 300 <= value <= 399
|
|
65
|
+
|
|
66
|
+
@classmethod
|
|
67
|
+
def is_client_error(cls, value: int) -> bool:
|
|
68
|
+
"""
|
|
69
|
+
Returns `True` for 4xx status codes, `False` otherwise.
|
|
70
|
+
"""
|
|
71
|
+
return 400 <= value <= 499
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def is_server_error(cls, value: int) -> bool:
|
|
75
|
+
"""
|
|
76
|
+
Returns `True` for 5xx status codes, `False` otherwise.
|
|
77
|
+
"""
|
|
78
|
+
return 500 <= value <= 599
|
|
79
|
+
|
|
80
|
+
@classmethod
|
|
81
|
+
def is_error(cls, value: int) -> bool:
|
|
82
|
+
"""
|
|
83
|
+
Returns `True` for 4xx or 5xx status codes, `False` otherwise.
|
|
84
|
+
"""
|
|
85
|
+
return 400 <= value <= 599
|
|
86
|
+
|
|
87
|
+
# informational
|
|
88
|
+
CONTINUE = 100, "Continue"
|
|
89
|
+
SWITCHING_PROTOCOLS = 101, "Switching Protocols"
|
|
90
|
+
PROCESSING = 102, "Processing"
|
|
91
|
+
EARLY_HINTS = 103, "Early Hints"
|
|
92
|
+
|
|
93
|
+
# success
|
|
94
|
+
OK = 200, "OK"
|
|
95
|
+
CREATED = 201, "Created"
|
|
96
|
+
ACCEPTED = 202, "Accepted"
|
|
97
|
+
NON_AUTHORITATIVE_INFORMATION = 203, "Non-Authoritative Information"
|
|
98
|
+
NO_CONTENT = 204, "No Content"
|
|
99
|
+
RESET_CONTENT = 205, "Reset Content"
|
|
100
|
+
PARTIAL_CONTENT = 206, "Partial Content"
|
|
101
|
+
MULTI_STATUS = 207, "Multi-Status"
|
|
102
|
+
ALREADY_REPORTED = 208, "Already Reported"
|
|
103
|
+
IM_USED = 226, "IM Used"
|
|
104
|
+
|
|
105
|
+
# redirection
|
|
106
|
+
MULTIPLE_CHOICES = 300, "Multiple Choices"
|
|
107
|
+
MOVED_PERMANENTLY = 301, "Moved Permanently"
|
|
108
|
+
FOUND = 302, "Found"
|
|
109
|
+
SEE_OTHER = 303, "See Other"
|
|
110
|
+
NOT_MODIFIED = 304, "Not Modified"
|
|
111
|
+
USE_PROXY = 305, "Use Proxy"
|
|
112
|
+
TEMPORARY_REDIRECT = 307, "Temporary Redirect"
|
|
113
|
+
PERMANENT_REDIRECT = 308, "Permanent Redirect"
|
|
114
|
+
|
|
115
|
+
# client error
|
|
116
|
+
BAD_REQUEST = 400, "Bad Request"
|
|
117
|
+
UNAUTHORIZED = 401, "Unauthorized"
|
|
118
|
+
PAYMENT_REQUIRED = 402, "Payment Required"
|
|
119
|
+
FORBIDDEN = 403, "Forbidden"
|
|
120
|
+
NOT_FOUND = 404, "Not Found"
|
|
121
|
+
METHOD_NOT_ALLOWED = 405, "Method Not Allowed"
|
|
122
|
+
NOT_ACCEPTABLE = 406, "Not Acceptable"
|
|
123
|
+
PROXY_AUTHENTICATION_REQUIRED = 407, "Proxy Authentication Required"
|
|
124
|
+
REQUEST_TIMEOUT = 408, "Request Timeout"
|
|
125
|
+
CONFLICT = 409, "Conflict"
|
|
126
|
+
GONE = 410, "Gone"
|
|
127
|
+
LENGTH_REQUIRED = 411, "Length Required"
|
|
128
|
+
PRECONDITION_FAILED = 412, "Precondition Failed"
|
|
129
|
+
REQUEST_ENTITY_TOO_LARGE = 413, "Request Entity Too Large"
|
|
130
|
+
REQUEST_URI_TOO_LONG = 414, "Request-URI Too Long"
|
|
131
|
+
UNSUPPORTED_MEDIA_TYPE = 415, "Unsupported Media Type"
|
|
132
|
+
REQUESTED_RANGE_NOT_SATISFIABLE = 416, "Requested Range Not Satisfiable"
|
|
133
|
+
EXPECTATION_FAILED = 417, "Expectation Failed"
|
|
134
|
+
IM_A_TEAPOT = 418, "I'm a teapot"
|
|
135
|
+
MISDIRECTED_REQUEST = 421, "Misdirected Request"
|
|
136
|
+
UNPROCESSABLE_ENTITY = 422, "Unprocessable Entity"
|
|
137
|
+
LOCKED = 423, "Locked"
|
|
138
|
+
FAILED_DEPENDENCY = 424, "Failed Dependency"
|
|
139
|
+
TOO_EARLY = 425, "Too Early"
|
|
140
|
+
UPGRADE_REQUIRED = 426, "Upgrade Required"
|
|
141
|
+
PRECONDITION_REQUIRED = 428, "Precondition Required"
|
|
142
|
+
TOO_MANY_REQUESTS = 429, "Too Many Requests"
|
|
143
|
+
REQUEST_HEADER_FIELDS_TOO_LARGE = 431, "Request Header Fields Too Large"
|
|
144
|
+
UNAVAILABLE_FOR_LEGAL_REASONS = 451, "Unavailable For Legal Reasons"
|
|
145
|
+
|
|
146
|
+
# server errors
|
|
147
|
+
INTERNAL_SERVER_ERROR = 500, "Internal Server Error"
|
|
148
|
+
NOT_IMPLEMENTED = 501, "Not Implemented"
|
|
149
|
+
BAD_GATEWAY = 502, "Bad Gateway"
|
|
150
|
+
SERVICE_UNAVAILABLE = 503, "Service Unavailable"
|
|
151
|
+
GATEWAY_TIMEOUT = 504, "Gateway Timeout"
|
|
152
|
+
HTTP_VERSION_NOT_SUPPORTED = 505, "HTTP Version Not Supported"
|
|
153
|
+
VARIANT_ALSO_NEGOTIATES = 506, "Variant Also Negotiates"
|
|
154
|
+
INSUFFICIENT_STORAGE = 507, "Insufficient Storage"
|
|
155
|
+
LOOP_DETECTED = 508, "Loop Detected"
|
|
156
|
+
NOT_EXTENDED = 510, "Not Extended"
|
|
157
|
+
NETWORK_AUTHENTICATION_REQUIRED = 511, "Network Authentication Required"
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
# Include lower-case styles for `requests` compatibility.
|
|
161
|
+
for code in codes:
|
|
162
|
+
setattr(codes, code._name_.lower(), int(code))
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from .asgi import *
|
|
2
|
+
from .base import *
|
|
3
|
+
from .default import *
|
|
4
|
+
from .mock import *
|
|
5
|
+
from .wsgi import *
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
"ASGITransport",
|
|
9
|
+
"AsyncBaseTransport",
|
|
10
|
+
"BaseTransport",
|
|
11
|
+
"AsyncHTTPTransport",
|
|
12
|
+
"HTTPTransport",
|
|
13
|
+
"MockTransport",
|
|
14
|
+
"WSGITransport",
|
|
15
|
+
]
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
from .._models import Request, Response
|
|
6
|
+
from .._types import AsyncByteStream
|
|
7
|
+
from .base import AsyncBaseTransport
|
|
8
|
+
|
|
9
|
+
if typing.TYPE_CHECKING: # pragma: no cover
|
|
10
|
+
import asyncio
|
|
11
|
+
|
|
12
|
+
import trio
|
|
13
|
+
|
|
14
|
+
Event = typing.Union[asyncio.Event, trio.Event]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
_Message = typing.MutableMapping[str, typing.Any]
|
|
18
|
+
_Receive = typing.Callable[[], typing.Awaitable[_Message]]
|
|
19
|
+
_Send = typing.Callable[
|
|
20
|
+
[typing.MutableMapping[str, typing.Any]], typing.Awaitable[None]
|
|
21
|
+
]
|
|
22
|
+
_ASGIApp = typing.Callable[
|
|
23
|
+
[typing.MutableMapping[str, typing.Any], _Receive, _Send], typing.Awaitable[None]
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
__all__ = ["ASGITransport"]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def is_running_trio() -> bool:
|
|
30
|
+
try:
|
|
31
|
+
# sniffio is a dependency of trio.
|
|
32
|
+
|
|
33
|
+
# See https://github.com/python-trio/trio/issues/2802
|
|
34
|
+
import sniffio
|
|
35
|
+
|
|
36
|
+
if sniffio.current_async_library() == "trio":
|
|
37
|
+
return True
|
|
38
|
+
except ImportError: # pragma: nocover
|
|
39
|
+
pass
|
|
40
|
+
|
|
41
|
+
return False
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def create_event() -> Event:
|
|
45
|
+
if is_running_trio():
|
|
46
|
+
import trio
|
|
47
|
+
|
|
48
|
+
return trio.Event()
|
|
49
|
+
|
|
50
|
+
import asyncio
|
|
51
|
+
|
|
52
|
+
return asyncio.Event()
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class ASGIResponseStream(AsyncByteStream):
|
|
56
|
+
def __init__(self, body: list[bytes]) -> None:
|
|
57
|
+
self._body = body
|
|
58
|
+
|
|
59
|
+
async def __aiter__(self) -> typing.AsyncIterator[bytes]:
|
|
60
|
+
yield b"".join(self._body)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class ASGITransport(AsyncBaseTransport):
|
|
64
|
+
"""
|
|
65
|
+
A custom AsyncTransport that handles sending requests directly to an ASGI app.
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
transport = httpx.ASGITransport(
|
|
69
|
+
app=app,
|
|
70
|
+
root_path="/submount",
|
|
71
|
+
client=("1.2.3.4", 123)
|
|
72
|
+
)
|
|
73
|
+
client = httpx.AsyncClient(transport=transport)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Arguments:
|
|
77
|
+
|
|
78
|
+
* `app` - The ASGI application.
|
|
79
|
+
* `raise_app_exceptions` - Boolean indicating if exceptions in the application
|
|
80
|
+
should be raised. Default to `True`. Can be set to `False` for use cases
|
|
81
|
+
such as testing the content of a client 500 response.
|
|
82
|
+
* `root_path` - The root path on which the ASGI application should be mounted.
|
|
83
|
+
* `client` - A two-tuple indicating the client IP and port of incoming requests.
|
|
84
|
+
```
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
def __init__(
|
|
88
|
+
self,
|
|
89
|
+
app: _ASGIApp,
|
|
90
|
+
raise_app_exceptions: bool = True,
|
|
91
|
+
root_path: str = "",
|
|
92
|
+
client: tuple[str, int] = ("127.0.0.1", 123),
|
|
93
|
+
) -> None:
|
|
94
|
+
self.app = app
|
|
95
|
+
self.raise_app_exceptions = raise_app_exceptions
|
|
96
|
+
self.root_path = root_path
|
|
97
|
+
self.client = client
|
|
98
|
+
|
|
99
|
+
async def handle_async_request(
|
|
100
|
+
self,
|
|
101
|
+
request: Request,
|
|
102
|
+
) -> Response:
|
|
103
|
+
assert isinstance(request.stream, AsyncByteStream)
|
|
104
|
+
|
|
105
|
+
# ASGI scope.
|
|
106
|
+
scope = {
|
|
107
|
+
"type": "http",
|
|
108
|
+
"asgi": {"version": "3.0"},
|
|
109
|
+
"http_version": "1.1",
|
|
110
|
+
"method": request.method,
|
|
111
|
+
"headers": [(k.lower(), v) for (k, v) in request.headers.raw],
|
|
112
|
+
"scheme": request.url.scheme,
|
|
113
|
+
"path": request.url.path,
|
|
114
|
+
"raw_path": request.url.raw_path.split(b"?")[0],
|
|
115
|
+
"query_string": request.url.query,
|
|
116
|
+
"server": (request.url.host, request.url.port),
|
|
117
|
+
"client": self.client,
|
|
118
|
+
"root_path": self.root_path,
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
# Request.
|
|
122
|
+
request_body_chunks = request.stream.__aiter__()
|
|
123
|
+
request_complete = False
|
|
124
|
+
|
|
125
|
+
# Response.
|
|
126
|
+
status_code = None
|
|
127
|
+
response_headers = None
|
|
128
|
+
body_parts = []
|
|
129
|
+
response_started = False
|
|
130
|
+
response_complete = create_event()
|
|
131
|
+
|
|
132
|
+
# ASGI callables.
|
|
133
|
+
|
|
134
|
+
async def receive() -> dict[str, typing.Any]:
|
|
135
|
+
nonlocal request_complete
|
|
136
|
+
|
|
137
|
+
if request_complete:
|
|
138
|
+
await response_complete.wait()
|
|
139
|
+
return {"type": "http.disconnect"}
|
|
140
|
+
|
|
141
|
+
try:
|
|
142
|
+
body = await request_body_chunks.__anext__()
|
|
143
|
+
except StopAsyncIteration:
|
|
144
|
+
request_complete = True
|
|
145
|
+
return {"type": "http.request", "body": b"", "more_body": False}
|
|
146
|
+
return {"type": "http.request", "body": body, "more_body": True}
|
|
147
|
+
|
|
148
|
+
async def send(message: typing.MutableMapping[str, typing.Any]) -> None:
|
|
149
|
+
nonlocal status_code, response_headers, response_started
|
|
150
|
+
|
|
151
|
+
if message["type"] == "http.response.start":
|
|
152
|
+
assert not response_started
|
|
153
|
+
|
|
154
|
+
status_code = message["status"]
|
|
155
|
+
response_headers = message.get("headers", [])
|
|
156
|
+
response_started = True
|
|
157
|
+
|
|
158
|
+
elif message["type"] == "http.response.body":
|
|
159
|
+
assert not response_complete.is_set()
|
|
160
|
+
body = message.get("body", b"")
|
|
161
|
+
more_body = message.get("more_body", False)
|
|
162
|
+
|
|
163
|
+
if body and request.method != "HEAD":
|
|
164
|
+
body_parts.append(body)
|
|
165
|
+
|
|
166
|
+
if not more_body:
|
|
167
|
+
response_complete.set()
|
|
168
|
+
|
|
169
|
+
try:
|
|
170
|
+
await self.app(scope, receive, send)
|
|
171
|
+
except Exception: # noqa: PIE-786
|
|
172
|
+
if self.raise_app_exceptions:
|
|
173
|
+
raise
|
|
174
|
+
|
|
175
|
+
response_complete.set()
|
|
176
|
+
if status_code is None:
|
|
177
|
+
status_code = 500
|
|
178
|
+
if response_headers is None:
|
|
179
|
+
response_headers = {}
|
|
180
|
+
|
|
181
|
+
assert response_complete.is_set()
|
|
182
|
+
assert status_code is not None
|
|
183
|
+
assert response_headers is not None
|
|
184
|
+
|
|
185
|
+
stream = ASGIResponseStream(body_parts)
|
|
186
|
+
|
|
187
|
+
return Response(status_code, headers=response_headers, stream=stream)
|