paytechuz 0.2.10__tar.gz → 0.2.12__tar.gz
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.
Potentially problematic release.
This version of paytechuz might be problematic. Click here for more details.
- {paytechuz-0.2.10/src/paytechuz.egg-info → paytechuz-0.2.12}/PKG-INFO +1 -1
- paytechuz-0.2.12/examples/paytechuz_fastapi/app/database.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/app/models.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/app/typing.py +55 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/app/webhook_handlers.py +28 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/main.py +103 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/payments.db +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/run.sh +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/Activate.ps1 +247 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/activate +71 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/activate.csh +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/activate.fish +69 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/fastapi +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/normalizer +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/pip +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/pip3 +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/pip3.12 +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/python +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/python3 +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/python3.12 +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/bin/uvicorn +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types/__init__.py +432 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types/test_cases.py +151 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/METADATA +295 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/RECORD +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/__init__.py +85 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_backends/_asyncio.py +2816 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_backends/_trio.py +1334 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_eventloop.py +166 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_exceptions.py +126 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_fileio.py +742 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_resources.py +18 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_signals.py +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_sockets.py +792 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_streams.py +52 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_subprocesses.py +202 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_synchronization.py +732 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_tasks.py +158 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_tempfile.py +616 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_testing.py +78 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core/_typedattr.py +81 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/__init__.py +55 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_eventloop.py +376 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_resources.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_sockets.py +194 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_streams.py +203 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_subprocesses.py +79 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_tasks.py +101 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/abc/_testing.py +65 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/from_thread.py +527 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/lowlevel.py +161 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/pytest_plugin.py +272 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/buffered.py +119 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/file.py +148 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/memory.py +317 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/stapled.py +141 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/text.py +147 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams/tls.py +352 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/to_interpreter.py +218 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/to_process.py +258 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/to_thread.py +69 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/LICENSE +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/METADATA +105 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/RECORD +88 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/entry_points.txt +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio-4.9.0.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi/__init__.py +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi/__main__.py +12 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi/cacert.pem +4635 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi/core.py +83 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/METADATA +77 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/RECORD +14 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/licenses/LICENSE +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi-2025.6.15.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/__init__.py +48 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/__main__.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/api.py +668 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/cd.py +395 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/cli/__init__.py +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/cli/__main__.py +381 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/constant.py +2015 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/legacy.py +64 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/md.py +635 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/models.py +360 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/utils.py +414 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer/version.py +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/METADATA +731 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/RECORD +35 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/WHEEL +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/entry_points.txt +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/charset_normalizer-3.4.2.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/__init__.py +123 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/_compat.py +622 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/_termui_impl.py +839 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/_textwrap.py +51 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/_winconsole.py +296 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/core.py +3135 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/decorators.py +551 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/exceptions.py +308 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/formatting.py +301 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/globals.py +67 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/parser.py +532 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/shell_completion.py +644 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/termui.py +877 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/testing.py +565 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/types.py +1165 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click/utils.py +627 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click-8.2.1.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click-8.2.1.dist-info/METADATA +82 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click-8.2.1.dist-info/RECORD +38 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click-8.2.1.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/click-8.2.1.dist-info/licenses/LICENSE.txt +28 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/__init__.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/__main__.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/_compat.py +664 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/applications.py +4588 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/background.py +59 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/cli.py +13 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/concurrency.py +39 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/datastructures.py +204 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/dependencies/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/dependencies/models.py +37 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/dependencies/utils.py +1001 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/encoders.py +343 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/exception_handlers.py +34 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/exceptions.py +176 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/logger.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/__init__.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/cors.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/gzip.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/httpsredirect.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/trustedhost.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/middleware/wsgi.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/openapi/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/openapi/constants.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/openapi/docs.py +344 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/openapi/models.py +445 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/openapi/utils.py +569 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/param_functions.py +2360 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/params.py +786 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/requests.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/responses.py +48 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/routing.py +4439 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/__init__.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/api_key.py +288 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/base.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/http.py +423 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/oauth2.py +653 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/open_id_connect_url.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/security/utils.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/staticfiles.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/templating.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/testclient.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/types.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/utils.py +220 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi/websockets.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/METADATA +563 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/RECORD +97 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/entry_points.txt +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/fastapi-0.115.14.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/__init__.py +62 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_abnf.py +132 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_connection.py +659 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_events.py +369 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_headers.py +282 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_readers.py +250 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_receivebuffer.py +153 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_state.py +365 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_util.py +135 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_version.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/_writers.py +145 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11/py.typed +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/__init__.py +45 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/codec.py +122 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/compat.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/core.py +437 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/idnadata.py +4243 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/intranges.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/package_data.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna/uts46data.py +8681 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna-3.10.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna-3.10.dist-info/LICENSE.md +31 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna-3.10.dist-info/METADATA +250 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna-3.10.dist-info/RECORD +22 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/idna-3.10.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz/core/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz/gateways/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz/integrations/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info/RECORD +70 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/__init__.py +13 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/__main__.py +24 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/build_env.py +319 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cache.py +290 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +176 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +231 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +170 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/main.py +80 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +134 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py +294 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +94 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +329 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +159 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +132 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py +225 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/check.py +67 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py +130 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +280 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py +201 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +109 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py +59 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/help.py +41 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/index.py +139 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/install.py +783 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/list.py +375 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/search.py +172 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/show.py +217 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +114 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +182 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/configuration.py +383 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py +53 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +29 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +158 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/exceptions.py +809 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/index/collector.py +494 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1020 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/index/sources.py +284 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +456 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +172 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/locations/base.py +81 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +128 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py +688 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +221 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +224 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +56 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/link.py +590 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +127 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +53 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py +121 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py +118 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/auth.py +566 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/cache.py +106 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/download.py +187 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/session.py +522 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +62 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/check.py +181 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +258 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +741 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +732 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/pyproject.py +185 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py +90 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py +560 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py +574 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py +934 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py +82 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +244 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py +79 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +11 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +124 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +80 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py +36 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +149 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +101 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +147 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py +347 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py +772 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +245 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +296 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +337 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +134 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py +527 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +324 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +354 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/__init__.py +116 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +28 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +74 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +499 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +154 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +114 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +1329 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +508 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +1295 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +384 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +162 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +750 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +44 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +118 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +13 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py +395 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4245 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +54 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8598 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +168 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +951 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +354 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +325 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +804 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +91 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1009 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +627 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +174 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +563 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +627 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +292 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +130 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +275 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +23 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +330 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +18 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +353 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +719 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +24 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +78 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1037 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1096 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +273 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +270 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +159 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +662 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py +311 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +240 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py +480 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2633 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py +225 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +190 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +96 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +89 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py +375 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +112 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +289 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +312 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +995 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1699 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +375 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +738 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +137 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py +796 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +958 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1000 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1357 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +753 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +249 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +11 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +691 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +107 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +316 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +3641 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip/py.typed +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/AUTHORS.txt +799 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/LICENSE.txt +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/METADATA +90 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/RECORD +853 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/entry_points.txt +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pip-24.3.1.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/__init__.py +445 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_config.py +373 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_core_metadata.py +97 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_core_utils.py +182 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_dataclasses.py +238 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_decorators.py +838 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_decorators_v1.py +174 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_discriminated_union.py +479 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_docs_extraction.py +108 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py +515 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_forward_ref.py +23 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_generate_schema.py +2904 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_generics.py +547 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_git.py +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_import_utils.py +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_internal_dataclass.py +7 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_known_annotated_metadata.py +393 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_mock_val_ser.py +228 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_model_construction.py +792 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_namespace_utils.py +293 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_repr.py +125 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_schema_gather.py +209 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_schema_generation_shared.py +125 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_serializers.py +53 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_signature.py +188 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_typing_extra.py +714 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_utils.py +431 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_validate_call.py +140 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_internal/_validators.py +532 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/_migration.py +308 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/alias_generators.py +62 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/aliases.py +135 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/annotated_handlers.py +122 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/class_validators.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/color.py +604 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/config.py +1213 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/dataclasses.py +383 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/datetime_parse.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/decorator.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/class_validators.py +256 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/config.py +72 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/copy_internals.py +224 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/decorator.py +284 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/json.py +141 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/parse.py +80 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/deprecated/tools.py +103 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/env_settings.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/error_wrappers.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/errors.py +189 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/experimental/__init__.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/experimental/arguments_schema.py +44 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/experimental/pipeline.py +667 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/fields.py +1559 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/functional_serializers.py +450 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/functional_validators.py +828 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/generics.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/json.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/json_schema.py +2695 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/main.py +1773 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/mypy.py +1380 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/networks.py +1312 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/parse.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/plugin/__init__.py +188 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/plugin/_loader.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/plugin/_schema_validator.py +140 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/root_model.py +157 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/schema.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/tools.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/type_adapter.py +727 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/types.py +3285 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/typing.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/utils.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/__init__.py +131 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/_hypothesis_plugin.py +391 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/annotated_types.py +72 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/class_validators.py +361 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/color.py +494 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/config.py +191 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/dataclasses.py +500 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/datetime_parse.py +248 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/decorator.py +264 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/env_settings.py +350 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/error_wrappers.py +161 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/errors.py +646 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/fields.py +1253 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/generics.py +400 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/json.py +112 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/main.py +1113 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/mypy.py +949 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/networks.py +747 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/parse.py +66 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/schema.py +1163 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/tools.py +92 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/types.py +1205 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/typing.py +615 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/utils.py +806 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/validators.py +768 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/v1/version.py +38 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/validate_call_decorator.py +116 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/validators.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/version.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic/warnings.py +96 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic-2.11.7.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic-2.11.7.dist-info/METADATA +767 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic-2.11.7.dist-info/RECORD +215 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic-2.11.7.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic-2.11.7.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core/__init__.py +144 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core/_pydantic_core.pyi +1039 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core/core_schema.py +4325 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core-2.33.2.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core-2.33.2.dist-info/METADATA +160 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core-2.33.2.dist-info/RECORD +12 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core-2.33.2.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/pydantic_core-2.33.2.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/__init__.py +184 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/__version__.py +14 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/_internal_utils.py +50 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/adapters.py +719 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/api.py +157 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/auth.py +314 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/certs.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/compat.py +106 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/cookies.py +561 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/exceptions.py +151 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/help.py +134 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/hooks.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/models.py +1039 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/packages.py +23 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/sessions.py +831 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/status_codes.py +128 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/structures.py +99 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests/utils.py +1086 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/METADATA +133 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/RECORD +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/licenses/LICENSE +175 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/requests-2.32.4.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/__init__.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/_impl.py +95 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/_tests/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/_tests/test_sniffio.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/_version.py +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/LICENSE +3 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/LICENSE.APACHE2 +202 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/LICENSE.MIT +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/METADATA +104 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/RECORD +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sniffio-1.3.1.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/__init__.py +283 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/connectors/__init__.py +18 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/connectors/aioodbc.py +174 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/connectors/asyncio.py +213 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/connectors/pyodbc.py +247 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/__init__.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/collections.pyx +409 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/immutabledict.pxd +8 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/immutabledict.pyx +133 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/processors.pyx +68 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/resultproxy.pyx +102 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/cyextension/util.pyx +91 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/__init__.py +61 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/_typing.py +30 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/__init__.py +88 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/aioodbc.py +63 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/base.py +4055 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/information_schema.py +254 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/json.py +129 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/provision.py +162 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/pymssql.py +126 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mssql/pyodbc.py +760 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/__init__.py +104 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/aiomysql.py +335 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/asyncmy.py +339 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/base.py +3581 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/cymysql.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/dml.py +225 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/enumerated.py +243 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/expression.py +143 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/json.py +81 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/mariadb.py +67 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/mariadbconnector.py +277 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/mysqlconnector.py +253 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/mysqldb.py +305 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/provision.py +114 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/pymysql.py +136 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/pyodbc.py +139 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/reflection.py +677 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/reserved_words.py +571 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/types.py +773 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/__init__.py +77 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/base.py +3747 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/cx_oracle.py +1552 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/dictionary.py +507 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/oracledb.py +947 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/provision.py +220 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/types.py +316 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/oracle/vector.py +266 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/__init__.py +167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/_psycopg_common.py +186 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/array.py +509 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/asyncpg.py +1287 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/base.py +5175 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/dml.py +339 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/ext.py +536 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/hstore.py +406 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/json.py +367 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/named_types.py +538 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/operators.py +129 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/pg8000.py +666 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/pg_catalog.py +312 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/provision.py +175 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/psycopg.py +783 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/psycopg2.py +892 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/psycopg2cffi.py +61 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/ranges.py +1031 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/types.py +313 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/__init__.py +57 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/aiosqlite.py +398 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/base.py +2945 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/dml.py +263 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/json.py +92 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/provision.py +196 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/pysqlcipher.py +157 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/pysqlite.py +705 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/dialects/type_migration_guidelines.txt +145 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/__init__.py +62 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/_py_processors.py +136 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/_py_row.py +128 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/_py_util.py +74 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py +3370 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/characteristics.py +155 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/create.py +878 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/cursor.py +2181 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py +2380 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/events.py +965 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/interfaces.py +3413 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/mock.py +134 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/processors.py +61 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/reflection.py +2102 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/result.py +2387 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/row.py +400 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/strategies.py +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/url.py +924 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/engine/util.py +167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/__init__.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/api.py +222 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/attr.py +655 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/base.py +472 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/legacy.py +246 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/event/registry.py +390 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/events.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/exc.py +832 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/__init__.py +11 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/associationproxy.py +2013 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/__init__.py +25 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/base.py +281 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/engine.py +1469 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/exc.py +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/result.py +962 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/scoping.py +1613 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/session.py +1961 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/automap.py +1701 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/baked.py +570 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/compiler.py +600 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/declarative/__init__.py +65 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/declarative/extensions.py +564 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/horizontal_shard.py +478 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/hybrid.py +1533 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/indexable.py +345 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/instrumentation.py +450 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mutable.py +1095 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/__init__.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/apply.py +324 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/decl_class.py +515 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/infer.py +590 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/names.py +335 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/plugin.py +303 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/mypy/util.py +357 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/orderinglist.py +427 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/ext/serializer.py +185 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/future/__init__.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/future/engine.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/inspection.py +174 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/log.py +288 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/__init__.py +170 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/_orm_constructors.py +2590 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/_typing.py +179 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/attributes.py +2835 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/base.py +973 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/bulk_persistence.py +2123 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/clsregistry.py +571 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/collections.py +1627 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/context.py +3334 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/decl_api.py +1917 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/decl_base.py +2186 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/dependency.py +1304 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/descriptor_props.py +1077 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/dynamic.py +300 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/evaluator.py +379 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/events.py +3271 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/exc.py +237 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/identity.py +302 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/instrumentation.py +754 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/interfaces.py +1490 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/loading.py +1682 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/mapped_collection.py +557 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/mapper.py +4431 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/path_registry.py +811 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/persistence.py +1782 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/properties.py +884 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/query.py +3453 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/relationships.py +3509 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/scoping.py +2162 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/session.py +5294 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/state.py +1143 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/state_changes.py +198 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/strategies.py +3470 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/strategy_options.py +2549 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/sync.py +164 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/unitofwork.py +796 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/util.py +2403 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/orm/writeonly.py +678 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/pool/__init__.py +44 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/pool/base.py +1516 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/pool/events.py +372 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/pool/impl.py +581 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/schema.py +71 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/__init__.py +145 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_dml_constructors.py +132 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_elements_constructors.py +1872 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_orm_types.py +20 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_py_util.py +75 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_selectable_constructors.py +715 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/_typing.py +468 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/annotation.py +585 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/base.py +2197 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/cache_key.py +1057 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/coercions.py +1403 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/compiler.py +7946 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/crud.py +1678 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/ddl.py +1442 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/default_comparator.py +552 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/dml.py +1837 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/elements.py +5544 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/events.py +458 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/expression.py +162 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/functions.py +2106 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/lambdas.py +1440 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/naming.py +212 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/operators.py +2623 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/roles.py +323 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/schema.py +6218 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/selectable.py +7193 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/sqltypes.py +3921 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/traversals.py +1024 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/type_api.py +2362 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/util.py +1487 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/sql/visitors.py +1167 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/__init__.py +96 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/assertions.py +989 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/assertsql.py +516 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/asyncio.py +135 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/config.py +423 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/engines.py +474 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/entities.py +117 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/exclusions.py +435 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/fixtures/__init__.py +28 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/fixtures/base.py +366 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/fixtures/mypy.py +332 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/fixtures/orm.py +227 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/fixtures/sql.py +503 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/pickleable.py +155 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/plugin/__init__.py +6 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/plugin/bootstrap.py +51 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/plugin/plugin_base.py +779 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/plugin/pytestplugin.py +867 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/profiling.py +324 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/provision.py +502 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/requirements.py +1893 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/schema.py +224 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/__init__.py +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_cte.py +211 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_ddl.py +389 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_deprecations.py +153 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_dialect.py +740 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_insert.py +630 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_reflection.py +3275 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_results.py +504 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_rowcount.py +258 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_select.py +2008 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_sequence.py +317 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_types.py +2145 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_unicode_ddl.py +189 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/suite/test_update_delete.py +139 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/util.py +538 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/testing/warnings.py +52 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/types.py +76 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/__init__.py +160 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/_collections.py +717 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/_concurrency_py3k.py +288 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/_has_cy.py +40 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/_py_collections.py +541 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/compat.py +303 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/concurrency.py +108 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/deprecations.py +401 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/langhelpers.py +2303 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/preloaded.py +150 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/queue.py +322 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/tool_support.py +201 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/topological.py +120 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy/util/typing.py +733 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/METADATA +243 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/RECORD +532 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/WHEEL +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/licenses/LICENSE +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/sqlalchemy-2.0.41.dist-info/top_level.txt +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/__init__.py +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/_exception_handler.py +65 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/_utils.py +100 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/applications.py +249 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/authentication.py +147 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/background.py +41 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/concurrency.py +62 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/config.py +138 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/convertors.py +89 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/datastructures.py +674 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/endpoints.py +122 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/exceptions.py +33 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/formparsers.py +275 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/__init__.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/authentication.py +52 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/base.py +222 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/cors.py +172 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/errors.py +260 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/exceptions.py +72 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/gzip.py +141 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/httpsredirect.py +19 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/sessions.py +85 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/trustedhost.py +60 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/middleware/wsgi.py +152 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/requests.py +322 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/responses.py +536 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/routing.py +874 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/schemas.py +147 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/staticfiles.py +220 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/status.py +95 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/templating.py +216 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/testclient.py +731 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/types.py +24 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette/websockets.py +195 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette-0.46.2.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette-0.46.2.dist-info/METADATA +176 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette-0.46.2.dist-info/RECORD +74 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette-0.46.2.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/starlette-0.46.2.dist-info/licenses/LICENSE.md +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions-4.14.1.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions-4.14.1.dist-info/METADATA +68 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions-4.14.1.dist-info/RECORD +7 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions-4.14.1.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions-4.14.1.dist-info/licenses/LICENSE +279 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_extensions.py +4244 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection/introspection.py +587 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection/py.typed +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection/typing_objects.py +596 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection/typing_objects.pyi +406 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection-0.4.1.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection-0.4.1.dist-info/METADATA +49 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection-0.4.1.dist-info/RECORD +13 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection-0.4.1.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/typing_inspection-0.4.1.dist-info/licenses/LICENSE +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/__init__.py +211 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/_base_connection.py +165 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/_collections.py +479 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/_request_methods.py +278 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/_version.py +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/connection.py +1093 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/connectionpool.py +1178 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/__init__.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/connection.py +255 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/fetch.py +728 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/request.py +22 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/response.py +277 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/pyopenssl.py +564 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/contrib/socks.py +228 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/exceptions.py +335 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/fields.py +341 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/filepost.py +89 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/http2/__init__.py +53 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/http2/connection.py +356 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/http2/probe.py +87 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/poolmanager.py +653 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/py.typed +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/response.py +1307 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/__init__.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/connection.py +137 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/proxy.py +43 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/request.py +266 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/response.py +101 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/retry.py +533 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/ssl_.py +524 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/ssl_match_hostname.py +159 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/ssltransport.py +271 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/timeout.py +275 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/url.py +469 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/util.py +42 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3/util/wait.py +124 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3-2.5.0.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3-2.5.0.dist-info/METADATA +154 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3-2.5.0.dist-info/RECORD +79 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3-2.5.0.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/urllib3-2.5.0.dist-info/licenses/LICENSE.txt +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/__init__.py +5 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/__main__.py +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/_subprocess.py +84 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/_types.py +281 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/config.py +531 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/importer.py +34 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/lifespan/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/lifespan/off.py +17 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/lifespan/on.py +137 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/logging.py +117 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/loops/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/loops/asyncio.py +10 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/loops/auto.py +11 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/loops/uvloop.py +7 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/main.py +604 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/middleware/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/middleware/asgi2.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/middleware/message_logger.py +87 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py +142 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/middleware/wsgi.py +199 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/http/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/http/auto.py +15 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/http/flow_control.py +54 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/http/h11_impl.py +543 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py +570 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/utils.py +56 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/websockets/__init__.py +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/websockets/auto.py +21 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/websockets/websockets_impl.py +387 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/websockets/websockets_sansio_impl.py +417 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/protocols/websockets/wsproto_impl.py +377 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/server.py +338 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/supervisors/__init__.py +16 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/supervisors/basereload.py +126 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/supervisors/multiprocess.py +222 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/supervisors/statreload.py +53 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/supervisors/watchfilesreload.py +85 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/workers.py +114 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/INSTALLER +1 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/METADATA +186 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/RECORD +87 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/REQUESTED +0 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/WHEEL +4 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/entry_points.txt +2 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn-0.35.0.dist-info/licenses/LICENSE.md +27 -0
- paytechuz-0.2.12/examples/paytechuz_fastapi/venv/pyvenv.cfg +5 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/pyproject.toml +1 -1
- {paytechuz-0.2.10 → paytechuz-0.2.12}/setup.py +1 -1
- paytechuz-0.2.12/src/core/__init__.py +0 -0
- paytechuz-0.2.12/src/gateways/__init__.py +0 -0
- paytechuz-0.2.12/src/gateways/click/__init__.py +0 -0
- paytechuz-0.2.12/src/gateways/payme/__init__.py +0 -0
- paytechuz-0.2.12/src/integrations/__init__.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/fastapi/routes.py +1 -1
- paytechuz-0.2.12/src/paytechuz/__init__.py +57 -0
- paytechuz-0.2.12/src/paytechuz/core/__init__.py +0 -0
- paytechuz-0.2.12/src/paytechuz/core/base.py +97 -0
- paytechuz-0.2.12/src/paytechuz/core/constants.py +68 -0
- paytechuz-0.2.12/src/paytechuz/core/exceptions.py +190 -0
- paytechuz-0.2.12/src/paytechuz/core/http.py +268 -0
- paytechuz-0.2.12/src/paytechuz/core/payme/errors.py +25 -0
- paytechuz-0.2.12/src/paytechuz/core/utils.py +192 -0
- paytechuz-0.2.12/src/paytechuz/gateways/__init__.py +0 -0
- paytechuz-0.2.12/src/paytechuz/gateways/click/__init__.py +2 -0
- paytechuz-0.2.12/src/paytechuz/gateways/click/client.py +203 -0
- paytechuz-0.2.12/src/paytechuz/gateways/click/merchant.py +265 -0
- paytechuz-0.2.12/src/paytechuz/gateways/click/webhook.py +227 -0
- paytechuz-0.2.12/src/paytechuz/gateways/payme/__init__.py +2 -0
- paytechuz-0.2.12/src/paytechuz/gateways/payme/cards.py +223 -0
- paytechuz-0.2.12/src/paytechuz/gateways/payme/client.py +263 -0
- paytechuz-0.2.12/src/paytechuz/gateways/payme/receipts.py +337 -0
- paytechuz-0.2.12/src/paytechuz/gateways/payme/webhook.py +379 -0
- paytechuz-0.2.12/src/paytechuz/integrations/__init__.py +0 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/__init__.py +10 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/admin.py +78 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/apps.py +26 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/migrations/0001_initial.py +43 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/migrations/__init__.py +3 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/models.py +170 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/signals.py +46 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/views.py +100 -0
- paytechuz-0.2.12/src/paytechuz/integrations/django/webhooks.py +880 -0
- paytechuz-0.2.12/src/paytechuz/integrations/fastapi/__init__.py +21 -0
- paytechuz-0.2.12/src/paytechuz/integrations/fastapi/models.py +179 -0
- paytechuz-0.2.12/src/paytechuz/integrations/fastapi/routes.py +1130 -0
- paytechuz-0.2.12/src/paytechuz/integrations/fastapi/schemas.py +118 -0
- paytechuz-0.2.12/src/paytechuz.egg-info/PKG-INFO +318 -0
- paytechuz-0.2.12/src/paytechuz.egg-info/SOURCES.txt +1341 -0
- paytechuz-0.2.12/src/paytechuz.egg-info/dependency_links.txt +1 -0
- paytechuz-0.2.12/src/paytechuz.egg-info/top_level.txt +1 -0
- paytechuz-0.2.10/src/paytechuz.egg-info/SOURCES.txt +0 -72
- {paytechuz-0.2.10 → paytechuz-0.2.12}/MANIFEST.in +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/README.md +0 -0
- {paytechuz-0.2.10/src/core → paytechuz-0.2.12/examples/paytechuz_fastapi}/__init__.py +0 -0
- {paytechuz-0.2.10/src/gateways → paytechuz-0.2.12/examples/paytechuz_fastapi/app}/__init__.py +0 -0
- /paytechuz-0.2.10/src/gateways/click/__init__.py → /paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/annotated_types/py.typed +0 -0
- {paytechuz-0.2.10/src/gateways/payme → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_backends}/__init__.py +0 -0
- {paytechuz-0.2.10/src/integrations → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/_core}/__init__.py +0 -0
- /paytechuz-0.2.10/src/paytechuz/core/__init__.py → /paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/py.typed +0 -0
- {paytechuz-0.2.10/src/paytechuz/gateways → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/anyio/streams}/__init__.py +0 -0
- /paytechuz-0.2.10/src/paytechuz/integrations/__init__.py → /paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/certifi/py.typed +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/core/base.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/core/constants.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/core/exceptions.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/core/http.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/core/payme/errors.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/core/utils.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/click/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/click/client.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/payme/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/payme/client.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/integrations/django/admin.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/apps.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/models.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/integrations/django/signals.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/views.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz}/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/fastapi/routes.py +0 -0
- {paytechuz-0.2.10/src → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages}/paytechuz/integrations/fastapi/schemas.py +0 -0
- /paytechuz-0.2.10/PKG-INFO → /paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info/METADATA +0 -0
- {paytechuz-0.2.10/src/paytechuz.egg-info → paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/paytechuz-0.2.10.dist-info}/top_level.txt +0 -0
- /paytechuz-0.2.10/src/paytechuz.egg-info/dependency_links.txt → /paytechuz-0.2.12/examples/paytechuz_fastapi/venv/lib/python3.12/site-packages/uvicorn/py.typed +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/setup.cfg +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/__init__.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/core/base.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/core/constants.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/core/exceptions.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/core/http.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/core/payme/errors.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/core/utils.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/gateways/click/client.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/gateways/click/merchant.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/gateways/click/webhook.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/gateways/payme/cards.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/gateways/payme/client.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/gateways/payme/receipts.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/gateways/payme/webhook.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/__init__.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/integrations/django/admin.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/apps.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/migrations/0001_initial.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/integrations/django/migrations/__init__.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/models.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/integrations/django/signals.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/views.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/django/webhooks.py +0 -0
- {paytechuz-0.2.10/src/paytechuz → paytechuz-0.2.12/src}/integrations/fastapi/__init__.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/fastapi/models.py +0 -0
- {paytechuz-0.2.10 → paytechuz-0.2.12}/src/integrations/fastapi/schemas.py +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from sqlalchemy import create_engine
|
|
2
|
+
from sqlalchemy.orm import sessionmaker, declarative_base
|
|
3
|
+
|
|
4
|
+
SQLALCHEMY_DATABASE_URL = "sqlite:///payments.db"
|
|
5
|
+
|
|
6
|
+
engine = create_engine(SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False})
|
|
7
|
+
|
|
8
|
+
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
9
|
+
|
|
10
|
+
Base = declarative_base()
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from datetime import datetime, timezone
|
|
2
|
+
from sqlalchemy import Column, Integer, String, Float, DateTime
|
|
3
|
+
from app.database import Base
|
|
4
|
+
from paytechuz.integrations.fastapi.models import run_migrations
|
|
5
|
+
|
|
6
|
+
class Order(Base):
|
|
7
|
+
__tablename__ = "orders"
|
|
8
|
+
|
|
9
|
+
id = Column(Integer, primary_key=True, index=True)
|
|
10
|
+
product_name = Column(String, index=True)
|
|
11
|
+
amount = Column(Float)
|
|
12
|
+
status = Column(String, default="pending")
|
|
13
|
+
created_at = Column(DateTime, default=lambda: datetime.now(timezone.utc))
|
|
14
|
+
|
|
15
|
+
def init_db(engine):
|
|
16
|
+
run_migrations(engine) # Creates Payme/Click payment tables
|
|
17
|
+
Base.metadata.create_all(bind=engine)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
from typing import Optional
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
|
|
5
|
+
class OrderCreate(BaseModel):
|
|
6
|
+
"""Order yaratish uchun request model"""
|
|
7
|
+
product_name: str
|
|
8
|
+
amount: float
|
|
9
|
+
description: Optional[str] = None
|
|
10
|
+
payment_method: str # "payme" yoki "click"
|
|
11
|
+
return_url: Optional[str] = "https://example.com/return"
|
|
12
|
+
|
|
13
|
+
class OrderResponse(BaseModel):
|
|
14
|
+
"""Order ma'lumotlarini qaytarish uchun response model"""
|
|
15
|
+
id: int
|
|
16
|
+
product_name: str
|
|
17
|
+
amount: float
|
|
18
|
+
status: str
|
|
19
|
+
created_at: datetime
|
|
20
|
+
payment_method: str
|
|
21
|
+
payment_link: str
|
|
22
|
+
|
|
23
|
+
class Config:
|
|
24
|
+
from_attributes = True
|
|
25
|
+
|
|
26
|
+
class PaymentLinkRequest(BaseModel):
|
|
27
|
+
"""To'lov linkini generatsiya qilish uchun request model"""
|
|
28
|
+
order_id: int
|
|
29
|
+
payment_method: str # "payme" yoki "click"
|
|
30
|
+
return_url: Optional[str] = "https://example.com/return"
|
|
31
|
+
|
|
32
|
+
class PaymentLinkResponse(BaseModel):
|
|
33
|
+
"""To'lov linkini qaytarish uchun response model"""
|
|
34
|
+
order_id: int
|
|
35
|
+
payment_method: str
|
|
36
|
+
payment_link: str
|
|
37
|
+
|
|
38
|
+
class OrderUpdate(BaseModel):
|
|
39
|
+
"""Order yangilash uchun request model"""
|
|
40
|
+
product_name: Optional[str] = None
|
|
41
|
+
amount: Optional[float] = None
|
|
42
|
+
status: Optional[str] = None
|
|
43
|
+
description: Optional[str] = None
|
|
44
|
+
|
|
45
|
+
class OrderListResponse(BaseModel):
|
|
46
|
+
"""Orderlar ro'yxatini qaytarish uchun response model"""
|
|
47
|
+
orders: list[OrderResponse]
|
|
48
|
+
total: int
|
|
49
|
+
skip: int
|
|
50
|
+
limit: int
|
|
51
|
+
|
|
52
|
+
class ErrorResponse(BaseModel):
|
|
53
|
+
"""Xatolik xabarini qaytarish uchun response model"""
|
|
54
|
+
detail: str
|
|
55
|
+
error_code: Optional[str] = None
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from app.models import Order
|
|
2
|
+
from paytechuz.integrations.fastapi import PaymeWebhookHandler, ClickWebhookHandler
|
|
3
|
+
|
|
4
|
+
class CustomPaymeWebhookHandler(PaymeWebhookHandler):
|
|
5
|
+
def successfully_payment(self, params, transaction):
|
|
6
|
+
order = self.db.query(Order).filter(Order.id == transaction.account_id).first()
|
|
7
|
+
if order:
|
|
8
|
+
order.status = "paid"
|
|
9
|
+
self.db.commit()
|
|
10
|
+
|
|
11
|
+
def cancelled_payment(self, params, transaction):
|
|
12
|
+
order = self.db.query(Order).filter(Order.id == transaction.account_id).first()
|
|
13
|
+
if order:
|
|
14
|
+
order.status = "cancelled"
|
|
15
|
+
self.db.commit()
|
|
16
|
+
|
|
17
|
+
class CustomClickWebhookHandler(ClickWebhookHandler):
|
|
18
|
+
def successfully_payment(self, params, transaction):
|
|
19
|
+
order = self.db.query(Order).filter(Order.id == transaction.account_id).first()
|
|
20
|
+
if order:
|
|
21
|
+
order.status = "paid"
|
|
22
|
+
self.db.commit()
|
|
23
|
+
|
|
24
|
+
def cancelled_payment(self, params, transaction):
|
|
25
|
+
order = self.db.query(Order).filter(Order.id == transaction.account_id).first()
|
|
26
|
+
if order:
|
|
27
|
+
order.status = "cancelled"
|
|
28
|
+
self.db.commit()
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
from fastapi import FastAPI, Request, Depends, HTTPException
|
|
2
|
+
from sqlalchemy.orm import Session
|
|
3
|
+
|
|
4
|
+
from app.database import SessionLocal, engine
|
|
5
|
+
from app.models import init_db, Order
|
|
6
|
+
from app.webhook_handlers import CustomPaymeWebhookHandler, CustomClickWebhookHandler
|
|
7
|
+
from app.typing import (
|
|
8
|
+
OrderCreate,
|
|
9
|
+
OrderResponse
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
from paytechuz.gateways.payme import PaymeGateway
|
|
13
|
+
from paytechuz.gateways.click import ClickGateway
|
|
14
|
+
|
|
15
|
+
app = FastAPI()
|
|
16
|
+
|
|
17
|
+
init_db(engine)
|
|
18
|
+
|
|
19
|
+
payme = PaymeGateway(
|
|
20
|
+
payme_id="your_payme_id",
|
|
21
|
+
payme_key="your_payme_key",
|
|
22
|
+
is_test_mode=True # Set to False in production environment
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
click = ClickGateway(
|
|
26
|
+
service_id="your_service_id",
|
|
27
|
+
merchant_id="your_merchant_id",
|
|
28
|
+
merchant_user_id="your_merchant_user_id",
|
|
29
|
+
secret_key="your_secret_key",
|
|
30
|
+
is_test_mode=True # Set to False in production environment
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def get_db():
|
|
35
|
+
db = SessionLocal()
|
|
36
|
+
try:
|
|
37
|
+
yield db
|
|
38
|
+
finally:
|
|
39
|
+
db.close()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@app.post("/orders/", response_model=OrderResponse)
|
|
43
|
+
async def create_order(order_data: OrderCreate, db: Session = Depends(get_db)):
|
|
44
|
+
"""Create a new order with payment link"""
|
|
45
|
+
if order_data.payment_method.lower() not in ["payme", "click"]:
|
|
46
|
+
raise HTTPException(status_code=400, detail="Invalid payment method. Use 'payme' or 'click'")
|
|
47
|
+
|
|
48
|
+
db_order = Order(
|
|
49
|
+
product_name=order_data.product_name,
|
|
50
|
+
amount=order_data.amount,
|
|
51
|
+
status="pending"
|
|
52
|
+
)
|
|
53
|
+
db.add(db_order)
|
|
54
|
+
db.commit()
|
|
55
|
+
db.refresh(db_order)
|
|
56
|
+
|
|
57
|
+
if order_data.payment_method.lower() == "payme":
|
|
58
|
+
payment_link = payme.create_payment(
|
|
59
|
+
id=str(db_order.id),
|
|
60
|
+
amount=int(db_order.amount * 100), # Convert to smallest currency unit
|
|
61
|
+
return_url=order_data.return_url
|
|
62
|
+
)
|
|
63
|
+
else: # click
|
|
64
|
+
payment_link = click.create_payment(
|
|
65
|
+
id=str(db_order.id),
|
|
66
|
+
amount=int(db_order.amount * 100), # Convert to smallest currency unit
|
|
67
|
+
description=db_order.product_name,
|
|
68
|
+
return_url=order_data.return_url
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
return OrderResponse(
|
|
72
|
+
id=db_order.id,
|
|
73
|
+
product_name=db_order.product_name,
|
|
74
|
+
amount=db_order.amount,
|
|
75
|
+
status=db_order.status,
|
|
76
|
+
created_at=db_order.created_at,
|
|
77
|
+
payment_method=order_data.payment_method.lower(),
|
|
78
|
+
payment_link=payment_link
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
@app.post("/payments/payme/webhook")
|
|
83
|
+
async def payme_webhook(request: Request, db: Session = Depends(get_db)):
|
|
84
|
+
handler = CustomPaymeWebhookHandler(
|
|
85
|
+
db=db,
|
|
86
|
+
payme_id="your_payme_id",
|
|
87
|
+
payme_key="your_payme_key",
|
|
88
|
+
account_model=Order,
|
|
89
|
+
account_field='id',
|
|
90
|
+
amount_field='amount'
|
|
91
|
+
)
|
|
92
|
+
return await handler.handle_webhook(request)
|
|
93
|
+
|
|
94
|
+
@app.post("/payments/click/webhook")
|
|
95
|
+
async def click_webhook(request: Request, db: Session = Depends(get_db)):
|
|
96
|
+
handler = CustomClickWebhookHandler(
|
|
97
|
+
db=db,
|
|
98
|
+
service_id="your_service_id",
|
|
99
|
+
merchant_id="your_merchant_id",
|
|
100
|
+
secret_key="your_secret_key",
|
|
101
|
+
account_model=Order
|
|
102
|
+
)
|
|
103
|
+
return await handler.handle_webhook(request)
|
|
Binary file
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
<#
|
|
2
|
+
.Synopsis
|
|
3
|
+
Activate a Python virtual environment for the current PowerShell session.
|
|
4
|
+
|
|
5
|
+
.Description
|
|
6
|
+
Pushes the python executable for a virtual environment to the front of the
|
|
7
|
+
$Env:PATH environment variable and sets the prompt to signify that you are
|
|
8
|
+
in a Python virtual environment. Makes use of the command line switches as
|
|
9
|
+
well as the `pyvenv.cfg` file values present in the virtual environment.
|
|
10
|
+
|
|
11
|
+
.Parameter VenvDir
|
|
12
|
+
Path to the directory that contains the virtual environment to activate. The
|
|
13
|
+
default value for this is the parent of the directory that the Activate.ps1
|
|
14
|
+
script is located within.
|
|
15
|
+
|
|
16
|
+
.Parameter Prompt
|
|
17
|
+
The prompt prefix to display when this virtual environment is activated. By
|
|
18
|
+
default, this prompt is the name of the virtual environment folder (VenvDir)
|
|
19
|
+
surrounded by parentheses and followed by a single space (ie. '(.venv) ').
|
|
20
|
+
|
|
21
|
+
.Example
|
|
22
|
+
Activate.ps1
|
|
23
|
+
Activates the Python virtual environment that contains the Activate.ps1 script.
|
|
24
|
+
|
|
25
|
+
.Example
|
|
26
|
+
Activate.ps1 -Verbose
|
|
27
|
+
Activates the Python virtual environment that contains the Activate.ps1 script,
|
|
28
|
+
and shows extra information about the activation as it executes.
|
|
29
|
+
|
|
30
|
+
.Example
|
|
31
|
+
Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
|
|
32
|
+
Activates the Python virtual environment located in the specified location.
|
|
33
|
+
|
|
34
|
+
.Example
|
|
35
|
+
Activate.ps1 -Prompt "MyPython"
|
|
36
|
+
Activates the Python virtual environment that contains the Activate.ps1 script,
|
|
37
|
+
and prefixes the current prompt with the specified string (surrounded in
|
|
38
|
+
parentheses) while the virtual environment is active.
|
|
39
|
+
|
|
40
|
+
.Notes
|
|
41
|
+
On Windows, it may be required to enable this Activate.ps1 script by setting the
|
|
42
|
+
execution policy for the user. You can do this by issuing the following PowerShell
|
|
43
|
+
command:
|
|
44
|
+
|
|
45
|
+
PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
46
|
+
|
|
47
|
+
For more information on Execution Policies:
|
|
48
|
+
https://go.microsoft.com/fwlink/?LinkID=135170
|
|
49
|
+
|
|
50
|
+
#>
|
|
51
|
+
Param(
|
|
52
|
+
[Parameter(Mandatory = $false)]
|
|
53
|
+
[String]
|
|
54
|
+
$VenvDir,
|
|
55
|
+
[Parameter(Mandatory = $false)]
|
|
56
|
+
[String]
|
|
57
|
+
$Prompt
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
<# Function declarations --------------------------------------------------- #>
|
|
61
|
+
|
|
62
|
+
<#
|
|
63
|
+
.Synopsis
|
|
64
|
+
Remove all shell session elements added by the Activate script, including the
|
|
65
|
+
addition of the virtual environment's Python executable from the beginning of
|
|
66
|
+
the PATH variable.
|
|
67
|
+
|
|
68
|
+
.Parameter NonDestructive
|
|
69
|
+
If present, do not remove this function from the global namespace for the
|
|
70
|
+
session.
|
|
71
|
+
|
|
72
|
+
#>
|
|
73
|
+
function global:deactivate ([switch]$NonDestructive) {
|
|
74
|
+
# Revert to original values
|
|
75
|
+
|
|
76
|
+
# The prior prompt:
|
|
77
|
+
if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
|
|
78
|
+
Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
|
|
79
|
+
Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
# The prior PYTHONHOME:
|
|
83
|
+
if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
|
|
84
|
+
Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
|
|
85
|
+
Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
# The prior PATH:
|
|
89
|
+
if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
|
|
90
|
+
Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
|
|
91
|
+
Remove-Item -Path Env:_OLD_VIRTUAL_PATH
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
# Just remove the VIRTUAL_ENV altogether:
|
|
95
|
+
if (Test-Path -Path Env:VIRTUAL_ENV) {
|
|
96
|
+
Remove-Item -Path env:VIRTUAL_ENV
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
# Just remove VIRTUAL_ENV_PROMPT altogether.
|
|
100
|
+
if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
|
|
101
|
+
Remove-Item -Path env:VIRTUAL_ENV_PROMPT
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
# Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
|
|
105
|
+
if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
|
|
106
|
+
Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
# Leave deactivate function in the global namespace if requested:
|
|
110
|
+
if (-not $NonDestructive) {
|
|
111
|
+
Remove-Item -Path function:deactivate
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
<#
|
|
116
|
+
.Description
|
|
117
|
+
Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
|
|
118
|
+
given folder, and returns them in a map.
|
|
119
|
+
|
|
120
|
+
For each line in the pyvenv.cfg file, if that line can be parsed into exactly
|
|
121
|
+
two strings separated by `=` (with any amount of whitespace surrounding the =)
|
|
122
|
+
then it is considered a `key = value` line. The left hand string is the key,
|
|
123
|
+
the right hand is the value.
|
|
124
|
+
|
|
125
|
+
If the value starts with a `'` or a `"` then the first and last character is
|
|
126
|
+
stripped from the value before being captured.
|
|
127
|
+
|
|
128
|
+
.Parameter ConfigDir
|
|
129
|
+
Path to the directory that contains the `pyvenv.cfg` file.
|
|
130
|
+
#>
|
|
131
|
+
function Get-PyVenvConfig(
|
|
132
|
+
[String]
|
|
133
|
+
$ConfigDir
|
|
134
|
+
) {
|
|
135
|
+
Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
|
|
136
|
+
|
|
137
|
+
# Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
|
|
138
|
+
$pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
|
|
139
|
+
|
|
140
|
+
# An empty map will be returned if no config file is found.
|
|
141
|
+
$pyvenvConfig = @{ }
|
|
142
|
+
|
|
143
|
+
if ($pyvenvConfigPath) {
|
|
144
|
+
|
|
145
|
+
Write-Verbose "File exists, parse `key = value` lines"
|
|
146
|
+
$pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
|
|
147
|
+
|
|
148
|
+
$pyvenvConfigContent | ForEach-Object {
|
|
149
|
+
$keyval = $PSItem -split "\s*=\s*", 2
|
|
150
|
+
if ($keyval[0] -and $keyval[1]) {
|
|
151
|
+
$val = $keyval[1]
|
|
152
|
+
|
|
153
|
+
# Remove extraneous quotations around a string value.
|
|
154
|
+
if ("'""".Contains($val.Substring(0, 1))) {
|
|
155
|
+
$val = $val.Substring(1, $val.Length - 2)
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
$pyvenvConfig[$keyval[0]] = $val
|
|
159
|
+
Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
return $pyvenvConfig
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<# Begin Activate script --------------------------------------------------- #>
|
|
168
|
+
|
|
169
|
+
# Determine the containing directory of this script
|
|
170
|
+
$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
|
171
|
+
$VenvExecDir = Get-Item -Path $VenvExecPath
|
|
172
|
+
|
|
173
|
+
Write-Verbose "Activation script is located in path: '$VenvExecPath'"
|
|
174
|
+
Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
|
|
175
|
+
Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
|
|
176
|
+
|
|
177
|
+
# Set values required in priority: CmdLine, ConfigFile, Default
|
|
178
|
+
# First, get the location of the virtual environment, it might not be
|
|
179
|
+
# VenvExecDir if specified on the command line.
|
|
180
|
+
if ($VenvDir) {
|
|
181
|
+
Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
|
|
182
|
+
}
|
|
183
|
+
else {
|
|
184
|
+
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
|
|
185
|
+
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
|
|
186
|
+
Write-Verbose "VenvDir=$VenvDir"
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
# Next, read the `pyvenv.cfg` file to determine any required value such
|
|
190
|
+
# as `prompt`.
|
|
191
|
+
$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
|
|
192
|
+
|
|
193
|
+
# Next, set the prompt from the command line, or the config file, or
|
|
194
|
+
# just use the name of the virtual environment folder.
|
|
195
|
+
if ($Prompt) {
|
|
196
|
+
Write-Verbose "Prompt specified as argument, using '$Prompt'"
|
|
197
|
+
}
|
|
198
|
+
else {
|
|
199
|
+
Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
|
|
200
|
+
if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
|
|
201
|
+
Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
|
|
202
|
+
$Prompt = $pyvenvCfg['prompt'];
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
|
|
206
|
+
Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
|
|
207
|
+
$Prompt = Split-Path -Path $venvDir -Leaf
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
Write-Verbose "Prompt = '$Prompt'"
|
|
212
|
+
Write-Verbose "VenvDir='$VenvDir'"
|
|
213
|
+
|
|
214
|
+
# Deactivate any currently active virtual environment, but leave the
|
|
215
|
+
# deactivate function in place.
|
|
216
|
+
deactivate -nondestructive
|
|
217
|
+
|
|
218
|
+
# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
|
|
219
|
+
# that there is an activated venv.
|
|
220
|
+
$env:VIRTUAL_ENV = $VenvDir
|
|
221
|
+
|
|
222
|
+
if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
|
|
223
|
+
|
|
224
|
+
Write-Verbose "Setting prompt to '$Prompt'"
|
|
225
|
+
|
|
226
|
+
# Set the prompt to include the env name
|
|
227
|
+
# Make sure _OLD_VIRTUAL_PROMPT is global
|
|
228
|
+
function global:_OLD_VIRTUAL_PROMPT { "" }
|
|
229
|
+
Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
|
|
230
|
+
New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
|
|
231
|
+
|
|
232
|
+
function global:prompt {
|
|
233
|
+
Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
|
|
234
|
+
_OLD_VIRTUAL_PROMPT
|
|
235
|
+
}
|
|
236
|
+
$env:VIRTUAL_ENV_PROMPT = $Prompt
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
# Clear PYTHONHOME
|
|
240
|
+
if (Test-Path -Path Env:PYTHONHOME) {
|
|
241
|
+
Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
|
|
242
|
+
Remove-Item -Path Env:PYTHONHOME
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
# Add the venv to the PATH
|
|
246
|
+
Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
|
|
247
|
+
$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# This file must be used with "source bin/activate" *from bash*
|
|
2
|
+
# You cannot run it directly
|
|
3
|
+
|
|
4
|
+
deactivate () {
|
|
5
|
+
# reset old environment variables
|
|
6
|
+
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
|
|
7
|
+
PATH="${_OLD_VIRTUAL_PATH:-}"
|
|
8
|
+
export PATH
|
|
9
|
+
unset _OLD_VIRTUAL_PATH
|
|
10
|
+
fi
|
|
11
|
+
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
|
|
12
|
+
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
|
|
13
|
+
export PYTHONHOME
|
|
14
|
+
unset _OLD_VIRTUAL_PYTHONHOME
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Call hash to forget past locations. Without forgetting
|
|
18
|
+
# past locations the $PATH changes we made may not be respected.
|
|
19
|
+
# See "man bash" for more details. hash is usually a builtin of your shell
|
|
20
|
+
hash -r 2> /dev/null
|
|
21
|
+
|
|
22
|
+
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
|
23
|
+
PS1="${_OLD_VIRTUAL_PS1:-}"
|
|
24
|
+
export PS1
|
|
25
|
+
unset _OLD_VIRTUAL_PS1
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
unset VIRTUAL_ENV
|
|
29
|
+
unset VIRTUAL_ENV_PROMPT
|
|
30
|
+
if [ ! "${1:-}" = "nondestructive" ] ; then
|
|
31
|
+
# Self destruct!
|
|
32
|
+
unset -f deactivate
|
|
33
|
+
fi
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
# unset irrelevant variables
|
|
37
|
+
deactivate nondestructive
|
|
38
|
+
|
|
39
|
+
# on Windows, a path can contain colons and backslashes and has to be converted:
|
|
40
|
+
if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then
|
|
41
|
+
# transform D:\path\to\venv to /d/path/to/venv on MSYS
|
|
42
|
+
# and to /cygdrive/d/path/to/venv on Cygwin
|
|
43
|
+
export VIRTUAL_ENV=$(cygpath /Users/muhammadali/apps/github/paytechuz_fastapi/venv)
|
|
44
|
+
else
|
|
45
|
+
# use the path as-is
|
|
46
|
+
export VIRTUAL_ENV=/Users/muhammadali/apps/github/paytechuz_fastapi/venv
|
|
47
|
+
fi
|
|
48
|
+
|
|
49
|
+
_OLD_VIRTUAL_PATH="$PATH"
|
|
50
|
+
PATH="$VIRTUAL_ENV/"bin":$PATH"
|
|
51
|
+
export PATH
|
|
52
|
+
|
|
53
|
+
# unset PYTHONHOME if set
|
|
54
|
+
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
|
55
|
+
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
|
56
|
+
if [ -n "${PYTHONHOME:-}" ] ; then
|
|
57
|
+
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
|
58
|
+
unset PYTHONHOME
|
|
59
|
+
fi
|
|
60
|
+
|
|
61
|
+
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
|
62
|
+
_OLD_VIRTUAL_PS1="${PS1:-}"
|
|
63
|
+
PS1='(venv) '"${PS1:-}"
|
|
64
|
+
export PS1
|
|
65
|
+
VIRTUAL_ENV_PROMPT='(venv) '
|
|
66
|
+
export VIRTUAL_ENV_PROMPT
|
|
67
|
+
fi
|
|
68
|
+
|
|
69
|
+
# Call hash to forget past commands. Without forgetting
|
|
70
|
+
# past commands the $PATH changes we made may not be respected
|
|
71
|
+
hash -r 2> /dev/null
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file must be used with "source bin/activate.csh" *from csh*.
|
|
2
|
+
# You cannot run it directly.
|
|
3
|
+
|
|
4
|
+
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
|
5
|
+
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
|
6
|
+
|
|
7
|
+
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
|
|
8
|
+
|
|
9
|
+
# Unset irrelevant variables.
|
|
10
|
+
deactivate nondestructive
|
|
11
|
+
|
|
12
|
+
setenv VIRTUAL_ENV /Users/muhammadali/apps/github/paytechuz_fastapi/venv
|
|
13
|
+
|
|
14
|
+
set _OLD_VIRTUAL_PATH="$PATH"
|
|
15
|
+
setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
set _OLD_VIRTUAL_PROMPT="$prompt"
|
|
19
|
+
|
|
20
|
+
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
|
21
|
+
set prompt = '(venv) '"$prompt"
|
|
22
|
+
setenv VIRTUAL_ENV_PROMPT '(venv) '
|
|
23
|
+
endif
|
|
24
|
+
|
|
25
|
+
alias pydoc python -m pydoc
|
|
26
|
+
|
|
27
|
+
rehash
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
|
|
2
|
+
# (https://fishshell.com/). You cannot run it directly.
|
|
3
|
+
|
|
4
|
+
function deactivate -d "Exit virtual environment and return to normal shell environment"
|
|
5
|
+
# reset old environment variables
|
|
6
|
+
if test -n "$_OLD_VIRTUAL_PATH"
|
|
7
|
+
set -gx PATH $_OLD_VIRTUAL_PATH
|
|
8
|
+
set -e _OLD_VIRTUAL_PATH
|
|
9
|
+
end
|
|
10
|
+
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
|
|
11
|
+
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
|
|
12
|
+
set -e _OLD_VIRTUAL_PYTHONHOME
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
|
|
16
|
+
set -e _OLD_FISH_PROMPT_OVERRIDE
|
|
17
|
+
# prevents error when using nested fish instances (Issue #93858)
|
|
18
|
+
if functions -q _old_fish_prompt
|
|
19
|
+
functions -e fish_prompt
|
|
20
|
+
functions -c _old_fish_prompt fish_prompt
|
|
21
|
+
functions -e _old_fish_prompt
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
set -e VIRTUAL_ENV
|
|
26
|
+
set -e VIRTUAL_ENV_PROMPT
|
|
27
|
+
if test "$argv[1]" != "nondestructive"
|
|
28
|
+
# Self-destruct!
|
|
29
|
+
functions -e deactivate
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Unset irrelevant variables.
|
|
34
|
+
deactivate nondestructive
|
|
35
|
+
|
|
36
|
+
set -gx VIRTUAL_ENV /Users/muhammadali/apps/github/paytechuz_fastapi/venv
|
|
37
|
+
|
|
38
|
+
set -gx _OLD_VIRTUAL_PATH $PATH
|
|
39
|
+
set -gx PATH "$VIRTUAL_ENV/"bin $PATH
|
|
40
|
+
|
|
41
|
+
# Unset PYTHONHOME if set.
|
|
42
|
+
if set -q PYTHONHOME
|
|
43
|
+
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
|
|
44
|
+
set -e PYTHONHOME
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
|
|
48
|
+
# fish uses a function instead of an env var to generate the prompt.
|
|
49
|
+
|
|
50
|
+
# Save the current fish_prompt function as the function _old_fish_prompt.
|
|
51
|
+
functions -c fish_prompt _old_fish_prompt
|
|
52
|
+
|
|
53
|
+
# With the original prompt function renamed, we can override with our own.
|
|
54
|
+
function fish_prompt
|
|
55
|
+
# Save the return status of the last command.
|
|
56
|
+
set -l old_status $status
|
|
57
|
+
|
|
58
|
+
# Output the venv prompt; color taken from the blue of the Python logo.
|
|
59
|
+
printf "%s%s%s" (set_color 4B8BBE) '(venv) ' (set_color normal)
|
|
60
|
+
|
|
61
|
+
# Restore the return status of the previous command.
|
|
62
|
+
echo "exit $old_status" | .
|
|
63
|
+
# Output the original/"old" prompt.
|
|
64
|
+
_old_fish_prompt
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
|
|
68
|
+
set -gx VIRTUAL_ENV_PROMPT '(venv) '
|
|
69
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/Users/muhammadali/apps/github/paytechuz_fastapi/venv/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from fastapi.cli import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/Users/muhammadali/apps/github/paytechuz_fastapi/venv/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from charset_normalizer import cli
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(cli.cli_detect())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/Users/muhammadali/apps/github/paytechuz_fastapi/venv/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from pip._internal.cli.main import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/Users/muhammadali/apps/github/paytechuz_fastapi/venv/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from pip._internal.cli.main import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|