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,399 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import errno
|
|
4
|
+
import socket
|
|
5
|
+
from abc import abstractmethod
|
|
6
|
+
from collections.abc import Callable, Collection, Mapping
|
|
7
|
+
from contextlib import AsyncExitStack
|
|
8
|
+
from io import IOBase
|
|
9
|
+
from ipaddress import IPv4Address, IPv6Address
|
|
10
|
+
from socket import AddressFamily
|
|
11
|
+
from typing import Any, TypeAlias, TypeVar
|
|
12
|
+
|
|
13
|
+
from .._core._eventloop import get_async_backend
|
|
14
|
+
from .._core._typedattr import (
|
|
15
|
+
TypedAttributeProvider,
|
|
16
|
+
TypedAttributeSet,
|
|
17
|
+
typed_attribute,
|
|
18
|
+
)
|
|
19
|
+
from ._streams import ByteStream, Listener, UnreliableObjectStream
|
|
20
|
+
from ._tasks import TaskGroup
|
|
21
|
+
|
|
22
|
+
IPAddressType: TypeAlias = str | IPv4Address | IPv6Address
|
|
23
|
+
IPSockAddrType: TypeAlias = tuple[str, int]
|
|
24
|
+
SockAddrType: TypeAlias = IPSockAddrType | str
|
|
25
|
+
UDPPacketType: TypeAlias = tuple[bytes, IPSockAddrType]
|
|
26
|
+
UNIXDatagramPacketType: TypeAlias = tuple[bytes, str]
|
|
27
|
+
T_Retval = TypeVar("T_Retval")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _validate_socket(
|
|
31
|
+
sock_or_fd: socket.socket | int,
|
|
32
|
+
sock_type: socket.SocketKind,
|
|
33
|
+
addr_family: socket.AddressFamily = socket.AF_UNSPEC,
|
|
34
|
+
*,
|
|
35
|
+
require_connected: bool = False,
|
|
36
|
+
require_bound: bool = False,
|
|
37
|
+
) -> socket.socket:
|
|
38
|
+
if isinstance(sock_or_fd, int):
|
|
39
|
+
try:
|
|
40
|
+
sock = socket.socket(fileno=sock_or_fd)
|
|
41
|
+
except OSError as exc:
|
|
42
|
+
if exc.errno == errno.ENOTSOCK:
|
|
43
|
+
raise ValueError(
|
|
44
|
+
"the file descriptor does not refer to a socket"
|
|
45
|
+
) from exc
|
|
46
|
+
elif require_connected:
|
|
47
|
+
raise ValueError("the socket must be connected") from exc
|
|
48
|
+
elif require_bound:
|
|
49
|
+
raise ValueError("the socket must be bound to a local address") from exc
|
|
50
|
+
else:
|
|
51
|
+
raise
|
|
52
|
+
elif isinstance(sock_or_fd, socket.socket):
|
|
53
|
+
sock = sock_or_fd
|
|
54
|
+
else:
|
|
55
|
+
raise TypeError(
|
|
56
|
+
f"expected an int or socket, got {type(sock_or_fd).__qualname__} instead"
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
try:
|
|
60
|
+
if require_connected:
|
|
61
|
+
try:
|
|
62
|
+
sock.getpeername()
|
|
63
|
+
except OSError as exc:
|
|
64
|
+
raise ValueError("the socket must be connected") from exc
|
|
65
|
+
|
|
66
|
+
if require_bound:
|
|
67
|
+
try:
|
|
68
|
+
if sock.family in (socket.AF_INET, socket.AF_INET6):
|
|
69
|
+
bound_addr = sock.getsockname()[1]
|
|
70
|
+
else:
|
|
71
|
+
bound_addr = sock.getsockname()
|
|
72
|
+
except OSError:
|
|
73
|
+
bound_addr = None
|
|
74
|
+
|
|
75
|
+
if not bound_addr:
|
|
76
|
+
raise ValueError("the socket must be bound to a local address")
|
|
77
|
+
|
|
78
|
+
if addr_family != socket.AF_UNSPEC and sock.family != addr_family:
|
|
79
|
+
raise ValueError(
|
|
80
|
+
f"address family mismatch: expected {addr_family.name}, got "
|
|
81
|
+
f"{sock.family.name}"
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
if sock.type != sock_type:
|
|
85
|
+
raise ValueError(
|
|
86
|
+
f"socket type mismatch: expected {sock_type.name}, got {sock.type.name}"
|
|
87
|
+
)
|
|
88
|
+
except BaseException:
|
|
89
|
+
# Avoid ResourceWarning from the locally constructed socket object
|
|
90
|
+
if isinstance(sock_or_fd, int):
|
|
91
|
+
sock.detach()
|
|
92
|
+
|
|
93
|
+
raise
|
|
94
|
+
|
|
95
|
+
sock.setblocking(False)
|
|
96
|
+
return sock
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class SocketAttribute(TypedAttributeSet):
|
|
100
|
+
"""
|
|
101
|
+
.. attribute:: family
|
|
102
|
+
:type: socket.AddressFamily
|
|
103
|
+
|
|
104
|
+
the address family of the underlying socket
|
|
105
|
+
|
|
106
|
+
.. attribute:: local_address
|
|
107
|
+
:type: tuple[str, int] | str
|
|
108
|
+
|
|
109
|
+
the local address the underlying socket is connected to
|
|
110
|
+
|
|
111
|
+
.. attribute:: local_port
|
|
112
|
+
:type: int
|
|
113
|
+
|
|
114
|
+
for IP based sockets, the local port the underlying socket is bound to
|
|
115
|
+
|
|
116
|
+
.. attribute:: raw_socket
|
|
117
|
+
:type: socket.socket
|
|
118
|
+
|
|
119
|
+
the underlying stdlib socket object
|
|
120
|
+
|
|
121
|
+
.. attribute:: remote_address
|
|
122
|
+
:type: tuple[str, int] | str
|
|
123
|
+
|
|
124
|
+
the remote address the underlying socket is connected to
|
|
125
|
+
|
|
126
|
+
.. attribute:: remote_port
|
|
127
|
+
:type: int
|
|
128
|
+
|
|
129
|
+
for IP based sockets, the remote port the underlying socket is connected to
|
|
130
|
+
"""
|
|
131
|
+
|
|
132
|
+
family: AddressFamily = typed_attribute()
|
|
133
|
+
local_address: SockAddrType = typed_attribute()
|
|
134
|
+
local_port: int = typed_attribute()
|
|
135
|
+
raw_socket: socket.socket = typed_attribute()
|
|
136
|
+
remote_address: SockAddrType = typed_attribute()
|
|
137
|
+
remote_port: int = typed_attribute()
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class _SocketProvider(TypedAttributeProvider):
|
|
141
|
+
@property
|
|
142
|
+
def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]:
|
|
143
|
+
from .._core._sockets import convert_ipv6_sockaddr as convert
|
|
144
|
+
|
|
145
|
+
attributes: dict[Any, Callable[[], Any]] = {
|
|
146
|
+
SocketAttribute.family: lambda: self._raw_socket.family,
|
|
147
|
+
SocketAttribute.local_address: lambda: convert(
|
|
148
|
+
self._raw_socket.getsockname()
|
|
149
|
+
),
|
|
150
|
+
SocketAttribute.raw_socket: lambda: self._raw_socket,
|
|
151
|
+
}
|
|
152
|
+
try:
|
|
153
|
+
peername: tuple[str, int] | None = convert(self._raw_socket.getpeername())
|
|
154
|
+
except OSError:
|
|
155
|
+
peername = None
|
|
156
|
+
|
|
157
|
+
# Provide the remote address for connected sockets
|
|
158
|
+
if peername is not None:
|
|
159
|
+
attributes[SocketAttribute.remote_address] = lambda: peername
|
|
160
|
+
|
|
161
|
+
# Provide local and remote ports for IP based sockets
|
|
162
|
+
if self._raw_socket.family in (AddressFamily.AF_INET, AddressFamily.AF_INET6):
|
|
163
|
+
attributes[SocketAttribute.local_port] = lambda: (
|
|
164
|
+
self._raw_socket.getsockname()[1]
|
|
165
|
+
)
|
|
166
|
+
if peername is not None:
|
|
167
|
+
remote_port = peername[1]
|
|
168
|
+
attributes[SocketAttribute.remote_port] = lambda: remote_port
|
|
169
|
+
|
|
170
|
+
return attributes
|
|
171
|
+
|
|
172
|
+
@property
|
|
173
|
+
@abstractmethod
|
|
174
|
+
def _raw_socket(self) -> socket.socket:
|
|
175
|
+
pass
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
class SocketStream(ByteStream, _SocketProvider):
|
|
179
|
+
"""
|
|
180
|
+
Transports bytes over a socket.
|
|
181
|
+
|
|
182
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
@classmethod
|
|
186
|
+
async def from_socket(cls, sock_or_fd: socket.socket | int) -> SocketStream:
|
|
187
|
+
"""
|
|
188
|
+
Wrap an existing socket object or file descriptor as a socket stream.
|
|
189
|
+
|
|
190
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
191
|
+
The existing socket must already be connected.
|
|
192
|
+
|
|
193
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
194
|
+
:return: a socket stream
|
|
195
|
+
|
|
196
|
+
"""
|
|
197
|
+
sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_connected=True)
|
|
198
|
+
return await get_async_backend().wrap_stream_socket(sock)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
class UNIXSocketStream(SocketStream):
|
|
202
|
+
@classmethod
|
|
203
|
+
async def from_socket(cls, sock_or_fd: socket.socket | int) -> UNIXSocketStream:
|
|
204
|
+
"""
|
|
205
|
+
Wrap an existing socket object or file descriptor as a UNIX socket stream.
|
|
206
|
+
|
|
207
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
208
|
+
The existing socket must already be connected.
|
|
209
|
+
|
|
210
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
211
|
+
:return: a UNIX socket stream
|
|
212
|
+
|
|
213
|
+
"""
|
|
214
|
+
sock = _validate_socket(
|
|
215
|
+
sock_or_fd, socket.SOCK_STREAM, socket.AF_UNIX, require_connected=True
|
|
216
|
+
)
|
|
217
|
+
return await get_async_backend().wrap_unix_stream_socket(sock)
|
|
218
|
+
|
|
219
|
+
@abstractmethod
|
|
220
|
+
async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None:
|
|
221
|
+
"""
|
|
222
|
+
Send file descriptors along with a message to the peer.
|
|
223
|
+
|
|
224
|
+
:param message: a non-empty bytestring
|
|
225
|
+
:param fds: a collection of files (either numeric file descriptors or open file
|
|
226
|
+
or socket objects)
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
@abstractmethod
|
|
230
|
+
async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]:
|
|
231
|
+
"""
|
|
232
|
+
Receive file descriptors along with a message from the peer.
|
|
233
|
+
|
|
234
|
+
:param msglen: length of the message to expect from the peer
|
|
235
|
+
:param maxfds: maximum number of file descriptors to expect from the peer
|
|
236
|
+
:return: a tuple of (message, file descriptors)
|
|
237
|
+
"""
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
class SocketListener(Listener[SocketStream], _SocketProvider):
|
|
241
|
+
"""
|
|
242
|
+
Listens to incoming socket connections.
|
|
243
|
+
|
|
244
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
245
|
+
"""
|
|
246
|
+
|
|
247
|
+
@classmethod
|
|
248
|
+
async def from_socket(
|
|
249
|
+
cls,
|
|
250
|
+
sock_or_fd: socket.socket | int,
|
|
251
|
+
) -> SocketListener:
|
|
252
|
+
"""
|
|
253
|
+
Wrap an existing socket object or file descriptor as a socket listener.
|
|
254
|
+
|
|
255
|
+
The newly created listener takes ownership of the socket being passed in.
|
|
256
|
+
|
|
257
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
258
|
+
:return: a socket listener
|
|
259
|
+
|
|
260
|
+
"""
|
|
261
|
+
sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_bound=True)
|
|
262
|
+
return await get_async_backend().wrap_listener_socket(sock)
|
|
263
|
+
|
|
264
|
+
@abstractmethod
|
|
265
|
+
async def accept(self) -> SocketStream:
|
|
266
|
+
"""Accept an incoming connection."""
|
|
267
|
+
|
|
268
|
+
async def serve(
|
|
269
|
+
self,
|
|
270
|
+
handler: Callable[[SocketStream], Any],
|
|
271
|
+
task_group: TaskGroup | None = None,
|
|
272
|
+
) -> None:
|
|
273
|
+
from .. import create_task_group
|
|
274
|
+
|
|
275
|
+
async with AsyncExitStack() as stack:
|
|
276
|
+
if task_group is None:
|
|
277
|
+
task_group = await stack.enter_async_context(create_task_group())
|
|
278
|
+
|
|
279
|
+
while True:
|
|
280
|
+
stream = await self.accept()
|
|
281
|
+
task_group.start_soon(handler, stream)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
class UDPSocket(UnreliableObjectStream[UDPPacketType], _SocketProvider):
|
|
285
|
+
"""
|
|
286
|
+
Represents an unconnected UDP socket.
|
|
287
|
+
|
|
288
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
289
|
+
"""
|
|
290
|
+
|
|
291
|
+
@classmethod
|
|
292
|
+
async def from_socket(cls, sock_or_fd: socket.socket | int) -> UDPSocket:
|
|
293
|
+
"""
|
|
294
|
+
Wrap an existing socket object or file descriptor as a UDP socket.
|
|
295
|
+
|
|
296
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
297
|
+
The existing socket must be bound to a local address.
|
|
298
|
+
|
|
299
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
300
|
+
:return: a UDP socket
|
|
301
|
+
|
|
302
|
+
"""
|
|
303
|
+
sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, require_bound=True)
|
|
304
|
+
return await get_async_backend().wrap_udp_socket(sock)
|
|
305
|
+
|
|
306
|
+
async def sendto(self, data: bytes, host: str, port: int) -> None:
|
|
307
|
+
"""
|
|
308
|
+
Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, (host, port))).
|
|
309
|
+
|
|
310
|
+
"""
|
|
311
|
+
return await self.send((data, (host, port)))
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class ConnectedUDPSocket(UnreliableObjectStream[bytes], _SocketProvider):
|
|
315
|
+
"""
|
|
316
|
+
Represents an connected UDP socket.
|
|
317
|
+
|
|
318
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
319
|
+
"""
|
|
320
|
+
|
|
321
|
+
@classmethod
|
|
322
|
+
async def from_socket(cls, sock_or_fd: socket.socket | int) -> ConnectedUDPSocket:
|
|
323
|
+
"""
|
|
324
|
+
Wrap an existing socket object or file descriptor as a connected UDP socket.
|
|
325
|
+
|
|
326
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
327
|
+
The existing socket must already be connected.
|
|
328
|
+
|
|
329
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
330
|
+
:return: a connected UDP socket
|
|
331
|
+
|
|
332
|
+
"""
|
|
333
|
+
sock = _validate_socket(
|
|
334
|
+
sock_or_fd,
|
|
335
|
+
socket.SOCK_DGRAM,
|
|
336
|
+
require_connected=True,
|
|
337
|
+
)
|
|
338
|
+
return await get_async_backend().wrap_connected_udp_socket(sock)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
class UNIXDatagramSocket(
|
|
342
|
+
UnreliableObjectStream[UNIXDatagramPacketType], _SocketProvider
|
|
343
|
+
):
|
|
344
|
+
"""
|
|
345
|
+
Represents an unconnected Unix datagram socket.
|
|
346
|
+
|
|
347
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
348
|
+
"""
|
|
349
|
+
|
|
350
|
+
@classmethod
|
|
351
|
+
async def from_socket(
|
|
352
|
+
cls,
|
|
353
|
+
sock_or_fd: socket.socket | int,
|
|
354
|
+
) -> UNIXDatagramSocket:
|
|
355
|
+
"""
|
|
356
|
+
Wrap an existing socket object or file descriptor as a UNIX datagram
|
|
357
|
+
socket.
|
|
358
|
+
|
|
359
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
360
|
+
|
|
361
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
362
|
+
:return: a UNIX datagram socket
|
|
363
|
+
|
|
364
|
+
"""
|
|
365
|
+
sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX)
|
|
366
|
+
return await get_async_backend().wrap_unix_datagram_socket(sock)
|
|
367
|
+
|
|
368
|
+
async def sendto(self, data: bytes, path: str) -> None:
|
|
369
|
+
"""Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, path))."""
|
|
370
|
+
return await self.send((data, path))
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
class ConnectedUNIXDatagramSocket(UnreliableObjectStream[bytes], _SocketProvider):
|
|
374
|
+
"""
|
|
375
|
+
Represents a connected Unix datagram socket.
|
|
376
|
+
|
|
377
|
+
Supports all relevant extra attributes from :class:`~SocketAttribute`.
|
|
378
|
+
"""
|
|
379
|
+
|
|
380
|
+
@classmethod
|
|
381
|
+
async def from_socket(
|
|
382
|
+
cls,
|
|
383
|
+
sock_or_fd: socket.socket | int,
|
|
384
|
+
) -> ConnectedUNIXDatagramSocket:
|
|
385
|
+
"""
|
|
386
|
+
Wrap an existing socket object or file descriptor as a connected UNIX datagram
|
|
387
|
+
socket.
|
|
388
|
+
|
|
389
|
+
The newly created socket wrapper takes ownership of the socket being passed in.
|
|
390
|
+
The existing socket must already be connected.
|
|
391
|
+
|
|
392
|
+
:param sock_or_fd: a socket object or file descriptor
|
|
393
|
+
:return: a connected UNIX datagram socket
|
|
394
|
+
|
|
395
|
+
"""
|
|
396
|
+
sock = _validate_socket(
|
|
397
|
+
sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX, require_connected=True
|
|
398
|
+
)
|
|
399
|
+
return await get_async_backend().wrap_connected_unix_datagram_socket(sock)
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from abc import ABCMeta, abstractmethod
|
|
4
|
+
from collections.abc import Callable
|
|
5
|
+
from typing import Any, Generic, TypeAlias, TypeVar
|
|
6
|
+
|
|
7
|
+
from .._core._exceptions import EndOfStream
|
|
8
|
+
from .._core._typedattr import TypedAttributeProvider
|
|
9
|
+
from ._resources import AsyncResource
|
|
10
|
+
from ._tasks import TaskGroup
|
|
11
|
+
|
|
12
|
+
T_Item = TypeVar("T_Item")
|
|
13
|
+
T_co = TypeVar("T_co", covariant=True)
|
|
14
|
+
T_contra = TypeVar("T_contra", contravariant=True)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class UnreliableObjectReceiveStream(
|
|
18
|
+
Generic[T_co], AsyncResource, TypedAttributeProvider
|
|
19
|
+
):
|
|
20
|
+
"""
|
|
21
|
+
An interface for receiving objects.
|
|
22
|
+
|
|
23
|
+
This interface makes no guarantees that the received messages arrive in the order in
|
|
24
|
+
which they were sent, or that no messages are missed.
|
|
25
|
+
|
|
26
|
+
Asynchronously iterating over objects of this type will yield objects matching the
|
|
27
|
+
given type parameter.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
def __aiter__(self) -> UnreliableObjectReceiveStream[T_co]:
|
|
31
|
+
return self
|
|
32
|
+
|
|
33
|
+
async def __anext__(self) -> T_co:
|
|
34
|
+
try:
|
|
35
|
+
return await self.receive()
|
|
36
|
+
except EndOfStream:
|
|
37
|
+
raise StopAsyncIteration from None
|
|
38
|
+
|
|
39
|
+
@abstractmethod
|
|
40
|
+
async def receive(self) -> T_co:
|
|
41
|
+
"""
|
|
42
|
+
Receive the next item.
|
|
43
|
+
|
|
44
|
+
:raises ~anyio.ClosedResourceError: if the receive stream has been explicitly
|
|
45
|
+
closed
|
|
46
|
+
:raises ~anyio.EndOfStream: if this stream has been closed from the other end
|
|
47
|
+
:raises ~anyio.BrokenResourceError: if this stream has been rendered unusable
|
|
48
|
+
due to external causes
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class UnreliableObjectSendStream(
|
|
53
|
+
Generic[T_contra], AsyncResource, TypedAttributeProvider
|
|
54
|
+
):
|
|
55
|
+
"""
|
|
56
|
+
An interface for sending objects.
|
|
57
|
+
|
|
58
|
+
This interface makes no guarantees that the messages sent will reach the
|
|
59
|
+
recipient(s) in the same order in which they were sent, or at all.
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
@abstractmethod
|
|
63
|
+
async def send(self, item: T_contra) -> None:
|
|
64
|
+
"""
|
|
65
|
+
Send an item to the peer(s).
|
|
66
|
+
|
|
67
|
+
:param item: the item to send
|
|
68
|
+
:raises ~anyio.ClosedResourceError: if the send stream has been explicitly
|
|
69
|
+
closed
|
|
70
|
+
:raises ~anyio.BrokenResourceError: if this stream has been rendered unusable
|
|
71
|
+
due to external causes
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class UnreliableObjectStream(
|
|
76
|
+
UnreliableObjectReceiveStream[T_Item], UnreliableObjectSendStream[T_Item]
|
|
77
|
+
):
|
|
78
|
+
"""
|
|
79
|
+
A bidirectional message stream which does not guarantee the order or reliability of
|
|
80
|
+
message delivery.
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class ObjectReceiveStream(UnreliableObjectReceiveStream[T_co]):
|
|
85
|
+
"""
|
|
86
|
+
A receive message stream which guarantees that messages are received in the same
|
|
87
|
+
order in which they were sent, and that no messages are missed.
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class ObjectSendStream(UnreliableObjectSendStream[T_contra]):
|
|
92
|
+
"""
|
|
93
|
+
A send message stream which guarantees that messages are delivered in the same order
|
|
94
|
+
in which they were sent, without missing any messages in the middle.
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class ObjectStream(
|
|
99
|
+
ObjectReceiveStream[T_Item],
|
|
100
|
+
ObjectSendStream[T_Item],
|
|
101
|
+
UnreliableObjectStream[T_Item],
|
|
102
|
+
):
|
|
103
|
+
"""
|
|
104
|
+
A bidirectional message stream which guarantees the order and reliability of message
|
|
105
|
+
delivery.
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
@abstractmethod
|
|
109
|
+
async def send_eof(self) -> None:
|
|
110
|
+
"""
|
|
111
|
+
Send an end-of-file indication to the peer.
|
|
112
|
+
|
|
113
|
+
You should not try to send any further data to this stream after calling this
|
|
114
|
+
method. This method is idempotent (does nothing on successive calls).
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class ByteReceiveStream(AsyncResource, TypedAttributeProvider):
|
|
119
|
+
"""
|
|
120
|
+
An interface for receiving bytes from a single peer.
|
|
121
|
+
|
|
122
|
+
Iterating this byte stream will yield a byte string of arbitrary length, but no more
|
|
123
|
+
than 65536 bytes.
|
|
124
|
+
"""
|
|
125
|
+
|
|
126
|
+
def __aiter__(self) -> ByteReceiveStream:
|
|
127
|
+
return self
|
|
128
|
+
|
|
129
|
+
async def __anext__(self) -> bytes:
|
|
130
|
+
try:
|
|
131
|
+
return await self.receive()
|
|
132
|
+
except EndOfStream:
|
|
133
|
+
raise StopAsyncIteration from None
|
|
134
|
+
|
|
135
|
+
@abstractmethod
|
|
136
|
+
async def receive(self, max_bytes: int = 65536) -> bytes:
|
|
137
|
+
"""
|
|
138
|
+
Receive at most ``max_bytes`` bytes from the peer.
|
|
139
|
+
|
|
140
|
+
.. note:: Implementers of this interface should not return an empty
|
|
141
|
+
:class:`bytes` object, and users should ignore them.
|
|
142
|
+
|
|
143
|
+
:param max_bytes: maximum number of bytes to receive
|
|
144
|
+
:return: the received bytes
|
|
145
|
+
:raises ~anyio.EndOfStream: if this stream has been closed from the other end
|
|
146
|
+
"""
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class ByteSendStream(AsyncResource, TypedAttributeProvider):
|
|
150
|
+
"""An interface for sending bytes to a single peer."""
|
|
151
|
+
|
|
152
|
+
@abstractmethod
|
|
153
|
+
async def send(self, item: bytes) -> None:
|
|
154
|
+
"""
|
|
155
|
+
Send the given bytes to the peer.
|
|
156
|
+
|
|
157
|
+
:param item: the bytes to send
|
|
158
|
+
"""
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class ByteStream(ByteReceiveStream, ByteSendStream):
|
|
162
|
+
"""A bidirectional byte stream."""
|
|
163
|
+
|
|
164
|
+
@abstractmethod
|
|
165
|
+
async def send_eof(self) -> None:
|
|
166
|
+
"""
|
|
167
|
+
Send an end-of-file indication to the peer.
|
|
168
|
+
|
|
169
|
+
You should not try to send any further data to this stream after calling this
|
|
170
|
+
method. This method is idempotent (does nothing on successive calls).
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
#: Type alias for all unreliable bytes-oriented receive streams.
|
|
175
|
+
AnyUnreliableByteReceiveStream: TypeAlias = (
|
|
176
|
+
UnreliableObjectReceiveStream[bytes] | ByteReceiveStream
|
|
177
|
+
)
|
|
178
|
+
#: Type alias for all unreliable bytes-oriented send streams.
|
|
179
|
+
AnyUnreliableByteSendStream: TypeAlias = (
|
|
180
|
+
UnreliableObjectSendStream[bytes] | ByteSendStream
|
|
181
|
+
)
|
|
182
|
+
#: Type alias for all unreliable bytes-oriented streams.
|
|
183
|
+
AnyUnreliableByteStream: TypeAlias = UnreliableObjectStream[bytes] | ByteStream
|
|
184
|
+
#: Type alias for all bytes-oriented receive streams.
|
|
185
|
+
AnyByteReceiveStream: TypeAlias = ObjectReceiveStream[bytes] | ByteReceiveStream
|
|
186
|
+
#: Type alias for all bytes-oriented send streams.
|
|
187
|
+
AnyByteSendStream: TypeAlias = ObjectSendStream[bytes] | ByteSendStream
|
|
188
|
+
#: Type alias for all bytes-oriented streams.
|
|
189
|
+
AnyByteStream: TypeAlias = ObjectStream[bytes] | ByteStream
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
class Listener(Generic[T_co], AsyncResource, TypedAttributeProvider):
|
|
193
|
+
"""An interface for objects that let you accept incoming connections."""
|
|
194
|
+
|
|
195
|
+
@abstractmethod
|
|
196
|
+
async def serve(
|
|
197
|
+
self, handler: Callable[[T_co], Any], task_group: TaskGroup | None = None
|
|
198
|
+
) -> None:
|
|
199
|
+
"""
|
|
200
|
+
Accept incoming connections as they come in and start tasks to handle them.
|
|
201
|
+
|
|
202
|
+
:param handler: a callable that will be used to handle each accepted connection
|
|
203
|
+
:param task_group: the task group that will be used to start tasks for handling
|
|
204
|
+
each accepted connection (if omitted, an ad-hoc task group will be created)
|
|
205
|
+
"""
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
class ObjectStreamConnectable(Generic[T_co], metaclass=ABCMeta):
|
|
209
|
+
@abstractmethod
|
|
210
|
+
async def connect(self) -> ObjectStream[T_co]:
|
|
211
|
+
"""
|
|
212
|
+
Connect to the remote endpoint.
|
|
213
|
+
|
|
214
|
+
:return: an object stream connected to the remote end
|
|
215
|
+
:raises ConnectionFailed: if the connection fails
|
|
216
|
+
"""
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
class ByteStreamConnectable(metaclass=ABCMeta):
|
|
220
|
+
@abstractmethod
|
|
221
|
+
async def connect(self) -> ByteStream:
|
|
222
|
+
"""
|
|
223
|
+
Connect to the remote endpoint.
|
|
224
|
+
|
|
225
|
+
:return: a bytestream connected to the remote end
|
|
226
|
+
:raises ConnectionFailed: if the connection fails
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
#: Type alias for all connectables returning bytestreams or bytes-oriented object streams
|
|
231
|
+
AnyByteStreamConnectable: TypeAlias = (
|
|
232
|
+
ObjectStreamConnectable[bytes] | ByteStreamConnectable
|
|
233
|
+
)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from abc import abstractmethod
|
|
4
|
+
from signal import Signals
|
|
5
|
+
|
|
6
|
+
from ._resources import AsyncResource
|
|
7
|
+
from ._streams import ByteReceiveStream, ByteSendStream
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class Process(AsyncResource):
|
|
11
|
+
"""An asynchronous version of :class:`subprocess.Popen`."""
|
|
12
|
+
|
|
13
|
+
@abstractmethod
|
|
14
|
+
async def wait(self) -> int:
|
|
15
|
+
"""
|
|
16
|
+
Wait until the process exits.
|
|
17
|
+
|
|
18
|
+
:return: the exit code of the process
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
@abstractmethod
|
|
22
|
+
def terminate(self) -> None:
|
|
23
|
+
"""
|
|
24
|
+
Terminates the process, gracefully if possible.
|
|
25
|
+
|
|
26
|
+
On Windows, this calls ``TerminateProcess()``.
|
|
27
|
+
On POSIX systems, this sends ``SIGTERM`` to the process.
|
|
28
|
+
|
|
29
|
+
.. seealso:: :meth:`subprocess.Popen.terminate`
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
@abstractmethod
|
|
33
|
+
def kill(self) -> None:
|
|
34
|
+
"""
|
|
35
|
+
Kills the process.
|
|
36
|
+
|
|
37
|
+
On Windows, this calls ``TerminateProcess()``.
|
|
38
|
+
On POSIX systems, this sends ``SIGKILL`` to the process.
|
|
39
|
+
|
|
40
|
+
.. seealso:: :meth:`subprocess.Popen.kill`
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
@abstractmethod
|
|
44
|
+
def send_signal(self, signal: Signals) -> None:
|
|
45
|
+
"""
|
|
46
|
+
Send a signal to the subprocess.
|
|
47
|
+
|
|
48
|
+
.. seealso:: :meth:`subprocess.Popen.send_signal`
|
|
49
|
+
|
|
50
|
+
:param signal: the signal number (e.g. :data:`signal.SIGHUP`)
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@abstractmethod
|
|
55
|
+
def pid(self) -> int:
|
|
56
|
+
"""The process ID of the process."""
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@abstractmethod
|
|
60
|
+
def returncode(self) -> int | None:
|
|
61
|
+
"""
|
|
62
|
+
The return code of the process. If the process has not yet terminated, this will
|
|
63
|
+
be ``None``.
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@abstractmethod
|
|
68
|
+
def stdin(self) -> ByteSendStream | None:
|
|
69
|
+
"""The stream for the standard input of the process."""
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@abstractmethod
|
|
73
|
+
def stdout(self) -> ByteReceiveStream | None:
|
|
74
|
+
"""The stream for the standard output of the process."""
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@abstractmethod
|
|
78
|
+
def stderr(self) -> ByteReceiveStream | None:
|
|
79
|
+
"""The stream for the standard error output of the process."""
|