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,341 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import logging
|
|
4
|
+
import ssl
|
|
5
|
+
|
|
6
|
+
import socksio
|
|
7
|
+
|
|
8
|
+
from .._backends.auto import AutoBackend
|
|
9
|
+
from .._backends.base import AsyncNetworkBackend, AsyncNetworkStream
|
|
10
|
+
from .._exceptions import ConnectionNotAvailable, ProxyError
|
|
11
|
+
from .._models import URL, Origin, Request, Response, enforce_bytes, enforce_url
|
|
12
|
+
from .._ssl import default_ssl_context
|
|
13
|
+
from .._synchronization import AsyncLock
|
|
14
|
+
from .._trace import Trace
|
|
15
|
+
from .connection_pool import AsyncConnectionPool
|
|
16
|
+
from .http11 import AsyncHTTP11Connection
|
|
17
|
+
from .interfaces import AsyncConnectionInterface
|
|
18
|
+
|
|
19
|
+
logger = logging.getLogger("httpcore.socks")
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
AUTH_METHODS = {
|
|
23
|
+
b"\x00": "NO AUTHENTICATION REQUIRED",
|
|
24
|
+
b"\x01": "GSSAPI",
|
|
25
|
+
b"\x02": "USERNAME/PASSWORD",
|
|
26
|
+
b"\xff": "NO ACCEPTABLE METHODS",
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
REPLY_CODES = {
|
|
30
|
+
b"\x00": "Succeeded",
|
|
31
|
+
b"\x01": "General SOCKS server failure",
|
|
32
|
+
b"\x02": "Connection not allowed by ruleset",
|
|
33
|
+
b"\x03": "Network unreachable",
|
|
34
|
+
b"\x04": "Host unreachable",
|
|
35
|
+
b"\x05": "Connection refused",
|
|
36
|
+
b"\x06": "TTL expired",
|
|
37
|
+
b"\x07": "Command not supported",
|
|
38
|
+
b"\x08": "Address type not supported",
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
async def _init_socks5_connection(
|
|
43
|
+
stream: AsyncNetworkStream,
|
|
44
|
+
*,
|
|
45
|
+
host: bytes,
|
|
46
|
+
port: int,
|
|
47
|
+
auth: tuple[bytes, bytes] | None = None,
|
|
48
|
+
) -> None:
|
|
49
|
+
conn = socksio.socks5.SOCKS5Connection()
|
|
50
|
+
|
|
51
|
+
# Auth method request
|
|
52
|
+
auth_method = (
|
|
53
|
+
socksio.socks5.SOCKS5AuthMethod.NO_AUTH_REQUIRED
|
|
54
|
+
if auth is None
|
|
55
|
+
else socksio.socks5.SOCKS5AuthMethod.USERNAME_PASSWORD
|
|
56
|
+
)
|
|
57
|
+
conn.send(socksio.socks5.SOCKS5AuthMethodsRequest([auth_method]))
|
|
58
|
+
outgoing_bytes = conn.data_to_send()
|
|
59
|
+
await stream.write(outgoing_bytes)
|
|
60
|
+
|
|
61
|
+
# Auth method response
|
|
62
|
+
incoming_bytes = await stream.read(max_bytes=4096)
|
|
63
|
+
response = conn.receive_data(incoming_bytes)
|
|
64
|
+
assert isinstance(response, socksio.socks5.SOCKS5AuthReply)
|
|
65
|
+
if response.method != auth_method:
|
|
66
|
+
requested = AUTH_METHODS.get(auth_method, "UNKNOWN")
|
|
67
|
+
responded = AUTH_METHODS.get(response.method, "UNKNOWN")
|
|
68
|
+
raise ProxyError(
|
|
69
|
+
f"Requested {requested} from proxy server, but got {responded}."
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
if response.method == socksio.socks5.SOCKS5AuthMethod.USERNAME_PASSWORD:
|
|
73
|
+
# Username/password request
|
|
74
|
+
assert auth is not None
|
|
75
|
+
username, password = auth
|
|
76
|
+
conn.send(socksio.socks5.SOCKS5UsernamePasswordRequest(username, password))
|
|
77
|
+
outgoing_bytes = conn.data_to_send()
|
|
78
|
+
await stream.write(outgoing_bytes)
|
|
79
|
+
|
|
80
|
+
# Username/password response
|
|
81
|
+
incoming_bytes = await stream.read(max_bytes=4096)
|
|
82
|
+
response = conn.receive_data(incoming_bytes)
|
|
83
|
+
assert isinstance(response, socksio.socks5.SOCKS5UsernamePasswordReply)
|
|
84
|
+
if not response.success:
|
|
85
|
+
raise ProxyError("Invalid username/password")
|
|
86
|
+
|
|
87
|
+
# Connect request
|
|
88
|
+
conn.send(
|
|
89
|
+
socksio.socks5.SOCKS5CommandRequest.from_address(
|
|
90
|
+
socksio.socks5.SOCKS5Command.CONNECT, (host, port)
|
|
91
|
+
)
|
|
92
|
+
)
|
|
93
|
+
outgoing_bytes = conn.data_to_send()
|
|
94
|
+
await stream.write(outgoing_bytes)
|
|
95
|
+
|
|
96
|
+
# Connect response
|
|
97
|
+
incoming_bytes = await stream.read(max_bytes=4096)
|
|
98
|
+
response = conn.receive_data(incoming_bytes)
|
|
99
|
+
assert isinstance(response, socksio.socks5.SOCKS5Reply)
|
|
100
|
+
if response.reply_code != socksio.socks5.SOCKS5ReplyCode.SUCCEEDED:
|
|
101
|
+
reply_code = REPLY_CODES.get(response.reply_code, "UNKOWN")
|
|
102
|
+
raise ProxyError(f"Proxy Server could not connect: {reply_code}.")
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class AsyncSOCKSProxy(AsyncConnectionPool): # pragma: nocover
|
|
106
|
+
"""
|
|
107
|
+
A connection pool that sends requests via an HTTP proxy.
|
|
108
|
+
"""
|
|
109
|
+
|
|
110
|
+
def __init__(
|
|
111
|
+
self,
|
|
112
|
+
proxy_url: URL | bytes | str,
|
|
113
|
+
proxy_auth: tuple[bytes | str, bytes | str] | None = None,
|
|
114
|
+
ssl_context: ssl.SSLContext | None = None,
|
|
115
|
+
max_connections: int | None = 10,
|
|
116
|
+
max_keepalive_connections: int | None = None,
|
|
117
|
+
keepalive_expiry: float | None = None,
|
|
118
|
+
http1: bool = True,
|
|
119
|
+
http2: bool = False,
|
|
120
|
+
retries: int = 0,
|
|
121
|
+
network_backend: AsyncNetworkBackend | None = None,
|
|
122
|
+
) -> None:
|
|
123
|
+
"""
|
|
124
|
+
A connection pool for making HTTP requests.
|
|
125
|
+
|
|
126
|
+
Parameters:
|
|
127
|
+
proxy_url: The URL to use when connecting to the proxy server.
|
|
128
|
+
For example `"http://127.0.0.1:8080/"`.
|
|
129
|
+
ssl_context: An SSL context to use for verifying connections.
|
|
130
|
+
If not specified, the default `httpcore.default_ssl_context()`
|
|
131
|
+
will be used.
|
|
132
|
+
max_connections: The maximum number of concurrent HTTP connections that
|
|
133
|
+
the pool should allow. Any attempt to send a request on a pool that
|
|
134
|
+
would exceed this amount will block until a connection is available.
|
|
135
|
+
max_keepalive_connections: The maximum number of idle HTTP connections
|
|
136
|
+
that will be maintained in the pool.
|
|
137
|
+
keepalive_expiry: The duration in seconds that an idle HTTP connection
|
|
138
|
+
may be maintained for before being expired from the pool.
|
|
139
|
+
http1: A boolean indicating if HTTP/1.1 requests should be supported
|
|
140
|
+
by the connection pool. Defaults to True.
|
|
141
|
+
http2: A boolean indicating if HTTP/2 requests should be supported by
|
|
142
|
+
the connection pool. Defaults to False.
|
|
143
|
+
retries: The maximum number of retries when trying to establish
|
|
144
|
+
a connection.
|
|
145
|
+
local_address: Local address to connect from. Can also be used to
|
|
146
|
+
connect using a particular address family. Using
|
|
147
|
+
`local_address="0.0.0.0"` will connect using an `AF_INET` address
|
|
148
|
+
(IPv4), while using `local_address="::"` will connect using an
|
|
149
|
+
`AF_INET6` address (IPv6).
|
|
150
|
+
uds: Path to a Unix Domain Socket to use instead of TCP sockets.
|
|
151
|
+
network_backend: A backend instance to use for handling network I/O.
|
|
152
|
+
"""
|
|
153
|
+
super().__init__(
|
|
154
|
+
ssl_context=ssl_context,
|
|
155
|
+
max_connections=max_connections,
|
|
156
|
+
max_keepalive_connections=max_keepalive_connections,
|
|
157
|
+
keepalive_expiry=keepalive_expiry,
|
|
158
|
+
http1=http1,
|
|
159
|
+
http2=http2,
|
|
160
|
+
network_backend=network_backend,
|
|
161
|
+
retries=retries,
|
|
162
|
+
)
|
|
163
|
+
self._ssl_context = ssl_context
|
|
164
|
+
self._proxy_url = enforce_url(proxy_url, name="proxy_url")
|
|
165
|
+
if proxy_auth is not None:
|
|
166
|
+
username, password = proxy_auth
|
|
167
|
+
username_bytes = enforce_bytes(username, name="proxy_auth")
|
|
168
|
+
password_bytes = enforce_bytes(password, name="proxy_auth")
|
|
169
|
+
self._proxy_auth: tuple[bytes, bytes] | None = (
|
|
170
|
+
username_bytes,
|
|
171
|
+
password_bytes,
|
|
172
|
+
)
|
|
173
|
+
else:
|
|
174
|
+
self._proxy_auth = None
|
|
175
|
+
|
|
176
|
+
def create_connection(self, origin: Origin) -> AsyncConnectionInterface:
|
|
177
|
+
return AsyncSocks5Connection(
|
|
178
|
+
proxy_origin=self._proxy_url.origin,
|
|
179
|
+
remote_origin=origin,
|
|
180
|
+
proxy_auth=self._proxy_auth,
|
|
181
|
+
ssl_context=self._ssl_context,
|
|
182
|
+
keepalive_expiry=self._keepalive_expiry,
|
|
183
|
+
http1=self._http1,
|
|
184
|
+
http2=self._http2,
|
|
185
|
+
network_backend=self._network_backend,
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
class AsyncSocks5Connection(AsyncConnectionInterface):
|
|
190
|
+
def __init__(
|
|
191
|
+
self,
|
|
192
|
+
proxy_origin: Origin,
|
|
193
|
+
remote_origin: Origin,
|
|
194
|
+
proxy_auth: tuple[bytes, bytes] | None = None,
|
|
195
|
+
ssl_context: ssl.SSLContext | None = None,
|
|
196
|
+
keepalive_expiry: float | None = None,
|
|
197
|
+
http1: bool = True,
|
|
198
|
+
http2: bool = False,
|
|
199
|
+
network_backend: AsyncNetworkBackend | None = None,
|
|
200
|
+
) -> None:
|
|
201
|
+
self._proxy_origin = proxy_origin
|
|
202
|
+
self._remote_origin = remote_origin
|
|
203
|
+
self._proxy_auth = proxy_auth
|
|
204
|
+
self._ssl_context = ssl_context
|
|
205
|
+
self._keepalive_expiry = keepalive_expiry
|
|
206
|
+
self._http1 = http1
|
|
207
|
+
self._http2 = http2
|
|
208
|
+
|
|
209
|
+
self._network_backend: AsyncNetworkBackend = (
|
|
210
|
+
AutoBackend() if network_backend is None else network_backend
|
|
211
|
+
)
|
|
212
|
+
self._connect_lock = AsyncLock()
|
|
213
|
+
self._connection: AsyncConnectionInterface | None = None
|
|
214
|
+
self._connect_failed = False
|
|
215
|
+
|
|
216
|
+
async def handle_async_request(self, request: Request) -> Response:
|
|
217
|
+
timeouts = request.extensions.get("timeout", {})
|
|
218
|
+
sni_hostname = request.extensions.get("sni_hostname", None)
|
|
219
|
+
timeout = timeouts.get("connect", None)
|
|
220
|
+
|
|
221
|
+
async with self._connect_lock:
|
|
222
|
+
if self._connection is None:
|
|
223
|
+
try:
|
|
224
|
+
# Connect to the proxy
|
|
225
|
+
kwargs = {
|
|
226
|
+
"host": self._proxy_origin.host.decode("ascii"),
|
|
227
|
+
"port": self._proxy_origin.port,
|
|
228
|
+
"timeout": timeout,
|
|
229
|
+
}
|
|
230
|
+
async with Trace("connect_tcp", logger, request, kwargs) as trace:
|
|
231
|
+
stream = await self._network_backend.connect_tcp(**kwargs)
|
|
232
|
+
trace.return_value = stream
|
|
233
|
+
|
|
234
|
+
# Connect to the remote host using socks5
|
|
235
|
+
kwargs = {
|
|
236
|
+
"stream": stream,
|
|
237
|
+
"host": self._remote_origin.host.decode("ascii"),
|
|
238
|
+
"port": self._remote_origin.port,
|
|
239
|
+
"auth": self._proxy_auth,
|
|
240
|
+
}
|
|
241
|
+
async with Trace(
|
|
242
|
+
"setup_socks5_connection", logger, request, kwargs
|
|
243
|
+
) as trace:
|
|
244
|
+
await _init_socks5_connection(**kwargs)
|
|
245
|
+
trace.return_value = stream
|
|
246
|
+
|
|
247
|
+
# Upgrade the stream to SSL
|
|
248
|
+
if self._remote_origin.scheme == b"https":
|
|
249
|
+
ssl_context = (
|
|
250
|
+
default_ssl_context()
|
|
251
|
+
if self._ssl_context is None
|
|
252
|
+
else self._ssl_context
|
|
253
|
+
)
|
|
254
|
+
alpn_protocols = (
|
|
255
|
+
["http/1.1", "h2"] if self._http2 else ["http/1.1"]
|
|
256
|
+
)
|
|
257
|
+
ssl_context.set_alpn_protocols(alpn_protocols)
|
|
258
|
+
|
|
259
|
+
kwargs = {
|
|
260
|
+
"ssl_context": ssl_context,
|
|
261
|
+
"server_hostname": sni_hostname
|
|
262
|
+
or self._remote_origin.host.decode("ascii"),
|
|
263
|
+
"timeout": timeout,
|
|
264
|
+
}
|
|
265
|
+
async with Trace("start_tls", logger, request, kwargs) as trace:
|
|
266
|
+
stream = await stream.start_tls(**kwargs)
|
|
267
|
+
trace.return_value = stream
|
|
268
|
+
|
|
269
|
+
# Determine if we should be using HTTP/1.1 or HTTP/2
|
|
270
|
+
ssl_object = stream.get_extra_info("ssl_object")
|
|
271
|
+
http2_negotiated = (
|
|
272
|
+
ssl_object is not None
|
|
273
|
+
and ssl_object.selected_alpn_protocol() == "h2"
|
|
274
|
+
)
|
|
275
|
+
|
|
276
|
+
# Create the HTTP/1.1 or HTTP/2 connection
|
|
277
|
+
if http2_negotiated or (
|
|
278
|
+
self._http2 and not self._http1
|
|
279
|
+
): # pragma: nocover
|
|
280
|
+
from .http2 import AsyncHTTP2Connection
|
|
281
|
+
|
|
282
|
+
self._connection = AsyncHTTP2Connection(
|
|
283
|
+
origin=self._remote_origin,
|
|
284
|
+
stream=stream,
|
|
285
|
+
keepalive_expiry=self._keepalive_expiry,
|
|
286
|
+
)
|
|
287
|
+
else:
|
|
288
|
+
self._connection = AsyncHTTP11Connection(
|
|
289
|
+
origin=self._remote_origin,
|
|
290
|
+
stream=stream,
|
|
291
|
+
keepalive_expiry=self._keepalive_expiry,
|
|
292
|
+
)
|
|
293
|
+
except Exception as exc:
|
|
294
|
+
self._connect_failed = True
|
|
295
|
+
raise exc
|
|
296
|
+
elif not self._connection.is_available(): # pragma: nocover
|
|
297
|
+
raise ConnectionNotAvailable()
|
|
298
|
+
|
|
299
|
+
return await self._connection.handle_async_request(request)
|
|
300
|
+
|
|
301
|
+
def can_handle_request(self, origin: Origin) -> bool:
|
|
302
|
+
return origin == self._remote_origin
|
|
303
|
+
|
|
304
|
+
async def aclose(self) -> None:
|
|
305
|
+
if self._connection is not None:
|
|
306
|
+
await self._connection.aclose()
|
|
307
|
+
|
|
308
|
+
def is_available(self) -> bool:
|
|
309
|
+
if self._connection is None: # pragma: nocover
|
|
310
|
+
# If HTTP/2 support is enabled, and the resulting connection could
|
|
311
|
+
# end up as HTTP/2 then we should indicate the connection as being
|
|
312
|
+
# available to service multiple requests.
|
|
313
|
+
return (
|
|
314
|
+
self._http2
|
|
315
|
+
and (self._remote_origin.scheme == b"https" or not self._http1)
|
|
316
|
+
and not self._connect_failed
|
|
317
|
+
)
|
|
318
|
+
return self._connection.is_available()
|
|
319
|
+
|
|
320
|
+
def has_expired(self) -> bool:
|
|
321
|
+
if self._connection is None: # pragma: nocover
|
|
322
|
+
return self._connect_failed
|
|
323
|
+
return self._connection.has_expired()
|
|
324
|
+
|
|
325
|
+
def is_idle(self) -> bool:
|
|
326
|
+
if self._connection is None: # pragma: nocover
|
|
327
|
+
return self._connect_failed
|
|
328
|
+
return self._connection.is_idle()
|
|
329
|
+
|
|
330
|
+
def is_closed(self) -> bool:
|
|
331
|
+
if self._connection is None: # pragma: nocover
|
|
332
|
+
return self._connect_failed
|
|
333
|
+
return self._connection.is_closed()
|
|
334
|
+
|
|
335
|
+
def info(self) -> str:
|
|
336
|
+
if self._connection is None: # pragma: nocover
|
|
337
|
+
return "CONNECTION FAILED" if self._connect_failed else "CONNECTING"
|
|
338
|
+
return self._connection.info()
|
|
339
|
+
|
|
340
|
+
def __repr__(self) -> str:
|
|
341
|
+
return f"<{self.__class__.__name__} [{self.info()}]>"
|
|
File without changes
|
package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import ssl
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
import anyio
|
|
7
|
+
|
|
8
|
+
from .._exceptions import (
|
|
9
|
+
ConnectError,
|
|
10
|
+
ConnectTimeout,
|
|
11
|
+
ReadError,
|
|
12
|
+
ReadTimeout,
|
|
13
|
+
WriteError,
|
|
14
|
+
WriteTimeout,
|
|
15
|
+
map_exceptions,
|
|
16
|
+
)
|
|
17
|
+
from .._utils import is_socket_readable
|
|
18
|
+
from .base import SOCKET_OPTION, AsyncNetworkBackend, AsyncNetworkStream
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class AnyIOStream(AsyncNetworkStream):
|
|
22
|
+
def __init__(self, stream: anyio.abc.ByteStream) -> None:
|
|
23
|
+
self._stream = stream
|
|
24
|
+
|
|
25
|
+
async def read(self, max_bytes: int, timeout: float | None = None) -> bytes:
|
|
26
|
+
exc_map = {
|
|
27
|
+
TimeoutError: ReadTimeout,
|
|
28
|
+
anyio.BrokenResourceError: ReadError,
|
|
29
|
+
anyio.ClosedResourceError: ReadError,
|
|
30
|
+
anyio.EndOfStream: ReadError,
|
|
31
|
+
}
|
|
32
|
+
with map_exceptions(exc_map):
|
|
33
|
+
with anyio.fail_after(timeout):
|
|
34
|
+
try:
|
|
35
|
+
return await self._stream.receive(max_bytes=max_bytes)
|
|
36
|
+
except anyio.EndOfStream: # pragma: nocover
|
|
37
|
+
return b""
|
|
38
|
+
|
|
39
|
+
async def write(self, buffer: bytes, timeout: float | None = None) -> None:
|
|
40
|
+
if not buffer:
|
|
41
|
+
return
|
|
42
|
+
|
|
43
|
+
exc_map = {
|
|
44
|
+
TimeoutError: WriteTimeout,
|
|
45
|
+
anyio.BrokenResourceError: WriteError,
|
|
46
|
+
anyio.ClosedResourceError: WriteError,
|
|
47
|
+
}
|
|
48
|
+
with map_exceptions(exc_map):
|
|
49
|
+
with anyio.fail_after(timeout):
|
|
50
|
+
await self._stream.send(item=buffer)
|
|
51
|
+
|
|
52
|
+
async def aclose(self) -> None:
|
|
53
|
+
await self._stream.aclose()
|
|
54
|
+
|
|
55
|
+
async def start_tls(
|
|
56
|
+
self,
|
|
57
|
+
ssl_context: ssl.SSLContext,
|
|
58
|
+
server_hostname: str | None = None,
|
|
59
|
+
timeout: float | None = None,
|
|
60
|
+
) -> AsyncNetworkStream:
|
|
61
|
+
exc_map = {
|
|
62
|
+
TimeoutError: ConnectTimeout,
|
|
63
|
+
anyio.BrokenResourceError: ConnectError,
|
|
64
|
+
anyio.EndOfStream: ConnectError,
|
|
65
|
+
ssl.SSLError: ConnectError,
|
|
66
|
+
}
|
|
67
|
+
with map_exceptions(exc_map):
|
|
68
|
+
try:
|
|
69
|
+
with anyio.fail_after(timeout):
|
|
70
|
+
ssl_stream = await anyio.streams.tls.TLSStream.wrap(
|
|
71
|
+
self._stream,
|
|
72
|
+
ssl_context=ssl_context,
|
|
73
|
+
hostname=server_hostname,
|
|
74
|
+
standard_compatible=False,
|
|
75
|
+
server_side=False,
|
|
76
|
+
)
|
|
77
|
+
except Exception as exc: # pragma: nocover
|
|
78
|
+
await self.aclose()
|
|
79
|
+
raise exc
|
|
80
|
+
return AnyIOStream(ssl_stream)
|
|
81
|
+
|
|
82
|
+
def get_extra_info(self, info: str) -> typing.Any:
|
|
83
|
+
if info == "ssl_object":
|
|
84
|
+
return self._stream.extra(anyio.streams.tls.TLSAttribute.ssl_object, None)
|
|
85
|
+
if info == "client_addr":
|
|
86
|
+
return self._stream.extra(anyio.abc.SocketAttribute.local_address, None)
|
|
87
|
+
if info == "server_addr":
|
|
88
|
+
return self._stream.extra(anyio.abc.SocketAttribute.remote_address, None)
|
|
89
|
+
if info == "socket":
|
|
90
|
+
return self._stream.extra(anyio.abc.SocketAttribute.raw_socket, None)
|
|
91
|
+
if info == "is_readable":
|
|
92
|
+
sock = self._stream.extra(anyio.abc.SocketAttribute.raw_socket, None)
|
|
93
|
+
return is_socket_readable(sock)
|
|
94
|
+
return None
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class AnyIOBackend(AsyncNetworkBackend):
|
|
98
|
+
async def connect_tcp(
|
|
99
|
+
self,
|
|
100
|
+
host: str,
|
|
101
|
+
port: int,
|
|
102
|
+
timeout: float | None = None,
|
|
103
|
+
local_address: str | None = None,
|
|
104
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
105
|
+
) -> AsyncNetworkStream: # pragma: nocover
|
|
106
|
+
if socket_options is None:
|
|
107
|
+
socket_options = []
|
|
108
|
+
exc_map = {
|
|
109
|
+
TimeoutError: ConnectTimeout,
|
|
110
|
+
OSError: ConnectError,
|
|
111
|
+
anyio.BrokenResourceError: ConnectError,
|
|
112
|
+
}
|
|
113
|
+
with map_exceptions(exc_map):
|
|
114
|
+
with anyio.fail_after(timeout):
|
|
115
|
+
stream: anyio.abc.ByteStream = await anyio.connect_tcp(
|
|
116
|
+
remote_host=host,
|
|
117
|
+
remote_port=port,
|
|
118
|
+
local_host=local_address,
|
|
119
|
+
)
|
|
120
|
+
# By default TCP sockets opened in `asyncio` include TCP_NODELAY.
|
|
121
|
+
for option in socket_options:
|
|
122
|
+
stream._raw_socket.setsockopt(*option) # type: ignore[attr-defined] # pragma: no cover
|
|
123
|
+
return AnyIOStream(stream)
|
|
124
|
+
|
|
125
|
+
async def connect_unix_socket(
|
|
126
|
+
self,
|
|
127
|
+
path: str,
|
|
128
|
+
timeout: float | None = None,
|
|
129
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
130
|
+
) -> AsyncNetworkStream: # pragma: nocover
|
|
131
|
+
if socket_options is None:
|
|
132
|
+
socket_options = []
|
|
133
|
+
exc_map = {
|
|
134
|
+
TimeoutError: ConnectTimeout,
|
|
135
|
+
OSError: ConnectError,
|
|
136
|
+
anyio.BrokenResourceError: ConnectError,
|
|
137
|
+
}
|
|
138
|
+
with map_exceptions(exc_map):
|
|
139
|
+
with anyio.fail_after(timeout):
|
|
140
|
+
stream: anyio.abc.ByteStream = await anyio.connect_unix(path)
|
|
141
|
+
for option in socket_options:
|
|
142
|
+
stream._raw_socket.setsockopt(*option) # type: ignore[attr-defined] # pragma: no cover
|
|
143
|
+
return AnyIOStream(stream)
|
|
144
|
+
|
|
145
|
+
async def sleep(self, seconds: float) -> None:
|
|
146
|
+
await anyio.sleep(seconds) # pragma: nocover
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
from .._synchronization import current_async_library
|
|
6
|
+
from .base import SOCKET_OPTION, AsyncNetworkBackend, AsyncNetworkStream
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AutoBackend(AsyncNetworkBackend):
|
|
10
|
+
async def _init_backend(self) -> None:
|
|
11
|
+
if not (hasattr(self, "_backend")):
|
|
12
|
+
backend = current_async_library()
|
|
13
|
+
if backend == "trio":
|
|
14
|
+
from .trio import TrioBackend
|
|
15
|
+
|
|
16
|
+
self._backend: AsyncNetworkBackend = TrioBackend()
|
|
17
|
+
else:
|
|
18
|
+
from .anyio import AnyIOBackend
|
|
19
|
+
|
|
20
|
+
self._backend = AnyIOBackend()
|
|
21
|
+
|
|
22
|
+
async def connect_tcp(
|
|
23
|
+
self,
|
|
24
|
+
host: str,
|
|
25
|
+
port: int,
|
|
26
|
+
timeout: float | None = None,
|
|
27
|
+
local_address: str | None = None,
|
|
28
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
29
|
+
) -> AsyncNetworkStream:
|
|
30
|
+
await self._init_backend()
|
|
31
|
+
return await self._backend.connect_tcp(
|
|
32
|
+
host,
|
|
33
|
+
port,
|
|
34
|
+
timeout=timeout,
|
|
35
|
+
local_address=local_address,
|
|
36
|
+
socket_options=socket_options,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
async def connect_unix_socket(
|
|
40
|
+
self,
|
|
41
|
+
path: str,
|
|
42
|
+
timeout: float | None = None,
|
|
43
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
44
|
+
) -> AsyncNetworkStream: # pragma: nocover
|
|
45
|
+
await self._init_backend()
|
|
46
|
+
return await self._backend.connect_unix_socket(
|
|
47
|
+
path, timeout=timeout, socket_options=socket_options
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
async def sleep(self, seconds: float) -> None: # pragma: nocover
|
|
51
|
+
await self._init_backend()
|
|
52
|
+
return await self._backend.sleep(seconds)
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import ssl
|
|
4
|
+
import time
|
|
5
|
+
import typing
|
|
6
|
+
|
|
7
|
+
SOCKET_OPTION = typing.Union[
|
|
8
|
+
typing.Tuple[int, int, int],
|
|
9
|
+
typing.Tuple[int, int, typing.Union[bytes, bytearray]],
|
|
10
|
+
typing.Tuple[int, int, None, int],
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class NetworkStream:
|
|
15
|
+
def read(self, max_bytes: int, timeout: float | None = None) -> bytes:
|
|
16
|
+
raise NotImplementedError() # pragma: nocover
|
|
17
|
+
|
|
18
|
+
def write(self, buffer: bytes, timeout: float | None = None) -> None:
|
|
19
|
+
raise NotImplementedError() # pragma: nocover
|
|
20
|
+
|
|
21
|
+
def close(self) -> None:
|
|
22
|
+
raise NotImplementedError() # pragma: nocover
|
|
23
|
+
|
|
24
|
+
def start_tls(
|
|
25
|
+
self,
|
|
26
|
+
ssl_context: ssl.SSLContext,
|
|
27
|
+
server_hostname: str | None = None,
|
|
28
|
+
timeout: float | None = None,
|
|
29
|
+
) -> NetworkStream:
|
|
30
|
+
raise NotImplementedError() # pragma: nocover
|
|
31
|
+
|
|
32
|
+
def get_extra_info(self, info: str) -> typing.Any:
|
|
33
|
+
return None # pragma: nocover
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class NetworkBackend:
|
|
37
|
+
def connect_tcp(
|
|
38
|
+
self,
|
|
39
|
+
host: str,
|
|
40
|
+
port: int,
|
|
41
|
+
timeout: float | None = None,
|
|
42
|
+
local_address: str | None = None,
|
|
43
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
44
|
+
) -> NetworkStream:
|
|
45
|
+
raise NotImplementedError() # pragma: nocover
|
|
46
|
+
|
|
47
|
+
def connect_unix_socket(
|
|
48
|
+
self,
|
|
49
|
+
path: str,
|
|
50
|
+
timeout: float | None = None,
|
|
51
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
52
|
+
) -> NetworkStream:
|
|
53
|
+
raise NotImplementedError() # pragma: nocover
|
|
54
|
+
|
|
55
|
+
def sleep(self, seconds: float) -> None:
|
|
56
|
+
time.sleep(seconds) # pragma: nocover
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class AsyncNetworkStream:
|
|
60
|
+
async def read(self, max_bytes: int, timeout: float | None = None) -> bytes:
|
|
61
|
+
raise NotImplementedError() # pragma: nocover
|
|
62
|
+
|
|
63
|
+
async def write(self, buffer: bytes, timeout: float | None = None) -> None:
|
|
64
|
+
raise NotImplementedError() # pragma: nocover
|
|
65
|
+
|
|
66
|
+
async def aclose(self) -> None:
|
|
67
|
+
raise NotImplementedError() # pragma: nocover
|
|
68
|
+
|
|
69
|
+
async def start_tls(
|
|
70
|
+
self,
|
|
71
|
+
ssl_context: ssl.SSLContext,
|
|
72
|
+
server_hostname: str | None = None,
|
|
73
|
+
timeout: float | None = None,
|
|
74
|
+
) -> AsyncNetworkStream:
|
|
75
|
+
raise NotImplementedError() # pragma: nocover
|
|
76
|
+
|
|
77
|
+
def get_extra_info(self, info: str) -> typing.Any:
|
|
78
|
+
return None # pragma: nocover
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class AsyncNetworkBackend:
|
|
82
|
+
async def connect_tcp(
|
|
83
|
+
self,
|
|
84
|
+
host: str,
|
|
85
|
+
port: int,
|
|
86
|
+
timeout: float | None = None,
|
|
87
|
+
local_address: str | None = None,
|
|
88
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
89
|
+
) -> AsyncNetworkStream:
|
|
90
|
+
raise NotImplementedError() # pragma: nocover
|
|
91
|
+
|
|
92
|
+
async def connect_unix_socket(
|
|
93
|
+
self,
|
|
94
|
+
path: str,
|
|
95
|
+
timeout: float | None = None,
|
|
96
|
+
socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
|
|
97
|
+
) -> AsyncNetworkStream:
|
|
98
|
+
raise NotImplementedError() # pragma: nocover
|
|
99
|
+
|
|
100
|
+
async def sleep(self, seconds: float) -> None:
|
|
101
|
+
raise NotImplementedError() # pragma: nocover
|