From e6cfdd429e6232fd41df6413aac65f5fe079bd85 Mon Sep 17 00:00:00 2001 From: jjyoon012-git Date: Tue, 11 Nov 2025 11:16:33 +0900 Subject: [PATCH] feat(ocr): add OCR receipt parsing using Google Vision --- .../typing_extensions.cpython-310.pyc | Bin 0 -> 115614 bytes .../site-packages/_distutils_hack/__init__.py | 222 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7584 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 237 bytes .../site-packages/_distutils_hack/override.py | 1 + ocr/.venv/Lib/site-packages/_yaml/__init__.py | 33 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 738 bytes .../annotated_types-0.7.0.dist-info/INSTALLER | 1 + .../annotated_types-0.7.0.dist-info/METADATA | 295 + .../annotated_types-0.7.0.dist-info/RECORD | 10 + .../annotated_types-0.7.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/annotated_types/__init__.py | 432 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 14603 bytes .../__pycache__/test_cases.cpython-310.pyc | Bin 0 -> 5643 bytes .../site-packages/annotated_types/py.typed | 0 .../annotated_types/test_cases.py | 151 + .../anyio-4.11.0.dist-info/INSTALLER | 1 + .../anyio-4.11.0.dist-info/METADATA | 94 + .../anyio-4.11.0.dist-info/RECORD | 90 + .../anyio-4.11.0.dist-info/WHEEL | 5 + .../anyio-4.11.0.dist-info/entry_points.txt | 2 + .../anyio-4.11.0.dist-info/licenses/LICENSE | 20 + .../anyio-4.11.0.dist-info/top_level.txt | 1 + ocr/.venv/Lib/site-packages/anyio/__init__.py | 110 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4246 bytes .../__pycache__/from_thread.cpython-310.pyc | Bin 0 -> 18767 bytes .../__pycache__/lowlevel.cpython-310.pyc | Bin 0 -> 5342 bytes .../__pycache__/pytest_plugin.cpython-310.pyc | Bin 0 -> 9466 bytes .../to_interpreter.cpython-310.pyc | Bin 0 -> 7010 bytes .../__pycache__/to_process.cpython-310.pyc | Bin 0 -> 6600 bytes .../__pycache__/to_thread.cpython-310.pyc | Bin 0 -> 2614 bytes .../site-packages/anyio/_backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 79939 bytes .../__pycache__/_trio.cpython-310.pyc | Bin 0 -> 46061 bytes .../site-packages/anyio/_backends/_asyncio.py | 2967 ++++++ .../site-packages/anyio/_backends/_trio.py | 1384 +++ .../Lib/site-packages/anyio/_core/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 182 bytes .../_asyncio_selector_thread.cpython-310.pyc | Bin 0 -> 4112 bytes .../_contextmanagers.cpython-310.pyc | Bin 0 -> 6989 bytes .../__pycache__/_eventloop.cpython-310.pyc | Bin 0 -> 4806 bytes .../__pycache__/_exceptions.cpython-310.pyc | Bin 0 -> 5897 bytes .../_core/__pycache__/_fileio.cpython-310.pyc | Bin 0 -> 26956 bytes .../__pycache__/_resources.cpython-310.pyc | Bin 0 -> 761 bytes .../__pycache__/_signals.cpython-310.pyc | Bin 0 -> 1197 bytes .../__pycache__/_sockets.cpython-310.pyc | Bin 0 -> 28936 bytes .../__pycache__/_streams.cpython-310.pyc | Bin 0 -> 1993 bytes .../__pycache__/_subprocesses.cpython-310.pyc | Bin 0 -> 7656 bytes .../_synchronization.cpython-310.pyc | Bin 0 -> 24503 bytes .../_core/__pycache__/_tasks.cpython-310.pyc | Bin 0 -> 5977 bytes .../__pycache__/_tempfile.cpython-310.pyc | Bin 0 -> 19360 bytes .../__pycache__/_testing.cpython-310.pyc | Bin 0 -> 2917 bytes .../__pycache__/_typedattr.cpython-310.pyc | Bin 0 -> 3321 bytes .../anyio/_core/_asyncio_selector_thread.py | 167 + .../anyio/_core/_contextmanagers.py | 200 + .../site-packages/anyio/_core/_eventloop.py | 166 + .../site-packages/anyio/_core/_exceptions.py | 153 + .../Lib/site-packages/anyio/_core/_fileio.py | 740 ++ .../site-packages/anyio/_core/_resources.py | 18 + .../Lib/site-packages/anyio/_core/_signals.py | 27 + .../Lib/site-packages/anyio/_core/_sockets.py | 991 ++ .../Lib/site-packages/anyio/_core/_streams.py | 52 + .../anyio/_core/_subprocesses.py | 202 + .../anyio/_core/_synchronization.py | 753 ++ .../Lib/site-packages/anyio/_core/_tasks.py | 163 + .../site-packages/anyio/_core/_tempfile.py | 616 ++ .../Lib/site-packages/anyio/_core/_testing.py | 78 + .../site-packages/anyio/_core/_typedattr.py | 81 + .../Lib/site-packages/anyio/abc/__init__.py | 58 + .../abc/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2171 bytes .../__pycache__/_eventloop.cpython-310.pyc | Bin 0 -> 14019 bytes .../__pycache__/_resources.cpython-310.pyc | Bin 0 -> 1455 bytes .../abc/__pycache__/_sockets.cpython-310.pyc | Bin 0 -> 13452 bytes .../abc/__pycache__/_streams.cpython-310.pyc | Bin 0 -> 8737 bytes .../__pycache__/_subprocesses.cpython-310.pyc | Bin 0 -> 2988 bytes .../abc/__pycache__/_tasks.cpython-310.pyc | Bin 0 -> 4701 bytes .../abc/__pycache__/_testing.cpython-310.pyc | Bin 0 -> 2612 bytes .../Lib/site-packages/anyio/abc/_eventloop.py | 420 + .../Lib/site-packages/anyio/abc/_resources.py | 33 + .../Lib/site-packages/anyio/abc/_sockets.py | 405 + .../Lib/site-packages/anyio/abc/_streams.py | 239 + .../site-packages/anyio/abc/_subprocesses.py | 79 + .../Lib/site-packages/anyio/abc/_tasks.py | 117 + .../Lib/site-packages/anyio/abc/_testing.py | 65 + .../Lib/site-packages/anyio/from_thread.py | 565 ++ ocr/.venv/Lib/site-packages/anyio/lowlevel.py | 170 + ocr/.venv/Lib/site-packages/anyio/py.typed | 0 .../Lib/site-packages/anyio/pytest_plugin.py | 298 + .../site-packages/anyio/streams/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 184 bytes .../__pycache__/buffered.cpython-310.pyc | Bin 0 -> 6450 bytes .../streams/__pycache__/file.cpython-310.pyc | Bin 0 -> 5539 bytes .../__pycache__/memory.cpython-310.pyc | Bin 0 -> 10064 bytes .../__pycache__/stapled.cpython-310.pyc | Bin 0 -> 5383 bytes .../streams/__pycache__/text.cpython-310.pyc | Bin 0 -> 7105 bytes .../streams/__pycache__/tls.cpython-310.pyc | Bin 0 -> 12801 bytes .../site-packages/anyio/streams/buffered.py | 182 + .../Lib/site-packages/anyio/streams/file.py | 148 + .../Lib/site-packages/anyio/streams/memory.py | 319 + .../site-packages/anyio/streams/stapled.py | 141 + .../Lib/site-packages/anyio/streams/text.py | 169 + .../Lib/site-packages/anyio/streams/tls.py | 417 + .../Lib/site-packages/anyio/to_interpreter.py | 239 + .../Lib/site-packages/anyio/to_process.py | 258 + .../Lib/site-packages/anyio/to_thread.py | 69 + .../cachetools-6.2.1.dist-info/INSTALLER | 1 + .../cachetools-6.2.1.dist-info/METADATA | 154 + .../cachetools-6.2.1.dist-info/RECORD | 16 + .../cachetools-6.2.1.dist-info/WHEEL | 5 + .../licenses/LICENSE | 20 + .../cachetools-6.2.1.dist-info/top_level.txt | 1 + .../Lib/site-packages/cachetools/__init__.py | 712 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 22510 bytes .../__pycache__/_cached.cpython-310.pyc | Bin 0 -> 7365 bytes .../__pycache__/_cachedmethod.cpython-310.pyc | Bin 0 -> 3696 bytes .../__pycache__/func.cpython-310.pyc | Bin 0 -> 3357 bytes .../__pycache__/keys.cpython-310.pyc | Bin 0 -> 2442 bytes .../Lib/site-packages/cachetools/_cached.py | 245 + .../site-packages/cachetools/_cachedmethod.py | 128 + .../Lib/site-packages/cachetools/func.py | 102 + .../Lib/site-packages/cachetools/keys.py | 62 + .../certifi-2025.10.5.dist-info/INSTALLER | 1 + .../certifi-2025.10.5.dist-info/METADATA | 78 + .../certifi-2025.10.5.dist-info/RECORD | 14 + .../certifi-2025.10.5.dist-info/WHEEL | 5 + .../licenses/LICENSE | 20 + .../certifi-2025.10.5.dist-info/top_level.txt | 1 + .../Lib/site-packages/certifi/__init__.py | 4 + .../Lib/site-packages/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 291 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 429 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1404 bytes .../Lib/site-packages/certifi/cacert.pem | 4800 +++++++++ ocr/.venv/Lib/site-packages/certifi/core.py | 83 + ocr/.venv/Lib/site-packages/certifi/py.typed | 0 .../INSTALLER | 1 + .../METADATA | 764 ++ .../charset_normalizer-3.4.4.dist-info/RECORD | 35 + .../charset_normalizer-3.4.4.dist-info/WHEEL | 5 + .../entry_points.txt | 2 + .../licenses/LICENSE | 21 + .../top_level.txt | 1 + .../charset_normalizer/__init__.py | 48 + .../charset_normalizer/__main__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1633 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 322 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 11808 bytes .../__pycache__/cd.cpython-310.pyc | Bin 0 -> 9731 bytes .../__pycache__/constant.cpython-310.pyc | Bin 0 -> 32540 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 2293 bytes .../__pycache__/md.cpython-310.pyc | Bin 0 -> 16048 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 12201 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 8998 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 324 bytes .../site-packages/charset_normalizer/api.py | 669 ++ .../site-packages/charset_normalizer/cd.py | 395 + .../charset_normalizer/cli/__init__.py | 8 + .../charset_normalizer/cli/__main__.py | 381 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 325 bytes .../cli/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 9334 bytes .../charset_normalizer/constant.py | 2015 ++++ .../charset_normalizer/legacy.py | 80 + .../charset_normalizer/md.cp310-win_amd64.pyd | Bin 0 -> 10752 bytes .../site-packages/charset_normalizer/md.py | 635 ++ .../md__mypyc.cp310-win_amd64.pyd | Bin 0 -> 124416 bytes .../charset_normalizer/models.py | 360 + .../site-packages/charset_normalizer/py.typed | 0 .../site-packages/charset_normalizer/utils.py | 414 + .../charset_normalizer/version.py | 8 + .../click-8.3.0.dist-info/INSTALLER | 1 + .../click-8.3.0.dist-info/METADATA | 84 + .../click-8.3.0.dist-info/RECORD | 40 + .../site-packages/click-8.3.0.dist-info/WHEEL | 4 + .../licenses/LICENSE.txt | 28 + ocr/.venv/Lib/site-packages/click/__init__.py | 123 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3658 bytes .../click/__pycache__/_compat.cpython-310.pyc | Bin 0 -> 16033 bytes .../__pycache__/_termui_impl.cpython-310.pyc | Bin 0 -> 18066 bytes .../__pycache__/_textwrap.cpython-310.pyc | Bin 0 -> 1660 bytes .../click/__pycache__/_utils.cpython-310.pyc | Bin 0 -> 909 bytes .../__pycache__/_winconsole.cpython-310.pyc | Bin 0 -> 8273 bytes .../click/__pycache__/core.cpython-310.pyc | Bin 0 -> 97946 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 17564 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11030 bytes .../__pycache__/formatting.cpython-310.pyc | Bin 0 -> 9700 bytes .../click/__pycache__/globals.cpython-310.pyc | Bin 0 -> 2480 bytes .../click/__pycache__/parser.cpython-310.pyc | Bin 0 -> 14154 bytes .../shell_completion.cpython-310.pyc | Bin 0 -> 18301 bytes .../click/__pycache__/termui.cpython-310.pyc | Bin 0 -> 28859 bytes .../click/__pycache__/testing.cpython-310.pyc | Bin 0 -> 19211 bytes .../click/__pycache__/types.cpython-310.pyc | Bin 0 -> 37285 bytes .../click/__pycache__/utils.cpython-310.pyc | Bin 0 -> 19107 bytes ocr/.venv/Lib/site-packages/click/_compat.py | 622 ++ .../Lib/site-packages/click/_termui_impl.py | 847 ++ .../Lib/site-packages/click/_textwrap.py | 51 + ocr/.venv/Lib/site-packages/click/_utils.py | 36 + .../Lib/site-packages/click/_winconsole.py | 296 + ocr/.venv/Lib/site-packages/click/core.py | 3347 +++++++ .../Lib/site-packages/click/decorators.py | 551 + .../Lib/site-packages/click/exceptions.py | 308 + .../Lib/site-packages/click/formatting.py | 301 + ocr/.venv/Lib/site-packages/click/globals.py | 67 + ocr/.venv/Lib/site-packages/click/parser.py | 532 + ocr/.venv/Lib/site-packages/click/py.typed | 0 .../site-packages/click/shell_completion.py | 667 ++ ocr/.venv/Lib/site-packages/click/termui.py | 877 ++ ocr/.venv/Lib/site-packages/click/testing.py | 577 ++ ocr/.venv/Lib/site-packages/click/types.py | 1209 +++ ocr/.venv/Lib/site-packages/click/utils.py | 627 ++ .../colorama-0.4.6.dist-info/INSTALLER | 1 + .../colorama-0.4.6.dist-info/METADATA | 441 + .../colorama-0.4.6.dist-info/RECORD | 31 + .../colorama-0.4.6.dist-info/WHEEL | 5 + .../licenses/LICENSE.txt | 27 + .../Lib/site-packages/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 465 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 2991 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 8503 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 2248 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 4458 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 5154 bytes ocr/.venv/Lib/site-packages/colorama/ansi.py | 102 + .../Lib/site-packages/colorama/ansitowin32.py | 277 + .../Lib/site-packages/colorama/initialise.py | 121 + .../site-packages/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 185 bytes .../__pycache__/ansi_test.cpython-310.pyc | Bin 0 -> 2277 bytes .../ansitowin32_test.cpython-310.pyc | Bin 0 -> 11588 bytes .../initialise_test.cpython-310.pyc | Bin 0 -> 6885 bytes .../__pycache__/isatty_test.cpython-310.pyc | Bin 0 -> 2676 bytes .../tests/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1585 bytes .../__pycache__/winterm_test.cpython-310.pyc | Bin 0 -> 3178 bytes .../site-packages/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../colorama/tests/initialise_test.py | 189 + .../colorama/tests/isatty_test.py | 57 + .../Lib/site-packages/colorama/tests/utils.py | 49 + .../colorama/tests/winterm_test.py | 131 + ocr/.venv/Lib/site-packages/colorama/win32.py | 180 + .../Lib/site-packages/colorama/winterm.py | 195 + .../site-packages/distutils-precedence.pth | 1 + .../Lib/site-packages/dotenv/__init__.py | 49 + .../Lib/site-packages/dotenv/__main__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1259 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 326 bytes .../dotenv/__pycache__/cli.cpython-310.pyc | Bin 0 -> 5988 bytes .../__pycache__/ipython.cpython-310.pyc | Bin 0 -> 1484 bytes .../dotenv/__pycache__/main.cpython-310.pyc | Bin 0 -> 10264 bytes .../dotenv/__pycache__/parser.cpython-310.pyc | Bin 0 -> 6153 bytes .../__pycache__/variables.cpython-310.pyc | Bin 0 -> 3542 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 197 bytes ocr/.venv/Lib/site-packages/dotenv/cli.py | 199 + ocr/.venv/Lib/site-packages/dotenv/ipython.py | 39 + ocr/.venv/Lib/site-packages/dotenv/main.py | 392 + ocr/.venv/Lib/site-packages/dotenv/parser.py | 175 + ocr/.venv/Lib/site-packages/dotenv/py.typed | 1 + .../Lib/site-packages/dotenv/variables.py | 86 + ocr/.venv/Lib/site-packages/dotenv/version.py | 1 + .../exceptiongroup-1.3.0.dist-info/INSTALLER | 1 + .../exceptiongroup-1.3.0.dist-info/METADATA | 159 + .../exceptiongroup-1.3.0.dist-info/RECORD | 18 + .../exceptiongroup-1.3.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 73 + .../site-packages/exceptiongroup/__init__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 881 bytes .../__pycache__/_catch.cpython-310.pyc | Bin 0 -> 3266 bytes .../__pycache__/_exceptions.cpython-310.pyc | Bin 0 -> 10219 bytes .../__pycache__/_formatting.cpython-310.pyc | Bin 0 -> 12281 bytes .../__pycache__/_suppress.cpython-310.pyc | Bin 0 -> 1567 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 561 bytes .../site-packages/exceptiongroup/_catch.py | 138 + .../exceptiongroup/_exceptions.py | 336 + .../exceptiongroup/_formatting.py | 601 ++ .../site-packages/exceptiongroup/_suppress.py | 55 + .../site-packages/exceptiongroup/_version.py | 21 + .../Lib/site-packages/exceptiongroup/py.typed | 0 .../fastapi-0.115.0.dist-info/INSTALLER | 1 + .../fastapi-0.115.0.dist-info/METADATA | 562 ++ .../fastapi-0.115.0.dist-info/RECORD | 97 + .../fastapi-0.115.0.dist-info/REQUESTED | 0 .../fastapi-0.115.0.dist-info/WHEEL | 4 + .../entry_points.txt | 3 + .../licenses/LICENSE | 21 + .../Lib/site-packages/fastapi/__init__.py | 25 + .../Lib/site-packages/fastapi/__main__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1067 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 226 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 18414 bytes .../__pycache__/applications.cpython-310.pyc | Bin 0 -> 68370 bytes .../__pycache__/background.cpython-310.pyc | Bin 0 -> 2158 bytes .../fastapi/__pycache__/cli.cpython-310.pyc | Bin 0 -> 554 bytes .../__pycache__/concurrency.cpython-310.pyc | Bin 0 -> 1020 bytes .../datastructures.cpython-310.pyc | Bin 0 -> 6519 bytes .../__pycache__/encoders.cpython-310.pyc | Bin 0 -> 7783 bytes .../exception_handlers.cpython-310.pyc | Bin 0 -> 1553 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 6242 bytes .../__pycache__/logger.cpython-310.pyc | Bin 0 -> 235 bytes .../param_functions.cpython-310.pyc | Bin 0 -> 23535 bytes .../__pycache__/params.cpython-310.pyc | Bin 0 -> 15236 bytes .../__pycache__/requests.cpython-310.pyc | Bin 0 -> 265 bytes .../__pycache__/responses.cpython-310.pyc | Bin 0 -> 1942 bytes .../__pycache__/routing.cpython-310.pyc | Bin 0 -> 57649 bytes .../__pycache__/staticfiles.cpython-310.pyc | Bin 0 -> 238 bytes .../__pycache__/templating.cpython-310.pyc | Bin 0 -> 240 bytes .../__pycache__/testclient.cpython-310.pyc | Bin 0 -> 235 bytes .../fastapi/__pycache__/types.cpython-310.pyc | Bin 0 -> 596 bytes .../fastapi/__pycache__/utils.cpython-310.pyc | Bin 0 -> 5559 bytes .../__pycache__/websockets.cpython-310.pyc | Bin 0 -> 313 bytes .../Lib/site-packages/fastapi/_compat.py | 657 ++ .../Lib/site-packages/fastapi/applications.py | 4585 +++++++++ .../Lib/site-packages/fastapi/background.py | 59 + ocr/.venv/Lib/site-packages/fastapi/cli.py | 13 + .../Lib/site-packages/fastapi/concurrency.py | 39 + .../site-packages/fastapi/datastructures.py | 204 + .../fastapi/dependencies/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 2028 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 21512 bytes .../fastapi/dependencies/models.py | 37 + .../fastapi/dependencies/utils.py | 962 ++ .../Lib/site-packages/fastapi/encoders.py | 343 + .../fastapi/exception_handlers.py | 34 + .../Lib/site-packages/fastapi/exceptions.py | 176 + ocr/.venv/Lib/site-packages/fastapi/logger.py | 3 + .../fastapi/middleware/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 244 bytes .../__pycache__/cors.cpython-310.pyc | Bin 0 -> 249 bytes .../__pycache__/gzip.cpython-310.pyc | Bin 0 -> 249 bytes .../__pycache__/httpsredirect.cpython-310.pyc | Bin 0 -> 276 bytes .../__pycache__/trustedhost.cpython-310.pyc | Bin 0 -> 270 bytes .../__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 249 bytes .../site-packages/fastapi/middleware/cors.py | 1 + .../site-packages/fastapi/middleware/gzip.py | 1 + .../fastapi/middleware/httpsredirect.py | 3 + .../fastapi/middleware/trustedhost.py | 3 + .../site-packages/fastapi/middleware/wsgi.py | 1 + .../site-packages/fastapi/openapi/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 344 bytes .../openapi/__pycache__/docs.cpython-310.pyc | Bin 0 -> 9578 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 16739 bytes .../openapi/__pycache__/utils.cpython-310.pyc | Bin 0 -> 11975 bytes .../fastapi/openapi/constants.py | 3 + .../Lib/site-packages/fastapi/openapi/docs.py | 344 + .../site-packages/fastapi/openapi/models.py | 445 + .../site-packages/fastapi/openapi/utils.py | 548 + .../site-packages/fastapi/param_functions.py | 2360 +++++ ocr/.venv/Lib/site-packages/fastapi/params.py | 782 ++ ocr/.venv/Lib/site-packages/fastapi/py.typed | 0 .../Lib/site-packages/fastapi/requests.py | 2 + .../Lib/site-packages/fastapi/responses.py | 48 + .../Lib/site-packages/fastapi/routing.py | 4437 +++++++++ .../fastapi/security/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 826 bytes .../__pycache__/api_key.cpython-310.pyc | Bin 0 -> 7576 bytes .../security/__pycache__/base.cpython-310.pyc | Bin 0 -> 475 bytes .../security/__pycache__/http.cpython-310.pyc | Bin 0 -> 10859 bytes .../__pycache__/oauth2.cpython-310.pyc | Bin 0 -> 15503 bytes .../open_id_connect_url.cpython-310.pyc | Bin 0 -> 2757 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 509 bytes .../site-packages/fastapi/security/api_key.py | 301 + .../site-packages/fastapi/security/base.py | 6 + .../site-packages/fastapi/security/http.py | 420 + .../site-packages/fastapi/security/oauth2.py | 638 ++ .../fastapi/security/open_id_connect_url.py | 84 + .../site-packages/fastapi/security/utils.py | 10 + .../Lib/site-packages/fastapi/staticfiles.py | 1 + .../Lib/site-packages/fastapi/templating.py | 1 + .../Lib/site-packages/fastapi/testclient.py | 1 + ocr/.venv/Lib/site-packages/fastapi/types.py | 10 + ocr/.venv/Lib/site-packages/fastapi/utils.py | 220 + .../Lib/site-packages/fastapi/websockets.py | 3 + .../site-packages/google/_upb/_message.pyd | Bin 0 -> 713235 bytes .../annotations_pb2.cpython-310.pyc | Bin 0 -> 1377 bytes .../api/__pycache__/auth_pb2.cpython-310.pyc | Bin 0 -> 2053 bytes .../__pycache__/backend_pb2.cpython-310.pyc | Bin 0 -> 2090 bytes .../__pycache__/billing_pb2.cpython-310.pyc | Bin 0 -> 1370 bytes .../__pycache__/client_pb2.cpython-310.pyc | Bin 0 -> 6285 bytes .../config_change_pb2.cpython-310.pyc | Bin 0 -> 1551 bytes .../__pycache__/consumer_pb2.cpython-310.pyc | Bin 0 -> 1499 bytes .../__pycache__/context_pb2.cpython-310.pyc | Bin 0 -> 1405 bytes .../__pycache__/control_pb2.cpython-310.pyc | Bin 0 -> 1347 bytes .../distribution_pb2.cpython-310.pyc | Bin 0 -> 2640 bytes .../documentation_pb2.cpython-310.pyc | Bin 0 -> 1655 bytes .../__pycache__/endpoint_pb2.cpython-310.pyc | Bin 0 -> 1247 bytes .../error_reason_pb2.cpython-310.pyc | Bin 0 -> 2146 bytes .../field_behavior_pb2.cpython-310.pyc | Bin 0 -> 1628 bytes .../field_info_pb2.cpython-310.pyc | Bin 0 -> 1693 bytes .../api/__pycache__/http_pb2.cpython-310.pyc | Bin 0 -> 1630 bytes .../__pycache__/httpbody_pb2.cpython-310.pyc | Bin 0 -> 1329 bytes .../api/__pycache__/label_pb2.cpython-310.pyc | Bin 0 -> 1344 bytes .../launch_stage_pb2.cpython-310.pyc | Bin 0 -> 1288 bytes .../api/__pycache__/log_pb2.cpython-310.pyc | Bin 0 -> 1366 bytes .../__pycache__/logging_pb2.cpython-310.pyc | Bin 0 -> 1438 bytes .../__pycache__/metric_pb2.cpython-310.pyc | Bin 0 -> 3177 bytes .../monitored_resource_pb2.cpython-310.pyc | Bin 0 -> 2398 bytes .../monitoring_pb2.cpython-310.pyc | Bin 0 -> 1487 bytes .../__pycache__/policy_pb2.cpython-310.pyc | Bin 0 -> 1657 bytes .../api/__pycache__/quota_pb2.cpython-310.pyc | Bin 0 -> 1935 bytes .../__pycache__/resource_pb2.cpython-310.pyc | Bin 0 -> 2146 bytes .../__pycache__/routing_pb2.cpython-310.pyc | Bin 0 -> 1531 bytes .../__pycache__/service_pb2.cpython-310.pyc | Bin 0 -> 4225 bytes .../source_info_pb2.cpython-310.pyc | Bin 0 -> 1336 bytes .../system_parameter_pb2.cpython-310.pyc | Bin 0 -> 1567 bytes .../api/__pycache__/usage_pb2.cpython-310.pyc | Bin 0 -> 1399 bytes .../visibility_pb2.cpython-310.pyc | Bin 0 -> 1985 bytes .../google/api/annotations.proto | 31 + .../google/api/annotations_pb2.py | 48 + .../google/api/annotations_pb2.pyi | 23 + .../Lib/site-packages/google/api/auth.proto | 237 + .../Lib/site-packages/google/api/auth_pb2.py | 55 + .../Lib/site-packages/google/api/auth_pb2.pyi | 120 + .../site-packages/google/api/backend.proto | 185 + .../site-packages/google/api/backend_pb2.py | 59 + .../site-packages/google/api/backend_pb2.pyi | 102 + .../site-packages/google/api/billing.proto | 77 + .../site-packages/google/api/billing_pb2.py | 47 + .../site-packages/google/api/billing_pb2.pyi | 50 + .../Lib/site-packages/google/api/client.proto | 486 + .../site-packages/google/api/client_pb2.py | 103 + .../site-packages/google/api/client_pb2.pyi | 404 + .../google/api/config_change.proto | 84 + .../google/api/config_change_pb2.py | 51 + .../google/api/config_change_pb2.pyi | 65 + .../site-packages/google/api/consumer.proto | 82 + .../site-packages/google/api/consumer_pb2.py | 49 + .../site-packages/google/api/consumer_pb2.pyi | 62 + .../site-packages/google/api/context.proto | 92 + .../site-packages/google/api/context_pb2.py | 47 + .../site-packages/google/api/context_pb2.pyi | 60 + .../site-packages/google/api/control.proto | 41 + .../site-packages/google/api/control_pb2.py | 47 + .../site-packages/google/api/control_pb2.pyi | 42 + .../google/api/distribution.proto | 213 + .../google/api/distribution_pb2.py | 62 + .../google/api/distribution_pb2.pyi | 144 + .../google/api/documentation.proto | 168 + .../google/api/documentation_pb2.py | 51 + .../google/api/documentation_pb2.pyi | 86 + .../site-packages/google/api/endpoint.proto | 69 + .../site-packages/google/api/endpoint_pb2.py | 45 + .../site-packages/google/api/endpoint_pb2.pyi | 41 + .../google/api/error_reason.proto | 622 ++ .../google/api/error_reason_pb2.py | 47 + .../google/api/error_reason_pb2.pyi | 90 + .../google/api/field_behavior.proto | 104 + .../google/api/field_behavior_pb2.py | 51 + .../google/api/field_behavior_pb2.pyi | 45 + .../site-packages/google/api/field_info.proto | 106 + .../google/api/field_info_pb2.py | 53 + .../google/api/field_info_pb2.pyi | 60 + .../Lib/site-packages/google/api/http.proto | 370 + .../Lib/site-packages/google/api/http_pb2.py | 49 + .../Lib/site-packages/google/api/http_pb2.pyi | 94 + .../site-packages/google/api/httpbody.proto | 80 + .../site-packages/google/api/httpbody_pb2.py | 47 + .../site-packages/google/api/httpbody_pb2.pyi | 41 + .../Lib/site-packages/google/api/label.proto | 47 + .../Lib/site-packages/google/api/label_pb2.py | 47 + .../site-packages/google/api/label_pb2.pyi | 47 + .../google/api/launch_stage.proto | 72 + .../google/api/launch_stage_pb2.py | 47 + .../google/api/launch_stage_pb2.pyi | 40 + .../Lib/site-packages/google/api/log.proto | 54 + .../Lib/site-packages/google/api/log_pb2.py | 47 + .../Lib/site-packages/google/api/log_pb2.pyi | 46 + .../site-packages/google/api/logging.proto | 81 + .../site-packages/google/api/logging_pb2.py | 47 + .../site-packages/google/api/logging_pb2.pyi | 57 + .../Lib/site-packages/google/api/metric.proto | 287 + .../site-packages/google/api/metric_pb2.py | 73 + .../site-packages/google/api/metric_pb2.pyi | 185 + .../google/api/monitored_resource.proto | 129 + .../google/api/monitored_resource_pb2.py | 65 + .../google/api/monitored_resource_pb2.pyi | 103 + .../site-packages/google/api/monitoring.proto | 107 + .../google/api/monitoring_pb2.py | 49 + .../google/api/monitoring_pb2.pyi | 57 + .../Lib/site-packages/google/api/policy.proto | 82 + .../site-packages/google/api/policy_pb2.py | 49 + .../site-packages/google/api/policy_pb2.pyi | 57 + .../Lib/site-packages/google/api/quota.proto | 184 + .../Lib/site-packages/google/api/quota_pb2.py | 57 + .../site-packages/google/api/quota_pb2.pyi | 116 + .../site-packages/google/api/resource.proto | 242 + .../site-packages/google/api/resource_pb2.py | 53 + .../site-packages/google/api/resource_pb2.pyi | 93 + .../site-packages/google/api/routing.proto | 461 + .../site-packages/google/api/routing_pb2.py | 49 + .../site-packages/google/api/routing_pb2.pyi | 49 + .../site-packages/google/api/service.proto | 191 + .../site-packages/google/api/service_pb2.py | 69 + .../site-packages/google/api/service_pb2.pyi | 169 + .../google/api/source_info.proto | 31 + .../google/api/source_info_pb2.py | 49 + .../google/api/source_info_pb2.pyi | 34 + .../google/api/system_parameter.proto | 96 + .../google/api/system_parameter_pb2.py | 51 + .../google/api/system_parameter_pb2.pyi | 60 + .../Lib/site-packages/google/api/usage.proto | 96 + .../Lib/site-packages/google/api/usage_pb2.py | 47 + .../site-packages/google/api/usage_pb2.pyi | 55 + .../site-packages/google/api/visibility.proto | 112 + .../google/api/visibility_pb2.py | 51 + .../google/api/visibility_pb2.pyi | 56 + .../site-packages/google/api_core/__init__.py | 40 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 676 bytes .../_python_package_support.cpython-310.pyc | Bin 0 -> 6840 bytes .../_python_version_support.cpython-310.pyc | Bin 0 -> 6624 bytes .../_rest_streaming_base.cpython-310.pyc | Bin 0 -> 2928 bytes .../api_core/__pycache__/bidi.cpython-310.pyc | Bin 0 -> 20254 bytes .../__pycache__/bidi_async.cpython-310.pyc | Bin 0 -> 6515 bytes .../__pycache__/bidi_base.cpython-310.pyc | Bin 0 -> 3140 bytes .../__pycache__/client_info.cpython-310.pyc | Bin 0 -> 3239 bytes .../client_logging.cpython-310.pyc | Bin 0 -> 4087 bytes .../client_options.cpython-310.pyc | Bin 0 -> 6251 bytes .../datetime_helpers.cpython-310.pyc | Bin 0 -> 8099 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 21220 bytes .../extended_operation.cpython-310.pyc | Bin 0 -> 7086 bytes .../general_helpers.cpython-310.pyc | Bin 0 -> 1835 bytes .../__pycache__/grpc_helpers.cpython-310.pyc | Bin 0 -> 19958 bytes .../grpc_helpers_async.cpython-310.pyc | Bin 0 -> 13341 bytes .../api_core/__pycache__/iam.cpython-310.pyc | Bin 0 -> 12117 bytes .../__pycache__/operation.cpython-310.pyc | Bin 0 -> 11533 bytes .../operation_async.cpython-310.pyc | Bin 0 -> 6891 bytes .../__pycache__/page_iterator.cpython-310.pyc | Bin 0 -> 17852 bytes .../page_iterator_async.cpython-310.pyc | Bin 0 -> 8850 bytes .../__pycache__/path_template.cpython-310.pyc | Bin 0 -> 9351 bytes .../protobuf_helpers.cpython-310.pyc | Bin 0 -> 9294 bytes .../__pycache__/rest_helpers.cpython-310.pyc | Bin 0 -> 3292 bytes .../rest_streaming.cpython-310.pyc | Bin 0 -> 2129 bytes .../rest_streaming_async.cpython-310.pyc | Bin 0 -> 2930 bytes .../__pycache__/retry_async.cpython-310.pyc | Bin 0 -> 593 bytes .../__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8493 bytes .../__pycache__/universe.cpython-310.pyc | Bin 0 -> 2700 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 207 bytes .../version_header.cpython-310.pyc | Bin 0 -> 686 bytes .../api_core/_python_package_support.py | 234 + .../api_core/_python_version_support.py | 269 + .../google/api_core/_rest_streaming_base.py | 118 + .../Lib/site-packages/google/api_core/bidi.py | 735 ++ .../google/api_core/bidi_async.py | 244 + .../google/api_core/bidi_base.py | 88 + .../google/api_core/client_info.py | 114 + .../google/api_core/client_logging.py | 144 + .../google/api_core/client_options.py | 160 + .../google/api_core/datetime_helpers.py | 298 + .../google/api_core/exceptions.py | 670 ++ .../google/api_core/extended_operation.py | 225 + .../google/api_core/future/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 339 bytes .../__pycache__/_helpers.cpython-310.pyc | Bin 0 -> 871 bytes .../__pycache__/async_future.cpython-310.pyc | Bin 0 -> 5395 bytes .../future/__pycache__/base.cpython-310.pyc | Bin 0 -> 1747 bytes .../__pycache__/polling.cpython-310.pyc | Bin 0 -> 13073 bytes .../google/api_core/future/_helpers.py | 39 + .../google/api_core/future/async_future.py | 162 + .../google/api_core/future/base.py | 64 + .../google/api_core/future/polling.py | 323 + .../google/api_core/gapic_v1/__init__.py | 29 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 471 bytes .../__pycache__/client_info.cpython-310.pyc | Bin 0 -> 2236 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 5344 bytes .../__pycache__/config_async.cpython-310.pyc | Bin 0 -> 1406 bytes .../__pycache__/method.cpython-310.pyc | Bin 0 -> 8118 bytes .../__pycache__/method_async.cpython-310.pyc | Bin 0 -> 1463 bytes .../routing_header.cpython-310.pyc | Bin 0 -> 2689 bytes .../google/api_core/gapic_v1/client_info.py | 58 + .../google/api_core/gapic_v1/config.py | 175 + .../google/api_core/gapic_v1/config_async.py | 42 + .../google/api_core/gapic_v1/method.py | 253 + .../google/api_core/gapic_v1/method_async.py | 59 + .../api_core/gapic_v1/routing_header.py | 87 + .../google/api_core/general_helpers.py | 52 + .../google/api_core/grpc_helpers.py | 649 ++ .../google/api_core/grpc_helpers_async.py | 348 + .../Lib/site-packages/google/api_core/iam.py | 427 + .../google/api_core/operation.py | 365 + .../google/api_core/operation_async.py | 225 + .../google/api_core/operations_v1/__init__.py | 40 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 998 bytes ...act_operations_base_client.cpython-310.pyc | Bin 0 -> 12699 bytes ...abstract_operations_client.cpython-310.pyc | Bin 0 -> 13045 bytes .../operations_async_client.cpython-310.pyc | Bin 0 -> 12266 bytes .../operations_client.cpython-310.pyc | Bin 0 -> 12814 bytes .../operations_client_config.cpython-310.pyc | Bin 0 -> 955 bytes ...erations_rest_client_async.cpython-310.pyc | Bin 0 -> 11193 bytes .../__pycache__/pagers.cpython-310.pyc | Bin 0 -> 2292 bytes .../__pycache__/pagers_async.cpython-310.pyc | Bin 0 -> 2531 bytes .../__pycache__/pagers_base.cpython-310.pyc | Bin 0 -> 2605 bytes .../abstract_operations_base_client.py | 370 + .../abstract_operations_client.py | 387 + .../operations_v1/operations_async_client.py | 364 + .../operations_v1/operations_client.py | 378 + .../operations_v1/operations_client_config.py | 60 + .../operations_rest_client_async.py | 345 + .../google/api_core/operations_v1/pagers.py | 67 + .../api_core/operations_v1/pagers_async.py | 71 + .../api_core/operations_v1/pagers_base.py | 73 + .../operations_v1/transports/__init__.py | 39 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 718 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 8109 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 13895 bytes .../__pycache__/rest_asyncio.cpython-310.pyc | Bin 0 -> 15034 bytes .../api_core/operations_v1/transports/base.py | 300 + .../api_core/operations_v1/transports/rest.py | 492 + .../operations_v1/transports/rest_asyncio.py | 581 ++ .../google/api_core/page_iterator.py | 571 ++ .../google/api_core/page_iterator_async.py | 285 + .../google/api_core/path_template.py | 346 + .../google/api_core/protobuf_helpers.py | 371 + .../site-packages/google/api_core/py.typed | 2 + .../google/api_core/rest_helpers.py | 109 + .../google/api_core/rest_streaming.py | 66 + .../google/api_core/rest_streaming_async.py | 89 + .../google/api_core/retry/__init__.py | 52 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1070 bytes .../__pycache__/retry_base.cpython-310.pyc | Bin 0 -> 10847 bytes .../retry_streaming.cpython-310.pyc | Bin 0 -> 9598 bytes .../retry_streaming_async.cpython-310.pyc | Bin 0 -> 11211 bytes .../__pycache__/retry_unary.cpython-310.pyc | Bin 0 -> 12360 bytes .../retry_unary_async.cpython-310.pyc | Bin 0 -> 8350 bytes .../google/api_core/retry/retry_base.py | 370 + .../google/api_core/retry/retry_streaming.py | 264 + .../api_core/retry/retry_streaming_async.py | 328 + .../google/api_core/retry/retry_unary.py | 302 + .../api_core/retry/retry_unary_async.py | 239 + .../google/api_core/retry_async.py | 34 + .../site-packages/google/api_core/timeout.py | 294 + .../site-packages/google/api_core/universe.py | 82 + .../site-packages/google/api_core/version.py | 15 + .../google/api_core/version_header.py | 29 + .../Lib/site-packages/google/auth/__init__.py | 53 + .../auth/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1127 bytes .../__pycache__/_cloud_sdk.cpython-310.pyc | Bin 0 -> 3446 bytes .../__pycache__/_constants.cpython-310.pyc | Bin 0 -> 738 bytes .../_credentials_async.cpython-310.pyc | Bin 0 -> 6679 bytes .../_credentials_base.cpython-310.pyc | Bin 0 -> 2592 bytes .../auth/__pycache__/_default.cpython-310.pyc | Bin 0 -> 24054 bytes .../_default_async.cpython-310.pyc | Bin 0 -> 8845 bytes .../_exponential_backoff.cpython-310.pyc | Bin 0 -> 4745 bytes .../auth/__pycache__/_helpers.cpython-310.pyc | Bin 0 -> 15220 bytes .../__pycache__/_jwt_async.cpython-310.pyc | Bin 0 -> 5749 bytes .../__pycache__/_oauth2client.cpython-310.pyc | Bin 0 -> 4971 bytes .../_refresh_worker.cpython-310.pyc | Bin 0 -> 3525 bytes .../_service_account_info.cpython-310.pyc | Bin 0 -> 2376 bytes .../auth/__pycache__/api_key.cpython-310.pyc | Bin 0 -> 2712 bytes .../__pycache__/app_engine.cpython-310.pyc | Bin 0 -> 5385 bytes .../auth/__pycache__/aws.cpython-310.pyc | Bin 0 -> 24835 bytes .../__pycache__/credentials.cpython-310.pyc | Bin 0 -> 23632 bytes .../__pycache__/downscoped.cpython-310.pyc | Bin 0 -> 19647 bytes .../environment_vars.cpython-310.pyc | Bin 0 -> 883 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 4396 bytes .../external_account.cpython-310.pyc | Bin 0 -> 22422 bytes ...al_account_authorized_user.cpython-310.pyc | Bin 0 -> 15288 bytes .../auth/__pycache__/iam.cpython-310.pyc | Bin 0 -> 4145 bytes .../__pycache__/identity_pool.cpython-310.pyc | Bin 0 -> 18491 bytes .../impersonated_credentials.cpython-310.pyc | Bin 0 -> 21270 bytes .../auth/__pycache__/jwt.cpython-310.pyc | Bin 0 -> 26091 bytes .../auth/__pycache__/metrics.cpython-310.pyc | Bin 0 -> 3437 bytes .../__pycache__/pluggable.cpython-310.pyc | Bin 0 -> 13279 bytes .../auth/__pycache__/version.cpython-310.pyc | Bin 0 -> 203 bytes .../site-packages/google/auth/_cloud_sdk.py | 153 + .../site-packages/google/auth/_constants.py | 5 + .../google/auth/_credentials_async.py | 171 + .../google/auth/_credentials_base.py | 75 + .../Lib/site-packages/google/auth/_default.py | 739 ++ .../google/auth/_default_async.py | 288 + .../google/auth/_exponential_backoff.py | 164 + .../Lib/site-packages/google/auth/_helpers.py | 554 ++ .../site-packages/google/auth/_jwt_async.py | 164 + .../google/auth/_oauth2client.py | 167 + .../google/auth/_refresh_worker.py | 109 + .../google/auth/_service_account_info.py | 80 + .../site-packages/google/auth/aio/__init__.py | 25 + .../aio/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 410 bytes .../aio/__pycache__/_helpers.cpython-310.pyc | Bin 0 -> 1491 bytes .../__pycache__/credentials.cpython-310.pyc | Bin 0 -> 5676 bytes .../site-packages/google/auth/aio/_helpers.py | 62 + .../google/auth/aio/credentials.py | 143 + .../google/auth/aio/transport/__init__.py | 144 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4533 bytes .../__pycache__/aiohttp.cpython-310.pyc | Bin 0 -> 6757 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 8377 bytes .../google/auth/aio/transport/aiohttp.py | 190 + .../google/auth/aio/transport/sessions.py | 268 + .../Lib/site-packages/google/auth/api_key.py | 76 + .../site-packages/google/auth/app_engine.py | 180 + .../Lib/site-packages/google/auth/aws.py | 861 ++ .../google/auth/compute_engine/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 489 bytes .../__pycache__/_metadata.cpython-310.pyc | Bin 0 -> 9608 bytes .../__pycache__/credentials.cpython-310.pyc | Bin 0 -> 15970 bytes .../google/auth/compute_engine/_metadata.py | 379 + .../google/auth/compute_engine/credentials.py | 558 ++ .../site-packages/google/auth/credentials.py | 665 ++ .../google/auth/crypt/__init__.py | 98 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2502 bytes .../_cryptography_rsa.cpython-310.pyc | Bin 0 -> 5187 bytes .../__pycache__/_helpers.cpython-310.pyc | Bin 0 -> 188 bytes .../__pycache__/_python_rsa.cpython-310.pyc | Bin 0 -> 5795 bytes .../crypt/__pycache__/base.cpython-310.pyc | Bin 0 -> 4150 bytes .../crypt/__pycache__/es256.cpython-310.pyc | Bin 0 -> 5702 bytes .../crypt/__pycache__/rsa.cpython-310.pyc | Bin 0 -> 429 bytes .../google/auth/crypt/_cryptography_rsa.py | 151 + .../google/auth/crypt/_helpers.py | 0 .../google/auth/crypt/_python_rsa.py | 175 + .../site-packages/google/auth/crypt/base.py | 127 + .../site-packages/google/auth/crypt/es256.py | 175 + .../site-packages/google/auth/crypt/rsa.py | 30 + .../site-packages/google/auth/downscoped.py | 512 + .../google/auth/environment_vars.py | 88 + .../site-packages/google/auth/exceptions.py | 108 + .../google/auth/external_account.py | 708 ++ .../auth/external_account_authorized_user.py | 433 + .../Lib/site-packages/google/auth/iam.py | 136 + .../google/auth/identity_pool.py | 552 + .../google/auth/impersonated_credentials.py | 705 ++ .../Lib/site-packages/google/auth/jwt.py | 878 ++ .../Lib/site-packages/google/auth/metrics.py | 154 + .../site-packages/google/auth/pluggable.py | 453 + .../Lib/site-packages/google/auth/py.typed | 2 + .../google/auth/transport/__init__.py | 104 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3259 bytes .../_aiohttp_requests.cpython-310.pyc | Bin 0 -> 12021 bytes .../_custom_tls_signer.cpython-310.pyc | Bin 0 -> 6134 bytes .../__pycache__/_http_client.cpython-310.pyc | Bin 0 -> 3465 bytes .../__pycache__/_mtls_helper.cpython-310.pyc | Bin 0 -> 12909 bytes .../_requests_base.cpython-310.pyc | Bin 0 -> 1466 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 12056 bytes .../__pycache__/mtls.cpython-310.pyc | Bin 0 -> 4136 bytes .../__pycache__/requests.cpython-310.pyc | Bin 0 -> 18164 bytes .../__pycache__/urllib3.cpython-310.pyc | Bin 0 -> 13359 bytes .../auth/transport/_aiohttp_requests.py | 398 + .../auth/transport/_custom_tls_signer.py | 283 + .../google/auth/transport/_http_client.py | 115 + .../google/auth/transport/_mtls_helper.py | 446 + .../google/auth/transport/_requests_base.py | 53 + .../google/auth/transport/grpc.py | 337 + .../google/auth/transport/mtls.py | 129 + .../google/auth/transport/requests.py | 597 ++ .../google/auth/transport/urllib3.py | 449 + .../Lib/site-packages/google/auth/version.py | 15 + .../common_resources_pb2.cpython-310.pyc | Bin 0 -> 1764 bytes .../extended_operations_pb2.cpython-310.pyc | Bin 0 -> 1816 bytes .../google/cloud/common_resources.proto | 52 + .../google/cloud/common_resources_pb2.py | 47 + .../google/cloud/common_resources_pb2.pyi | 20 + .../google/cloud/extended_operations.proto | 150 + .../google/cloud/extended_operations_pb2.py | 49 + .../google/cloud/extended_operations_pb2.pyi | 45 + .../__pycache__/locations_pb2.cpython-310.pyc | Bin 0 -> 3070 bytes .../google/cloud/location/locations.proto | 108 + .../google/cloud/location/locations_pb2.py | 75 + .../google/cloud/location/locations_pb2.pyi | 95 + .../google/cloud/vision/__init__.py | 213 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3952 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 216 bytes .../google/cloud/vision/gapic_version.py | 16 + .../google/cloud/vision/py.typed | 2 + .../google/cloud/vision_helpers/__init__.py | 87 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2977 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 2749 bytes .../google/cloud/vision_helpers/decorators.py | 122 + .../google/cloud/vision_v1/__init__.py | 203 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4029 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 219 bytes .../cloud/vision_v1/gapic_metadata.json | 392 + .../google/cloud/vision_v1/gapic_version.py | 16 + .../google/cloud/vision_v1/py.typed | 2 + .../cloud/vision_v1/services/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../services/image_annotator/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 358 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 25980 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 38768 bytes .../services/image_annotator/async_client.py | 815 ++ .../services/image_annotator/client.py | 1256 +++ .../image_annotator/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 722 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6902 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 14394 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 15488 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 26849 bytes .../image_annotator/transports/base.py | 267 + .../image_annotator/transports/grpc.py | 421 + .../transports/grpc_asyncio.py | 490 + .../image_annotator/transports/rest.py | 933 ++ .../services/product_search/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 355 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 78650 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 90956 bytes .../__pycache__/pagers.cpython-310.pyc | Bin 0 -> 21682 bytes .../services/product_search/async_client.py | 2777 ++++++ .../services/product_search/client.py | 3193 ++++++ .../services/product_search/pagers.py | 663 ++ .../product_search/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 716 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11805 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 29868 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 32664 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 74719 bytes .../product_search/transports/base.py | 640 ++ .../product_search/transports/grpc.py | 989 ++ .../product_search/transports/grpc_asyncio.py | 1278 +++ .../product_search/transports/rest.py | 2762 +++++ .../google/cloud/vision_v1/types/__init__.py | 181 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3290 bytes .../__pycache__/geometry.cpython-310.pyc | Bin 0 -> 2970 bytes .../image_annotator.cpython-310.pyc | Bin 0 -> 57661 bytes .../product_search.cpython-310.pyc | Bin 0 -> 7623 bytes .../product_search_service.cpython-310.pyc | Bin 0 -> 33605 bytes .../text_annotation.cpython-310.pyc | Bin 0 -> 13616 bytes .../__pycache__/web_detection.cpython-310.pyc | Bin 0 -> 6165 bytes .../google/cloud/vision_v1/types/geometry.py | 128 + .../cloud/vision_v1/types/image_annotator.py | 1790 ++++ .../cloud/vision_v1/types/product_search.py | 227 + .../vision_v1/types/product_search_service.py | 1114 +++ .../cloud/vision_v1/types/text_annotation.py | 432 + .../cloud/vision_v1/types/web_detection.py | 208 + .../google/cloud/vision_v1p1beta1/__init__.py | 98 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1907 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 226 bytes .../vision_v1p1beta1/gapic_metadata.json | 43 + .../cloud/vision_v1p1beta1/gapic_version.py | 16 + .../google/cloud/vision_v1p1beta1/py.typed | 2 + .../vision_v1p1beta1/services/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../services/image_annotator/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 365 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 13553 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 25501 bytes .../services/image_annotator/async_client.py | 377 + .../services/image_annotator/client.py | 781 ++ .../image_annotator/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 729 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 5373 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 10025 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 10763 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 11307 bytes .../image_annotator/transports/base.py | 177 + .../image_annotator/transports/grpc.py | 278 + .../transports/grpc_asyncio.py | 298 + .../image_annotator/transports/rest.py | 319 + .../cloud/vision_v1p1beta1/types/__init__.py | 79 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1285 bytes .../__pycache__/geometry.cpython-310.pyc | Bin 0 -> 2262 bytes .../image_annotator.cpython-310.pyc | Bin 0 -> 35535 bytes .../text_annotation.cpython-310.pyc | Bin 0 -> 13461 bytes .../__pycache__/web_detection.cpython-310.pyc | Bin 0 -> 6148 bytes .../cloud/vision_v1p1beta1/types/geometry.py | 98 + .../vision_v1p1beta1/types/image_annotator.py | 1080 ++ .../vision_v1p1beta1/types/text_annotation.py | 417 + .../vision_v1p1beta1/types/web_detection.py | 206 + .../google/cloud/vision_v1p2beta1/__init__.py | 121 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2330 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 226 bytes .../vision_v1p2beta1/gapic_metadata.json | 58 + .../cloud/vision_v1p2beta1/gapic_version.py | 16 + .../google/cloud/vision_v1p2beta1/py.typed | 2 + .../vision_v1p2beta1/services/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../services/image_annotator/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 365 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 17345 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 29193 bytes .../services/image_annotator/async_client.py | 505 + .../services/image_annotator/client.py | 908 ++ .../image_annotator/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 729 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6020 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 11723 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 12588 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 16220 bytes .../image_annotator/transports/base.py | 207 + .../image_annotator/transports/grpc.py | 328 + .../transports/grpc_asyncio.py | 366 + .../image_annotator/transports/rest.py | 496 + .../cloud/vision_v1p2beta1/types/__init__.py | 102 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1708 bytes .../__pycache__/geometry.cpython-310.pyc | Bin 0 -> 2998 bytes .../image_annotator.cpython-310.pyc | Bin 0 -> 45567 bytes .../text_annotation.cpython-310.pyc | Bin 0 -> 13770 bytes .../__pycache__/web_detection.cpython-310.pyc | Bin 0 -> 6148 bytes .../cloud/vision_v1p2beta1/types/geometry.py | 128 + .../vision_v1p2beta1/types/image_annotator.py | 1407 +++ .../vision_v1p2beta1/types/text_annotation.py | 432 + .../vision_v1p2beta1/types/web_detection.py | 206 + .../google/cloud/vision_v1p3beta1/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3757 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 226 bytes .../vision_v1p3beta1/gapic_metadata.json | 347 + .../cloud/vision_v1p3beta1/gapic_version.py | 16 + .../google/cloud/vision_v1p3beta1/py.typed | 2 + .../vision_v1p3beta1/services/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../services/image_annotator/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 365 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 17475 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 30489 bytes .../services/image_annotator/async_client.py | 509 + .../services/image_annotator/client.py | 954 ++ .../image_annotator/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 729 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6006 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 11739 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 12590 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 16220 bytes .../image_annotator/transports/base.py | 204 + .../image_annotator/transports/grpc.py | 328 + .../transports/grpc_asyncio.py | 363 + .../image_annotator/transports/rest.py | 496 + .../services/product_search/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 362 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 73520 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 85979 bytes .../__pycache__/pagers.cpython-310.pyc | Bin 0 -> 21920 bytes .../services/product_search/async_client.py | 2581 +++++ .../services/product_search/client.py | 3000 ++++++ .../services/product_search/pagers.py | 663 ++ .../product_search/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 723 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11266 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 28020 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 30674 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 68543 bytes .../product_search/transports/base.py | 598 ++ .../product_search/transports/grpc.py | 936 ++ .../product_search/transports/grpc_asyncio.py | 1200 +++ .../product_search/transports/rest.py | 2510 +++++ .../cloud/vision_v1p3beta1/types/__init__.py | 167 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3011 bytes .../__pycache__/geometry.cpython-310.pyc | Bin 0 -> 2998 bytes .../image_annotator.cpython-310.pyc | Bin 0 -> 48002 bytes .../product_search.cpython-310.pyc | Bin 0 -> 7700 bytes .../product_search_service.cpython-310.pyc | Bin 0 -> 30761 bytes .../text_annotation.cpython-310.pyc | Bin 0 -> 13770 bytes .../__pycache__/web_detection.cpython-310.pyc | Bin 0 -> 6148 bytes .../cloud/vision_v1p3beta1/types/geometry.py | 128 + .../vision_v1p3beta1/types/image_annotator.py | 1487 +++ .../vision_v1p3beta1/types/product_search.py | 227 + .../types/product_search_service.py | 1026 ++ .../vision_v1p3beta1/types/text_annotation.py | 432 + .../vision_v1p3beta1/types/web_detection.py | 206 + .../google/cloud/vision_v1p4beta1/__init__.py | 207 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4166 bytes .../__pycache__/gapic_version.cpython-310.pyc | Bin 0 -> 226 bytes .../vision_v1p4beta1/gapic_metadata.json | 392 + .../cloud/vision_v1p4beta1/gapic_version.py | 16 + .../google/cloud/vision_v1p4beta1/py.typed | 2 + .../vision_v1p4beta1/services/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../services/image_annotator/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 365 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 24823 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 37665 bytes .../services/image_annotator/async_client.py | 757 ++ .../services/image_annotator/client.py | 1198 +++ .../image_annotator/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 729 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6613 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 14065 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 15055 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 23405 bytes .../image_annotator/transports/base.py | 246 + .../image_annotator/transports/grpc.py | 404 + .../transports/grpc_asyncio.py | 461 + .../image_annotator/transports/rest.py | 773 ++ .../services/product_search/__init__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 362 bytes .../__pycache__/async_client.cpython-310.pyc | Bin 0 -> 78074 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 90435 bytes .../__pycache__/pagers.cpython-310.pyc | Bin 0 -> 21920 bytes .../services/product_search/async_client.py | 2723 +++++ .../services/product_search/client.py | 3139 ++++++ .../services/product_search/pagers.py | 663 ++ .../product_search/transports/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 723 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11530 bytes .../__pycache__/grpc.cpython-310.pyc | Bin 0 -> 29696 bytes .../__pycache__/grpc_asyncio.cpython-310.pyc | Bin 0 -> 32399 bytes .../__pycache__/rest.cpython-310.pyc | Bin 0 -> 71922 bytes .../product_search/transports/base.py | 612 ++ .../product_search/transports/grpc.py | 974 ++ .../product_search/transports/grpc_asyncio.py | 1244 +++ .../product_search/transports/rest.py | 2644 +++++ .../cloud/vision_v1p4beta1/types/__init__.py | 185 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3414 bytes .../types/__pycache__/face.cpython-310.pyc | Bin 0 -> 2679 bytes .../__pycache__/geometry.cpython-310.pyc | Bin 0 -> 2998 bytes .../image_annotator.cpython-310.pyc | Bin 0 -> 54125 bytes .../product_search.cpython-310.pyc | Bin 0 -> 7700 bytes .../product_search_service.cpython-310.pyc | Bin 0 -> 33736 bytes .../text_annotation.cpython-310.pyc | Bin 0 -> 13770 bytes .../__pycache__/web_detection.cpython-310.pyc | Bin 0 -> 6235 bytes .../cloud/vision_v1p4beta1/types/face.py | 100 + .../cloud/vision_v1p4beta1/types/geometry.py | 128 + .../vision_v1p4beta1/types/image_annotator.py | 1677 ++++ .../vision_v1p4beta1/types/product_search.py | 227 + .../types/product_search_service.py | 1116 +++ .../vision_v1p4beta1/types/text_annotation.py | 432 + .../vision_v1p4beta1/types/web_detection.py | 208 + .../gapic_metadata_pb2.cpython-310.pyc | Bin 0 -> 2658 bytes .../gapic/metadata/gapic_metadata.proto | 98 + .../gapic/metadata/gapic_metadata_pb2.py | 67 + .../gapic/metadata/gapic_metadata_pb2.pyi | 122 + .../http_request_pb2.cpython-310.pyc | Bin 0 -> 1858 bytes .../log_severity_pb2.cpython-310.pyc | Bin 0 -> 1529 bytes .../google/logging/type/http_request.proto | 95 + .../google/logging/type/http_request_pb2.py | 49 + .../google/logging/type/http_request_pb2.pyi | 91 + .../google/logging/type/log_severity.proto | 71 + .../google/logging/type/log_severity_pb2.py | 47 + .../google/logging/type/log_severity_pb2.pyi | 42 + .../operations_grpc.cpython-310.pyc | Bin 0 -> 301 bytes .../operations_grpc_pb2.cpython-310.pyc | Bin 0 -> 552 bytes .../operations_pb2.cpython-310.pyc | Bin 0 -> 898 bytes .../operations_pb2_grpc.cpython-310.pyc | Bin 0 -> 7902 bytes .../operations_proto.cpython-310.pyc | Bin 0 -> 303 bytes .../operations_proto_pb2.cpython-310.pyc | Bin 0 -> 4399 bytes .../google/longrunning/operations_grpc.py | 20 + .../google/longrunning/operations_grpc_pb2.py | 16 + .../google/longrunning/operations_pb2.py | 45 + .../google/longrunning/operations_pb2_grpc.py | 339 + .../google/longrunning/operations_proto.proto | 246 + .../google/longrunning/operations_proto.py | 6 + .../longrunning/operations_proto_pb2.py | 97 + .../longrunning/operations_proto_pb2.pyi | 125 + .../site-packages/google/oauth2/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 815 bytes .../__pycache__/_client.cpython-310.pyc | Bin 0 -> 17719 bytes .../__pycache__/_client_async.cpython-310.pyc | Bin 0 -> 8348 bytes .../_credentials_async.cpython-310.pyc | Bin 0 -> 3598 bytes .../_id_token_async.cpython-310.pyc | Bin 0 -> 8582 bytes .../__pycache__/_reauth_async.cpython-310.pyc | Bin 0 -> 9060 bytes .../_service_account_async.cpython-310.pyc | Bin 0 -> 4651 bytes .../__pycache__/challenges.cpython-310.pyc | Bin 0 -> 8507 bytes .../__pycache__/credentials.cpython-310.pyc | Bin 0 -> 20162 bytes .../gdch_credentials.cpython-310.pyc | Bin 0 -> 7880 bytes .../__pycache__/id_token.cpython-310.pyc | Bin 0 -> 11163 bytes .../oauth2/__pycache__/reauth.cpython-310.pyc | Bin 0 -> 9842 bytes .../service_account.cpython-310.pyc | Bin 0 -> 27549 bytes .../oauth2/__pycache__/sts.cpython-310.pyc | Bin 0 -> 5340 bytes .../oauth2/__pycache__/utils.cpython-310.pyc | Bin 0 -> 5536 bytes .../webauthn_handler.cpython-310.pyc | Bin 0 -> 3115 bytes .../webauthn_handler_factory.cpython-310.pyc | Bin 0 -> 946 bytes .../webauthn_types.cpython-310.pyc | Bin 0 -> 5628 bytes .../site-packages/google/oauth2/_client.py | 625 ++ .../google/oauth2/_client_async.py | 286 + .../google/oauth2/_credentials_async.py | 118 + .../google/oauth2/_id_token_async.py | 285 + .../google/oauth2/_reauth_async.py | 328 + .../google/oauth2/_service_account_async.py | 132 + .../site-packages/google/oauth2/challenges.py | 281 + .../google/oauth2/credentials.py | 614 ++ .../google/oauth2/gdch_credentials.py | 251 + .../site-packages/google/oauth2/id_token.py | 370 + .../Lib/site-packages/google/oauth2/py.typed | 2 + .../Lib/site-packages/google/oauth2/reauth.py | 369 + .../google/oauth2/service_account.py | 881 ++ .../Lib/site-packages/google/oauth2/sts.py | 176 + .../Lib/site-packages/google/oauth2/utils.py | 168 + .../google/oauth2/webauthn_handler.py | 82 + .../google/oauth2/webauthn_handler_factory.py | 16 + .../google/oauth2/webauthn_types.py | 156 + .../site-packages/google/protobuf/__init__.py | 10 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../protobuf/__pycache__/any.cpython-310.pyc | Bin 0 -> 1160 bytes .../__pycache__/any_pb2.cpython-310.pyc | Bin 0 -> 1411 bytes .../__pycache__/api_pb2.cpython-310.pyc | Bin 0 -> 2341 bytes .../__pycache__/descriptor.cpython-310.pyc | Bin 0 -> 42330 bytes .../descriptor_database.cpython-310.pyc | Bin 0 -> 5005 bytes .../descriptor_pb2.cpython-310.pyc | Bin 0 -> 101189 bytes .../descriptor_pool.cpython-310.pyc | Bin 0 -> 36031 bytes .../__pycache__/duration.cpython-310.pyc | Bin 0 -> 2972 bytes .../__pycache__/duration_pb2.cpython-310.pyc | Bin 0 -> 1467 bytes .../__pycache__/empty_pb2.cpython-310.pyc | Bin 0 -> 1388 bytes .../field_mask_pb2.cpython-310.pyc | Bin 0 -> 1455 bytes .../__pycache__/json_format.cpython-310.pyc | Bin 0 -> 26963 bytes .../__pycache__/message.cpython-310.pyc | Bin 0 -> 13948 bytes .../message_factory.cpython-310.pyc | Bin 0 -> 6804 bytes .../__pycache__/proto.cpython-310.pyc | Bin 0 -> 3360 bytes .../__pycache__/proto_builder.cpython-310.pyc | Bin 0 -> 2932 bytes .../__pycache__/proto_json.cpython-310.pyc | Bin 0 -> 2847 bytes .../__pycache__/reflection.cpython-310.pyc | Bin 0 -> 2397 bytes .../runtime_version.cpython-310.pyc | Bin 0 -> 3405 bytes .../__pycache__/service.cpython-310.pyc | Bin 0 -> 9031 bytes .../service_reflection.cpython-310.pyc | Bin 0 -> 10431 bytes .../source_context_pb2.cpython-310.pyc | Bin 0 -> 1496 bytes .../__pycache__/struct_pb2.cpython-310.pyc | Bin 0 -> 2157 bytes .../symbol_database.cpython-310.pyc | Bin 0 -> 6994 bytes .../__pycache__/text_encoding.cpython-310.pyc | Bin 0 -> 2894 bytes .../__pycache__/text_format.cpython-310.pyc | Bin 0 -> 47703 bytes .../__pycache__/timestamp.cpython-310.pyc | Bin 0 -> 3526 bytes .../__pycache__/timestamp_pb2.cpython-310.pyc | Bin 0 -> 1477 bytes .../__pycache__/type_pb2.cpython-310.pyc | Bin 0 -> 3553 bytes .../unknown_fields.cpython-310.pyc | Bin 0 -> 3087 bytes .../__pycache__/wrappers_pb2.cpython-310.pyc | Bin 0 -> 2115 bytes .../Lib/site-packages/google/protobuf/any.py | 39 + .../site-packages/google/protobuf/any_pb2.py | 37 + .../site-packages/google/protobuf/api_pb2.py | 43 + .../google/protobuf/compiler/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../__pycache__/plugin_pb2.cpython-310.pyc | Bin 0 -> 2710 bytes .../google/protobuf/compiler/plugin_pb2.py | 46 + .../google/protobuf/descriptor.py | 1511 +++ .../google/protobuf/descriptor_database.py | 154 + .../google/protobuf/descriptor_pb2.py | 3169 ++++++ .../google/protobuf/descriptor_pool.py | 1355 +++ .../site-packages/google/protobuf/duration.py | 100 + .../google/protobuf/duration_pb2.py | 37 + .../google/protobuf/empty_pb2.py | 37 + .../google/protobuf/field_mask_pb2.py | 37 + .../google/protobuf/internal/__init__.py | 7 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../_parameterized.cpython-310.pyc | Bin 0 -> 13793 bytes .../api_implementation.cpython-310.pyc | Bin 0 -> 2518 bytes .../__pycache__/builder.cpython-310.pyc | Bin 0 -> 3523 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 22073 bytes .../__pycache__/decoder.cpython-310.pyc | Bin 0 -> 25692 bytes .../__pycache__/encoder.cpython-310.pyc | Bin 0 -> 22757 bytes .../enum_type_wrapper.cpython-310.pyc | Bin 0 -> 3703 bytes .../extension_dict.cpython-310.pyc | Bin 0 -> 5624 bytes .../__pycache__/field_mask.cpython-310.pyc | Bin 0 -> 9616 bytes .../message_listener.cpython-310.pyc | Bin 0 -> 2334 bytes .../python_edition_defaults.cpython-310.pyc | Bin 0 -> 502 bytes .../python_message.cpython-310.pyc | Bin 0 -> 42212 bytes .../testing_refleaks.cpython-310.pyc | Bin 0 -> 3525 bytes .../__pycache__/type_checkers.cpython-310.pyc | Bin 0 -> 11392 bytes .../well_known_types.cpython-310.pyc | Bin 0 -> 20687 bytes .../__pycache__/wire_format.cpython-310.pyc | Bin 0 -> 6282 bytes .../protobuf/internal/_parameterized.py | 420 + .../protobuf/internal/api_implementation.py | 142 + .../google/protobuf/internal/builder.py | 117 + .../google/protobuf/internal/containers.py | 677 ++ .../google/protobuf/internal/decoder.py | 1121 +++ .../google/protobuf/internal/encoder.py | 806 ++ .../protobuf/internal/enum_type_wrapper.py | 112 + .../protobuf/internal/extension_dict.py | 194 + .../google/protobuf/internal/field_mask.py | 310 + .../protobuf/internal/message_listener.py | 55 + .../internal/python_edition_defaults.py | 5 + .../protobuf/internal/python_message.py | 1586 +++ .../protobuf/internal/testing_refleaks.py | 119 + .../google/protobuf/internal/type_checkers.py | 408 + .../protobuf/internal/well_known_types.py | 678 ++ .../google/protobuf/internal/wire_format.py | 245 + .../google/protobuf/json_format.py | 1069 ++ .../site-packages/google/protobuf/message.py | 422 + .../google/protobuf/message_factory.py | 237 + .../site-packages/google/protobuf/proto.py | 116 + .../google/protobuf/proto_builder.py | 111 + .../google/protobuf/proto_json.py | 83 + .../google/protobuf/pyext/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../__pycache__/cpp_message.cpython-310.pyc | Bin 0 -> 1584 bytes .../google/protobuf/pyext/cpp_message.py | 49 + .../google/protobuf/reflection.py | 85 + .../google/protobuf/runtime_version.py | 124 + .../site-packages/google/protobuf/service.py | 213 + .../google/protobuf/service_reflection.py | 272 + .../google/protobuf/source_context_pb2.py | 37 + .../google/protobuf/struct_pb2.py | 47 + .../google/protobuf/symbol_database.py | 197 + .../google/protobuf/testdata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../google/protobuf/text_encoding.py | 106 + .../google/protobuf/text_format.py | 1864 ++++ .../google/protobuf/timestamp.py | 112 + .../google/protobuf/timestamp_pb2.py | 37 + .../site-packages/google/protobuf/type_pb2.py | 53 + .../google/protobuf/unknown_fields.py | 97 + .../google/protobuf/util/__init__.py | 0 .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../google/protobuf/wrappers_pb2.py | 53 + .../rpc/__pycache__/code_pb2.cpython-310.pyc | Bin 0 -> 1420 bytes .../error_details_pb2.cpython-310.pyc | Bin 0 -> 3456 bytes .../rpc/__pycache__/http_pb2.cpython-310.pyc | Bin 0 -> 1453 bytes .../__pycache__/status_pb2.cpython-310.pyc | Bin 0 -> 1303 bytes .../Lib/site-packages/google/rpc/code.proto | 186 + .../Lib/site-packages/google/rpc/code_pb2.py | 45 + .../Lib/site-packages/google/rpc/code_pb2.pyi | 58 + .../attribute_context_pb2.cpython-310.pyc | Bin 0 -> 4583 bytes .../audit_context_pb2.cpython-310.pyc | Bin 0 -> 1511 bytes .../rpc/context/attribute_context.proto | 345 + .../rpc/context/attribute_context_pb2.py | 86 + .../rpc/context/attribute_context_pb2.pyi | 309 + .../google/rpc/context/audit_context.proto | 48 + .../google/rpc/context/audit_context_pb2.py | 49 + .../google/rpc/context/audit_context_pb2.pyi | 51 + .../google/rpc/error_details.proto | 363 + .../google/rpc/error_details_pb2.py | 85 + .../google/rpc/error_details_pb2.pyi | 246 + .../Lib/site-packages/google/rpc/http.proto | 64 + .../Lib/site-packages/google/rpc/http_pb2.py | 49 + .../Lib/site-packages/google/rpc/http_pb2.pyi | 71 + .../Lib/site-packages/google/rpc/status.proto | 49 + .../site-packages/google/rpc/status_pb2.py | 47 + .../site-packages/google/rpc/status_pb2.pyi | 41 + .../calendar_period_pb2.cpython-310.pyc | Bin 0 -> 1350 bytes .../__pycache__/color_pb2.cpython-310.pyc | Bin 0 -> 1331 bytes .../type/__pycache__/date_pb2.cpython-310.pyc | Bin 0 -> 1170 bytes .../__pycache__/datetime_pb2.cpython-310.pyc | Bin 0 -> 1583 bytes .../__pycache__/dayofweek_pb2.cpython-310.pyc | Bin 0 -> 1303 bytes .../__pycache__/decimal_pb2.cpython-310.pyc | Bin 0 -> 1176 bytes .../type/__pycache__/expr_pb2.cpython-310.pyc | Bin 0 -> 1196 bytes .../__pycache__/fraction_pb2.cpython-310.pyc | Bin 0 -> 1210 bytes .../__pycache__/interval_pb2.cpython-310.pyc | Bin 0 -> 1379 bytes .../__pycache__/latlng_pb2.cpython-310.pyc | Bin 0 -> 1187 bytes .../localized_text_pb2.cpython-310.pyc | Bin 0 -> 1275 bytes .../__pycache__/money_pb2.cpython-310.pyc | Bin 0 -> 1192 bytes .../__pycache__/month_pb2.cpython-310.pyc | Bin 0 -> 1303 bytes .../phone_number_pb2.cpython-310.pyc | Bin 0 -> 1433 bytes .../postal_address_pb2.cpython-310.pyc | Bin 0 -> 1473 bytes .../quaternion_pb2.cpython-310.pyc | Bin 0 -> 1242 bytes .../__pycache__/timeofday_pb2.cpython-310.pyc | Bin 0 -> 1251 bytes .../google/type/calendar_period.proto | 56 + .../google/type/calendar_period_pb2.py | 47 + .../google/type/calendar_period_pb2.pyi | 40 + .../Lib/site-packages/google/type/color.proto | 174 + .../site-packages/google/type/color_pb2.py | 47 + .../site-packages/google/type/color_pb2.pyi | 42 + .../Lib/site-packages/google/type/date.proto | 52 + .../Lib/site-packages/google/type/date_pb2.py | 45 + .../site-packages/google/type/date_pb2.pyi | 36 + .../site-packages/google/type/datetime.proto | 104 + .../site-packages/google/type/datetime_pb2.py | 51 + .../google/type/datetime_pb2.pyi | 77 + .../site-packages/google/type/dayofweek.proto | 50 + .../google/type/dayofweek_pb2.py | 47 + .../google/type/dayofweek_pb2.pyi | 40 + .../site-packages/google/type/decimal.proto | 95 + .../site-packages/google/type/decimal_pb2.py | 45 + .../site-packages/google/type/decimal_pb2.pyi | 27 + .../Lib/site-packages/google/type/expr.proto | 73 + .../Lib/site-packages/google/type/expr_pb2.py | 45 + .../site-packages/google/type/expr_pb2.pyi | 39 + .../site-packages/google/type/fraction.proto | 33 + .../site-packages/google/type/fraction_pb2.py | 47 + .../google/type/fraction_pb2.pyi | 31 + .../site-packages/google/type/interval.proto | 46 + .../site-packages/google/type/interval_pb2.py | 49 + .../google/type/interval_pb2.pyi | 36 + .../site-packages/google/type/latlng.proto | 37 + .../site-packages/google/type/latlng_pb2.py | 45 + .../site-packages/google/type/latlng_pb2.pyi | 31 + .../google/type/localized_text.proto | 36 + .../google/type/localized_text_pb2.py | 47 + .../google/type/localized_text_pb2.pyi | 31 + .../Lib/site-packages/google/type/money.proto | 42 + .../site-packages/google/type/money_pb2.py | 45 + .../site-packages/google/type/money_pb2.pyi | 36 + .../Lib/site-packages/google/type/month.proto | 65 + .../site-packages/google/type/month_pb2.py | 45 + .../site-packages/google/type/month_pb2.pyi | 50 + .../google/type/phone_number.proto | 113 + .../google/type/phone_number_pb2.py | 49 + .../google/type/phone_number_pb2.pyi | 48 + .../google/type/postal_address.proto | 134 + .../google/type/postal_address_pb2.py | 47 + .../google/type/postal_address_pb2.pyi | 74 + .../google/type/quaternion.proto | 94 + .../google/type/quaternion_pb2.py | 47 + .../google/type/quaternion_pb2.pyi | 39 + .../site-packages/google/type/timeofday.proto | 44 + .../google/type/timeofday_pb2.py | 47 + .../google/type/timeofday_pb2.pyi | 39 + .../INSTALLER | 1 + .../google_api_core-2.28.1.dist-info/METADATA | 79 + .../google_api_core-2.28.1.dist-info/RECORD | 133 + .../google_api_core-2.28.1.dist-info/WHEEL | 5 + .../licenses/LICENSE | 202 + .../top_level.txt | 1 + .../google_auth-2.43.0.dist-info/INSTALLER | 1 + .../google_auth-2.43.0.dist-info/METADATA | 181 + .../google_auth-2.43.0.dist-info/RECORD | 154 + .../google_auth-2.43.0.dist-info/WHEEL | 6 + .../licenses/LICENSE | 201 + .../top_level.txt | 1 + .../INSTALLER | 1 + .../LICENSE | 202 + .../METADATA | 137 + .../RECORD | 254 + .../REQUESTED | 0 .../google_cloud_vision-3.7.4.dist-info/WHEEL | 6 + .../top_level.txt | 1 + .../INSTALLER | 1 + .../METADATA | 227 + .../RECORD | 268 + .../WHEEL | 5 + .../licenses/LICENSE | 202 + .../top_level.txt | 1 + ocr/.venv/Lib/site-packages/grpc/__init__.py | 2347 +++++ .../grpc/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 80490 bytes .../grpc/__pycache__/_auth.cpython-310.pyc | Bin 0 -> 2288 bytes .../grpc/__pycache__/_channel.cpython-310.pyc | Bin 0 -> 54937 bytes .../grpc/__pycache__/_common.cpython-310.pyc | Bin 0 -> 5863 bytes .../__pycache__/_compression.cpython-310.pyc | Bin 0 -> 1522 bytes .../_grpcio_metadata.cpython-310.pyc | Bin 0 -> 205 bytes .../__pycache__/_interceptor.cpython-310.pyc | Bin 0 -> 18726 bytes .../_observability.cpython-310.pyc | Bin 0 -> 11108 bytes .../_plugin_wrapping.cpython-310.pyc | Bin 0 -> 3639 bytes .../_runtime_protos.cpython-310.pyc | Bin 0 -> 5159 bytes .../grpc/__pycache__/_server.cpython-310.pyc | Bin 0 -> 39036 bytes .../__pycache__/_simple_stubs.cpython-310.pyc | Bin 0 -> 18684 bytes .../grpc/__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1528 bytes .../__pycache__/_utilities.cpython-310.pyc | Bin 0 -> 6895 bytes ocr/.venv/Lib/site-packages/grpc/_auth.py | 80 + ocr/.venv/Lib/site-packages/grpc/_channel.py | 2240 +++++ ocr/.venv/Lib/site-packages/grpc/_common.py | 181 + .../Lib/site-packages/grpc/_compression.py | 71 + .../site-packages/grpc/_cython/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 183 bytes .../grpc/_cython/_credentials/roots.pem | 4337 ++++++++ .../grpc/_cython/_cygrpc/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../grpc/_cython/cygrpc.cp310-win_amd64.pyd | Bin 0 -> 10307072 bytes .../site-packages/grpc/_grpcio_metadata.py | 1 + .../Lib/site-packages/grpc/_interceptor.py | 809 ++ .../Lib/site-packages/grpc/_observability.py | 312 + .../site-packages/grpc/_plugin_wrapping.py | 137 + .../Lib/site-packages/grpc/_runtime_protos.py | 164 + ocr/.venv/Lib/site-packages/grpc/_server.py | 1516 +++ .../Lib/site-packages/grpc/_simple_stubs.py | 588 ++ ocr/.venv/Lib/site-packages/grpc/_typing.py | 96 + .../Lib/site-packages/grpc/_utilities.py | 220 + .../Lib/site-packages/grpc/aio/__init__.py | 95 + .../aio/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2101 bytes .../__pycache__/_base_call.cpython-310.pyc | Bin 0 -> 8013 bytes .../__pycache__/_base_channel.cpython-310.pyc | Bin 0 -> 13730 bytes .../__pycache__/_base_server.cpython-310.pyc | Bin 0 -> 14333 bytes .../aio/__pycache__/_call.cpython-310.pyc | Bin 0 -> 21052 bytes .../aio/__pycache__/_channel.cpython-310.pyc | Bin 0 -> 13078 bytes .../__pycache__/_interceptor.cpython-310.pyc | Bin 0 -> 34088 bytes .../aio/__pycache__/_metadata.cpython-310.pyc | Bin 0 -> 5387 bytes .../aio/__pycache__/_server.cpython-310.pyc | Bin 0 -> 8556 bytes .../aio/__pycache__/_typing.cpython-310.pyc | Bin 0 -> 934 bytes .../aio/__pycache__/_utils.cpython-310.pyc | Bin 0 -> 481 bytes .../Lib/site-packages/grpc/aio/_base_call.py | 257 + .../site-packages/grpc/aio/_base_channel.py | 364 + .../site-packages/grpc/aio/_base_server.py | 387 + ocr/.venv/Lib/site-packages/grpc/aio/_call.py | 758 ++ .../Lib/site-packages/grpc/aio/_channel.py | 628 ++ .../site-packages/grpc/aio/_interceptor.py | 1177 +++ .../Lib/site-packages/grpc/aio/_metadata.py | 138 + .../Lib/site-packages/grpc/aio/_server.py | 240 + .../Lib/site-packages/grpc/aio/_typing.py | 43 + .../Lib/site-packages/grpc/aio/_utils.py | 22 + .../Lib/site-packages/grpc/beta/__init__.py | 13 + .../beta/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 180 bytes .../_client_adaptations.cpython-310.pyc | Bin 0 -> 16334 bytes .../__pycache__/_metadata.cpython-310.pyc | Bin 0 -> 1340 bytes .../_server_adaptations.cpython-310.pyc | Bin 0 -> 11926 bytes .../implementations.cpython-310.pyc | Bin 0 -> 10339 bytes .../__pycache__/interfaces.cpython-310.pyc | Bin 0 -> 6394 bytes .../__pycache__/utilities.cpython-310.pyc | Bin 0 -> 4686 bytes .../grpc/beta/_client_adaptations.py | 1010 ++ .../Lib/site-packages/grpc/beta/_metadata.py | 54 + .../grpc/beta/_server_adaptations.py | 459 + .../grpc/beta/implementations.py | 345 + .../Lib/site-packages/grpc/beta/interfaces.py | 163 + .../Lib/site-packages/grpc/beta/utilities.py | 149 + .../grpc/experimental/__init__.py | 134 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3441 bytes .../__pycache__/gevent.cpython-310.pyc | Bin 0 -> 676 bytes .../__pycache__/session_cache.cpython-310.pyc | Bin 0 -> 1523 bytes .../grpc/experimental/aio/__init__.py | 16 + .../aio/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 283 bytes .../site-packages/grpc/experimental/gevent.py | 27 + .../grpc/experimental/session_cache.py | 45 + .../site-packages/grpc/framework/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 185 bytes .../grpc/framework/common/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../__pycache__/cardinality.cpython-310.pyc | Bin 0 -> 759 bytes .../common/__pycache__/style.cpython-310.pyc | Bin 0 -> 589 bytes .../grpc/framework/common/cardinality.py | 26 + .../grpc/framework/common/style.py | 24 + .../grpc/framework/foundation/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/abandonment.cpython-310.pyc | Bin 0 -> 646 bytes .../__pycache__/callable_util.cpython-310.pyc | Bin 0 -> 3223 bytes .../__pycache__/future.cpython-310.pyc | Bin 0 -> 7297 bytes .../__pycache__/logging_pool.cpython-310.pyc | Bin 0 -> 2533 bytes .../__pycache__/stream.cpython-310.pyc | Bin 0 -> 1266 bytes .../__pycache__/stream_util.cpython-310.pyc | Bin 0 -> 4909 bytes .../grpc/framework/foundation/abandonment.py | 22 + .../framework/foundation/callable_util.py | 98 + .../grpc/framework/foundation/future.py | 219 + .../grpc/framework/foundation/logging_pool.py | 72 + .../grpc/framework/foundation/stream.py | 43 + .../grpc/framework/foundation/stream_util.py | 147 + .../grpc/framework/interfaces/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../framework/interfaces/base/__init__.py | 13 + .../base/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../base/__pycache__/base.cpython-310.pyc | Bin 0 -> 13254 bytes .../__pycache__/utilities.cpython-310.pyc | Bin 0 -> 1964 bytes .../grpc/framework/interfaces/base/base.py | 328 + .../framework/interfaces/base/utilities.py | 83 + .../framework/interfaces/face/__init__.py | 13 + .../face/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../face/__pycache__/face.cpython-310.pyc | Bin 0 -> 39651 bytes .../__pycache__/utilities.cpython-310.pyc | Bin 0 -> 5447 bytes .../grpc/framework/interfaces/face/face.py | 1084 ++ .../framework/interfaces/face/utilities.py | 245 + .../Lib/site-packages/grpc_status/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 182 bytes .../__pycache__/_async.cpython-310.pyc | Bin 0 -> 1321 bytes .../__pycache__/_common.cpython-310.pyc | Bin 0 -> 723 bytes .../__pycache__/rpc_status.cpython-310.pyc | Bin 0 -> 2334 bytes .../Lib/site-packages/grpc_status/_async.py | 58 + .../Lib/site-packages/grpc_status/_common.py | 27 + .../site-packages/grpc_status/rpc_status.py | 96 + .../grpcio-1.76.0.dist-info/INSTALLER | 1 + .../grpcio-1.76.0.dist-info/LICENSE | 610 ++ .../grpcio-1.76.0.dist-info/METADATA | 126 + .../grpcio-1.76.0.dist-info/RECORD | 120 + .../grpcio-1.76.0.dist-info/WHEEL | 5 + .../grpcio-1.76.0.dist-info/top_level.txt | 1 + .../grpcio_status-1.71.2.dist-info/INSTALLER | 1 + .../grpcio_status-1.71.2.dist-info/LICENSE | 610 ++ .../grpcio_status-1.71.2.dist-info/METADATA | 33 + .../grpcio_status-1.71.2.dist-info/RECORD | 14 + .../grpcio_status-1.71.2.dist-info/WHEEL | 5 + .../top_level.txt | 1 + .../h11-0.16.0.dist-info/INSTALLER | 1 + .../h11-0.16.0.dist-info/METADATA | 202 + .../site-packages/h11-0.16.0.dist-info/RECORD | 29 + .../site-packages/h11-0.16.0.dist-info/WHEEL | 5 + .../h11-0.16.0.dist-info/licenses/LICENSE.txt | 22 + .../h11-0.16.0.dist-info/top_level.txt | 1 + ocr/.venv/Lib/site-packages/h11/__init__.py | 62 + .../h11/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1003 bytes .../h11/__pycache__/_abnf.cpython-310.pyc | Bin 0 -> 1247 bytes .../__pycache__/_connection.cpython-310.pyc | Bin 0 -> 16209 bytes .../h11/__pycache__/_events.cpython-310.pyc | Bin 0 -> 10087 bytes .../h11/__pycache__/_headers.cpython-310.pyc | Bin 0 -> 5632 bytes .../h11/__pycache__/_readers.cpython-310.pyc | Bin 0 -> 6346 bytes .../_receivebuffer.cpython-310.pyc | Bin 0 -> 3190 bytes .../h11/__pycache__/_state.cpython-310.pyc | Bin 0 -> 5575 bytes .../h11/__pycache__/_util.cpython-310.pyc | Bin 0 -> 3853 bytes .../h11/__pycache__/_version.cpython-310.pyc | Bin 0 -> 196 bytes .../h11/__pycache__/_writers.cpython-310.pyc | Bin 0 -> 4512 bytes ocr/.venv/Lib/site-packages/h11/_abnf.py | 132 + .../Lib/site-packages/h11/_connection.py | 659 ++ ocr/.venv/Lib/site-packages/h11/_events.py | 369 + ocr/.venv/Lib/site-packages/h11/_headers.py | 282 + ocr/.venv/Lib/site-packages/h11/_readers.py | 250 + .../Lib/site-packages/h11/_receivebuffer.py | 153 + ocr/.venv/Lib/site-packages/h11/_state.py | 365 + ocr/.venv/Lib/site-packages/h11/_util.py | 135 + ocr/.venv/Lib/site-packages/h11/_version.py | 16 + ocr/.venv/Lib/site-packages/h11/_writers.py | 145 + ocr/.venv/Lib/site-packages/h11/py.typed | 1 + .../httptools-0.7.1.dist-info/INSTALLER | 1 + .../httptools-0.7.1.dist-info/METADATA | 130 + .../httptools-0.7.1.dist-info/RECORD | 25 + .../httptools-0.7.1.dist-info/WHEEL | 5 + .../licenses/LICENSE | 21 + .../httptools-0.7.1.dist-info/top_level.txt | 1 + .../Lib/site-packages/httptools/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 291 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 201 bytes .../Lib/site-packages/httptools/_version.py | 13 + .../httptools/parser/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 324 bytes .../parser/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1035 bytes .../__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1751 bytes .../httptools/parser/cparser.pxd | 167 + .../site-packages/httptools/parser/errors.py | 30 + .../parser/parser.cp310-win_amd64.pyd | Bin 0 -> 122880 bytes .../site-packages/httptools/parser/parser.pyi | 57 + .../site-packages/httptools/parser/parser.pyx | 436 + .../httptools/parser/protocol.py | 15 + .../site-packages/httptools/parser/python.pxd | 6 + .../httptools/parser/url_cparser.pxd | 31 + .../parser/url_parser.cp310-win_amd64.pyd | Bin 0 -> 50688 bytes .../httptools/parser/url_parser.pyi | 27 + .../httptools/parser/url_parser.pyx | 108 + .../idna-3.11.dist-info/INSTALLER | 1 + .../idna-3.11.dist-info/METADATA | 209 + .../site-packages/idna-3.11.dist-info/RECORD | 22 + .../site-packages/idna-3.11.dist-info/WHEEL | 4 + .../idna-3.11.dist-info/licenses/LICENSE.md | 31 + ocr/.venv/Lib/site-packages/idna/__init__.py | 45 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 839 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 3260 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 742 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9662 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 198638 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1971 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 155207 bytes ocr/.venv/Lib/site-packages/idna/codec.py | 122 + ocr/.venv/Lib/site-packages/idna/compat.py | 15 + ocr/.venv/Lib/site-packages/idna/core.py | 437 + ocr/.venv/Lib/site-packages/idna/idnadata.py | 4309 ++++++++ ocr/.venv/Lib/site-packages/idna/intranges.py | 57 + .../Lib/site-packages/idna/package_data.py | 1 + ocr/.venv/Lib/site-packages/idna/py.typed | 0 ocr/.venv/Lib/site-packages/idna/uts46data.py | 8841 +++++++++++++++++ .../Lib/site-packages/multipart/__init__.py | 16 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 518 bytes .../__pycache__/decoders.cpython-310.pyc | Bin 0 -> 5703 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1550 bytes .../__pycache__/multipart.cpython-310.pyc | Bin 0 -> 46882 bytes .../Lib/site-packages/multipart/decoders.py | 171 + .../Lib/site-packages/multipart/exceptions.py | 34 + .../Lib/site-packages/multipart/multipart.py | 1911 ++++ .../pip-22.2.2.dist-info/INSTALLER | 1 + .../pip-22.2.2.dist-info/LICENSE.txt | 20 + .../pip-22.2.2.dist-info/METADATA | 90 + .../site-packages/pip-22.2.2.dist-info/RECORD | 992 ++ .../pip-22.2.2.dist-info/REQUESTED | 0 .../site-packages/pip-22.2.2.dist-info/WHEEL | 5 + .../pip-22.2.2.dist-info/entry_points.txt | 4 + .../pip-22.2.2.dist-info/top_level.txt | 1 + ocr/.venv/Lib/site-packages/pip/__init__.py | 13 + ocr/.venv/Lib/site-packages/pip/__main__.py | 31 + .../Lib/site-packages/pip/__pip-runner__.py | 36 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 630 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 592 bytes .../__pip-runner__.cpython-310.pyc | Bin 0 -> 1399 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 751 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9182 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 9213 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11211 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 23121 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 616 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3620 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 6572 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9204 bytes .../site-packages/pip/_internal/build_env.py | 290 + .../Lib/site-packages/pip/_internal/cache.py | 289 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 271 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5304 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6340 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 23674 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1311 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1369 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2155 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9953 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 1895 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13090 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4933 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 350 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 223 + .../pip/_internal/cli/cmdoptions.py | 1062 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 87 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 502 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3250 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6233 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1568 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 4159 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8824 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6653 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 4045 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2633 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2147 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1308 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4557 bytes .../__pycache__/inspect.cpython-310.pyc | Bin 0 -> 3121 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 19414 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10187 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5361 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6393 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3221 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4884 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 126 + .../pip/_internal/commands/configuration.py | 276 + .../pip/_internal/commands/debug.py | 199 + .../pip/_internal/commands/download.py | 142 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 138 + .../pip/_internal/commands/inspect.py | 97 + .../pip/_internal/commands/install.py | 827 ++ .../pip/_internal/commands/list.py | 360 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 183 + .../pip/_internal/commands/uninstall.py | 106 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 374 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 798 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1886 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1263 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4994 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1630 bytes .../pip/_internal/distributions/base.py | 39 + .../pip/_internal/distributions/installed.py | 23 + .../pip/_internal/distributions/sdist.py | 150 + .../pip/_internal/distributions/wheel.py | 34 + .../site-packages/pip/_internal/exceptions.py | 658 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 225 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 17703 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 29054 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7118 bytes .../pip/_internal/index/collector.py | 621 ++ .../pip/_internal/index/package_finder.py | 1025 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 528 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 12541 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4774 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6198 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 2401 bytes .../pip/_internal/locations/_distutils.py | 180 + .../pip/_internal/locations/_sysconfig.py | 218 + .../pip/_internal/locations/base.py | 81 + .../Lib/site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 105 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4006 bytes .../__pycache__/_json.cpython-310.pyc | Bin 0 -> 2185 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 25946 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 9808 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 670 ++ .../_internal/metadata/importlib/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 316 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 2122 bytes .../__pycache__/_dists.cpython-310.pyc | Bin 0 -> 8378 bytes .../__pycache__/_envs.cpython-310.pyc | Bin 0 -> 7489 bytes .../_internal/metadata/importlib/_compat.py | 43 + .../_internal/metadata/importlib/_dists.py | 206 + .../pip/_internal/metadata/importlib/_envs.py | 180 + .../pip/_internal/metadata/pkg_resources.py | 253 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 259 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1411 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7101 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2736 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1228 bytes .../installation_report.cpython-310.pyc | Bin 0 -> 1738 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10534 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1027 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3482 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1689 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3440 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4434 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 212 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 53 + .../pip/_internal/models/link.py | 314 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 129 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 110 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 247 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7515 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2934 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5529 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8414 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 12417 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1450 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2060 bytes .../pip/_internal/network/auth.py | 323 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 518 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 4008 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6200 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14052 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../__pycache__/build_tracker.cpython-310.pyc | Bin 0 -> 4282 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1428 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1462 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2373 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1218 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1442 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2758 bytes .../operations/build/build_tracker.py | 124 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 149 + .../pip/_internal/operations/freeze.py | 254 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 259 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1546 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3344 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21116 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 736 ++ .../pip/_internal/operations/prepare.py | 614 ++ .../site-packages/pip/_internal/pyproject.py | 175 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2602 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12372 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13535 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 22680 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 3910 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 19057 bytes .../pip/_internal/req/constructors.py | 501 + .../pip/_internal/req/req_file.py | 540 + .../pip/_internal/req/req_install.py | 879 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 640 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1047 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 14948 bytes .../_internal/resolution/legacy/resolver.py | 600 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 206 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6449 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18590 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19070 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4866 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7707 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3175 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7464 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8179 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 556 ++ .../resolution/resolvelib/factory.py | 731 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 248 + .../resolution/resolvelib/reporter.py | 68 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 296 + .../pip/_internal/self_outdated_check.py | 239 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1518 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1616 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1506 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4075 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 513 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3311 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2081 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1055 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2146 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1303 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 2641 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 4479 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 940 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1669 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5192 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 985 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9715 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 21596 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1986 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2078 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4593 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5766 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7313 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6650 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1583 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3286 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4411 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/distutils_args.py | 43 + .../pip/_internal/utils/egg_link.py | 75 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 79 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 144 + .../_internal/utils/inject_securetransport.py | 35 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 723 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 195 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 246 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 136 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 513 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3340 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12543 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5059 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8447 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21142 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 101 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 383 + .../Lib/site-packages/pip/_vendor/__init__.py | 120 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3126 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27580 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 60714 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 641 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1579 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3155 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 2689 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 755 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8589 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2791 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4715 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4330 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 686 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 65 + .../_vendor/cachecontrol/caches/__init__.py | 9 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 360 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 4960 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1618 bytes .../_vendor/cachecontrol/caches/file_cache.py | 188 + .../cachecontrol/caches/redis_cache.py | 39 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 439 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 190 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 303 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 453 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1797 bytes .../pip/_vendor/certifi/cacert.pem | 4685 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 84 + .../pip/_vendor/chardet/__init__.py | 93 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2380 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27177 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1119 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 6222 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2213 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3401 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2886 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1126 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2562 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2607 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8376 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2408 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12061 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1127 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27181 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1127 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19105 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1135 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3012 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22133 bytes .../__pycache__/johabfreq.cpython-310.pyc | Bin 0 -> 138757 bytes .../__pycache__/johabprober.cpython-310.pyc | Bin 0 -> 1126 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37629 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47925 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46115 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44562 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47885 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61026 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44738 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44579 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4403 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2227 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1180 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 20703 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3196 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1719 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2446 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 6463 bytes .../__pycache__/utf1632prober.cpython-310.pyc | Bin 0 -> 5843 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 1962 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 437 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 259 + .../pip/_vendor/chardet/charsetgroupprober.py | 109 + .../pip/_vendor/chardet/charsetprober.py | 138 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2402 bytes .../pip/_vendor/chardet/cli/chardetect.py | 86 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 82 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 260 + .../pip/_vendor/chardet/eucjpprober.py | 95 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 302 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 237 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 ++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 ++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 ++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 ++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 56 + .../pip/_vendor/chardet/mbcssm.py | 660 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 7957 bytes .../pip/_vendor/chardet/metadata/languages.py | 351 + .../pip/_vendor/chardet/sbcharsetprober.py | 160 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 98 + .../pip/_vendor/chardet/universaldetector.py | 328 + .../pip/_vendor/chardet/utf1632prober.py | 223 + .../pip/_vendor/chardet/utf8prober.py | 80 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 442 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3003 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 8205 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1689 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 3949 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4566 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 266 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1061 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31407 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 43147 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17312 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38369 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10229 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 5033 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26786 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11035 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11499 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 51694 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20148 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 28130 bytes .../pip/_vendor/distlib/compat.py | 1116 +++ .../pip/_vendor/distlib/database.py | 1350 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 152 + .../pip/_vendor/distlib/metadata.py | 1076 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 437 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 107520 bytes .../site-packages/pip/_vendor/distlib/util.py | 1932 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1082 ++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 914 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 268 bytes .../distro/__pycache__/distro.cpython-310.pyc | Bin 0 -> 41331 bytes .../pip/_vendor/distro/distro.py | 1374 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 846 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2817 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 746 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9561 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38224 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1983 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 150945 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 397 + .../pip/_vendor/idna/idnadata.py | 2137 ++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8512 ++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1444 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1807 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6315 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25482 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 589 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 445 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7299 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4611 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2704 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9286 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3974 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21526 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12189 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3574 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12924 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 312 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3595 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4559 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 2963 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1536 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1354 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4377 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 2959 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12305 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 207 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 51 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 920 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 10067 bytes .../_vendor/pep517/in_process/_in_process.py | 363 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 375 + .../pip/_vendor/pkg_resources/__init__.py | 3296 ++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99875 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 659 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 340 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10527 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1235 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4325 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5201 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3189 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6890 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 292 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6433 bytes .../pip/_vendor/platformdirs/android.py | 120 + .../pip/_vendor/platformdirs/api.py | 156 + .../pip/_vendor/platformdirs/macos.py | 64 + .../pip/_vendor/platformdirs/unix.py | 181 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 182 + .../pip/_vendor/pygments/__init__.py | 83 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2991 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 587 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15450 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1882 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2653 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 3009 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24370 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1191 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2043 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2955 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3557 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4541 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4578 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4650 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31204 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9146 bytes .../pip/_vendor/pygments/cmdline.py | 663 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 937 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29512 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 153 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4667 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 5535 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3084 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4397 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29129 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17496 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4587 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13797 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4803 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2103 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4133 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6331 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 3998 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9248 bytes .../_vendor/pygments/formatters/_mapping.py | 84 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 641 ++ .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 882 ++ .../pip/_vendor/pygments/lexers/__init__.py | 345 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9353 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 60148 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29356 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 596 ++ .../pip/_vendor/pygments/lexers/python.py | 1191 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 69 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 155 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 93 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3219 bytes .../pip/_vendor/pygments/token.py | 212 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7128 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7178 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10104 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176455 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9062 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35339 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24780 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12096 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 10057 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8604 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5814 +++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 642 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16580 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1088 ++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 352 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4015 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 554 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1564 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 16898 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6653 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8121 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 638 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1370 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18690 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5740 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2866 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 993 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24264 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 507 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19573 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4672 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4437 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24335 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 48 + .../pip/_vendor/requests/adapters.py | 584 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 17 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1086 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 605 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6656 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2576 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15129 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7162 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 376 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 482 + .../pip/_vendor/resolvelib/structs.py | 165 + .../pip/_vendor/rich/__init__.py | 176 + .../pip/_vendor/rich/__main__.py | 282 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5973 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7295 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7813 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360053 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1193 bytes .../_export_format.cpython-310.pyc | Bin 0 -> 2310 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 494 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 8671 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2639 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1291 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5096 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 639 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5156 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 12270 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 837 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 686 bytes .../_win32_console.cpython-310.pyc | Bin 0 -> 19006 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1788 bytes .../_windows_renderer.cpython-310.pyc | Bin 0 -> 2042 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1550 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1313 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7948 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 5953 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2982 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 8402 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3972 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 17460 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1436 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6196 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 80946 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1753 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6485 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 8158 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6197 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 1220 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3266 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1526 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2259 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2615 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 8059 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4746 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3998 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14685 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11623 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3401 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9770 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5940 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5075 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4481 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1475 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3707 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 6418 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 27396 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 53889 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6906 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11298 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1351 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 526 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4114 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 4308 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2987 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1878 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20756 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4416 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4592 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20788 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1762 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 25359 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 29720 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 3015 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 39407 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4699 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 292 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19646 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7333 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 78 + .../pip/_vendor/rich/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../Lib/site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 237 + .../Lib/site-packages/pip/_vendor/rich/bar.py | 94 + .../Lib/site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 615 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2572 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 188 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 54 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 445 + .../site-packages/pip/_vendor/rich/live.py | 373 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 280 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 251 + .../site-packages/pip/_vendor/rich/pretty.py | 1010 ++ .../pip/_vendor/rich/progress.py | 1703 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 152 + .../site-packages/pip/_vendor/rich/rule.py | 134 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 136 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 771 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 934 ++ .../site-packages/pip/_vendor/rich/table.py | 996 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1286 +++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 679 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../Lib/site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16373 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2613 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1226 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1230 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1108 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1410 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1198 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8428 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4016 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1763 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 7960 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 213 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 191 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 354 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 17068 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2900 bytes .../tomli/__pycache__/_types.cpython-310.pyc | Bin 0 -> 324 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/typing_extensions.py | 2069 ++++ .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2188 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10862 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 213 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13634 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25402 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 10993 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8182 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2749 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15218 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5625 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 20863 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 567 ++ .../pip/_vendor/urllib3/connectionpool.py | 1110 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1378 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8194 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3633 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15535 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21940 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5600 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 215 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10711 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9098 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 510 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27653 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1309 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1076 ++ .../pip/_vendor/urllib3/poolmanager.py | 537 + .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 818 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1108 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3436 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1341 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1063 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3370 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2356 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16141 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11308 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3260 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7398 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8932 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10690 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3092 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../Lib/site-packages/pip/_vendor/vendor.txt | 23 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9745 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5235 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1940 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5042 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2591 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + ocr/.venv/Lib/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3296 ++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100560 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20253 bytes .../_vendor/__pycache__/zipp.cpython-310.pyc | Bin 0 -> 10235 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 647 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 7355 bytes .../__pycache__/_common.cpython-310.pyc | Bin 0 -> 2645 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 3505 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 892 bytes .../__pycache__/_legacy.cpython-310.pyc | Bin 0 -> 4228 bytes .../__pycache__/abc.cpython-310.pyc | Bin 0 -> 5381 bytes .../__pycache__/readers.cpython-310.pyc | Bin 0 -> 5465 bytes .../__pycache__/simple.cpython-310.pyc | Bin 0 -> 4729 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../pkg_resources/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/context.cpython-310.pyc | Bin 0 -> 6331 bytes .../__pycache__/functools.cpython-310.pyc | Bin 0 -> 15623 bytes .../pkg_resources/_vendor/jaraco/context.py | 213 + .../pkg_resources/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 ++ .../text/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 19668 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 274 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 123047 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 20335 bytes .../_vendor/more_itertools/more.py | 4316 ++++++++ .../_vendor/more_itertools/recipes.py | 698 ++ .../_vendor/packaging/__about__.py | 26 + .../_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 599 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 455 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7309 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4621 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2714 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9305 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3993 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21536 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12199 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3584 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12934 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../pkg_resources/_vendor/packaging/tags.py | 487 + .../pkg_resources/_vendor/packaging/utils.py | 136 + .../_vendor/packaging/version.py | 504 + .../_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7126 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7191 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10114 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176339 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9081 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35258 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24802 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12109 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9823 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8614 bytes .../_vendor/pyparsing/actions.py | 207 + .../pkg_resources/_vendor/pyparsing/common.py | 424 + .../pkg_resources/_vendor/pyparsing/core.py | 5812 +++++++++++ .../_vendor/pyparsing/diagram/__init__.py | 611 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16060 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../_vendor/pyparsing/helpers.py | 1083 ++ .../_vendor/pyparsing/results.py | 760 ++ .../_vendor/pyparsing/testing.py | 331 + .../_vendor/pyparsing/unicode.py | 332 + .../pkg_resources/_vendor/pyparsing/util.py | 235 + .../pkg_resources/_vendor/zipp.py | 329 + .../pkg_resources/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2945 bytes ocr/.venv/Lib/site-packages/proto/__init__.py | 72 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 944 bytes .../__pycache__/_file_info.cpython-310.pyc | Bin 0 -> 5008 bytes .../__pycache__/_package_info.cpython-310.pyc | Bin 0 -> 1022 bytes .../datetime_helpers.cpython-310.pyc | Bin 0 -> 6115 bytes .../proto/__pycache__/enums.cpython-310.pyc | Bin 0 -> 3931 bytes .../proto/__pycache__/fields.cpython-310.pyc | Bin 0 -> 3276 bytes .../proto/__pycache__/message.cpython-310.pyc | Bin 0 -> 26060 bytes .../proto/__pycache__/modules.cpython-310.pyc | Bin 0 -> 1149 bytes .../__pycache__/primitives.cpython-310.pyc | Bin 0 -> 745 bytes .../proto/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1085 bytes .../proto/__pycache__/version.cpython-310.pyc | Bin 0 -> 197 bytes .../Lib/site-packages/proto/_file_info.py | 196 + .../Lib/site-packages/proto/_package_info.py | 50 + .../site-packages/proto/datetime_helpers.py | 225 + ocr/.venv/Lib/site-packages/proto/enums.py | 165 + ocr/.venv/Lib/site-packages/proto/fields.py | 165 + .../site-packages/proto/marshal/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 238 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 885 bytes .../__pycache__/marshal.cpython-310.pyc | Bin 0 -> 8672 bytes .../proto/marshal/collections/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 350 bytes .../__pycache__/maps.cpython-310.pyc | Bin 0 -> 2509 bytes .../__pycache__/repeated.cpython-310.pyc | Bin 0 -> 5517 bytes .../proto/marshal/collections/maps.py | 82 + .../proto/marshal/collections/repeated.py | 189 + .../Lib/site-packages/proto/marshal/compat.py | 64 + .../site-packages/proto/marshal/marshal.py | 297 + .../proto/marshal/rules/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../rules/__pycache__/bytes.cpython-310.pyc | Bin 0 -> 1452 bytes .../rules/__pycache__/dates.cpython-310.pyc | Bin 0 -> 2669 bytes .../rules/__pycache__/enums.cpython-310.pyc | Bin 0 -> 1242 bytes .../__pycache__/field_mask.cpython-310.pyc | Bin 0 -> 1048 bytes .../rules/__pycache__/message.cpython-310.pyc | Bin 0 -> 1465 bytes .../stringy_numbers.cpython-310.pyc | Bin 0 -> 1948 bytes .../rules/__pycache__/struct.cpython-310.pyc | Bin 0 -> 4382 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 2653 bytes .../proto/marshal/rules/bytes.py | 44 + .../proto/marshal/rules/dates.py | 85 + .../proto/marshal/rules/enums.py | 59 + .../proto/marshal/rules/field_mask.py | 36 + .../proto/marshal/rules/message.py | 53 + .../proto/marshal/rules/stringy_numbers.py | 71 + .../proto/marshal/rules/struct.py | 143 + .../proto/marshal/rules/wrappers.py | 84 + ocr/.venv/Lib/site-packages/proto/message.py | 969 ++ ocr/.venv/Lib/site-packages/proto/modules.py | 50 + .../Lib/site-packages/proto/primitives.py | 38 + ocr/.venv/Lib/site-packages/proto/utils.py | 58 + ocr/.venv/Lib/site-packages/proto/version.py | 15 + .../proto_plus-1.26.1.dist-info/INSTALLER | 1 + .../proto_plus-1.26.1.dist-info/LICENSE | 202 + .../proto_plus-1.26.1.dist-info/METADATA | 56 + .../proto_plus-1.26.1.dist-info/RECORD | 58 + .../proto_plus-1.26.1.dist-info/WHEEL | 5 + .../proto_plus-1.26.1.dist-info/top_level.txt | 1 + .../protobuf-5.29.5.dist-info/INSTALLER | 1 + .../protobuf-5.29.5.dist-info/LICENSE | 32 + .../protobuf-5.29.5.dist-info/METADATA | 17 + .../protobuf-5.29.5.dist-info/RECORD | 116 + .../protobuf-5.29.5.dist-info/WHEEL | 4 + .../pyasn1-0.6.1.dist-info/INSTALLER | 1 + .../pyasn1-0.6.1.dist-info/LICENSE.rst | 24 + .../pyasn1-0.6.1.dist-info/METADATA | 228 + .../pyasn1-0.6.1.dist-info/RECORD | 71 + .../pyasn1-0.6.1.dist-info/WHEEL | 5 + .../pyasn1-0.6.1.dist-info/top_level.txt | 1 + .../pyasn1-0.6.1.dist-info/zip-safe | 1 + .../Lib/site-packages/pyasn1/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../pyasn1/__pycache__/debug.cpython-310.pyc | Bin 0 -> 4142 bytes .../pyasn1/__pycache__/error.cpython-310.pyc | Bin 0 -> 4111 bytes .../site-packages/pyasn1/codec/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 183 bytes .../__pycache__/streaming.cpython-310.pyc | Bin 0 -> 5844 bytes .../pyasn1/codec/ber/__init__.py | 1 + .../ber/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 187 bytes .../ber/__pycache__/decoder.cpython-310.pyc | Bin 0 -> 42185 bytes .../ber/__pycache__/encoder.cpython-310.pyc | Bin 0 -> 17188 bytes .../codec/ber/__pycache__/eoo.cpython-310.pyc | Bin 0 -> 798 bytes .../site-packages/pyasn1/codec/ber/decoder.py | 2189 ++++ .../site-packages/pyasn1/codec/ber/encoder.py | 954 ++ .../Lib/site-packages/pyasn1/codec/ber/eoo.py | 28 + .../pyasn1/codec/cer/__init__.py | 1 + .../cer/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 187 bytes .../cer/__pycache__/decoder.cpython-310.pyc | Bin 0 -> 2518 bytes .../cer/__pycache__/encoder.cpython-310.pyc | Bin 0 -> 6767 bytes .../site-packages/pyasn1/codec/cer/decoder.py | 149 + .../site-packages/pyasn1/codec/cer/encoder.py | 331 + .../pyasn1/codec/der/__init__.py | 1 + .../der/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 187 bytes .../der/__pycache__/decoder.cpython-310.pyc | Bin 0 -> 1885 bytes .../der/__pycache__/encoder.cpython-310.pyc | Bin 0 -> 2184 bytes .../site-packages/pyasn1/codec/der/decoder.py | 120 + .../site-packages/pyasn1/codec/der/encoder.py | 126 + .../pyasn1/codec/native/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../__pycache__/decoder.cpython-310.pyc | Bin 0 -> 5679 bytes .../__pycache__/encoder.cpython-310.pyc | Bin 0 -> 7881 bytes .../pyasn1/codec/native/decoder.py | 244 + .../pyasn1/codec/native/encoder.py | 285 + .../site-packages/pyasn1/codec/streaming.py | 234 + .../site-packages/pyasn1/compat/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 205 bytes .../__pycache__/integer.cpython-310.pyc | Bin 0 -> 439 bytes .../site-packages/pyasn1/compat/integer.py | 13 + ocr/.venv/Lib/site-packages/pyasn1/debug.py | 146 + ocr/.venv/Lib/site-packages/pyasn1/error.py | 116 + .../Lib/site-packages/pyasn1/type/__init__.py | 1 + .../type/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 182 bytes .../type/__pycache__/base.cpython-310.pyc | Bin 0 -> 21842 bytes .../type/__pycache__/char.cpython-310.pyc | Bin 0 -> 5611 bytes .../__pycache__/constraint.cpython-310.pyc | Bin 0 -> 23726 bytes .../type/__pycache__/error.cpython-310.pyc | Bin 0 -> 398 bytes .../__pycache__/namedtype.cpython-310.pyc | Bin 0 -> 18349 bytes .../type/__pycache__/namedval.cpython-310.pyc | Bin 0 -> 5490 bytes .../type/__pycache__/opentype.cpython-310.pyc | Bin 0 -> 3454 bytes .../type/__pycache__/tag.cpython-310.pyc | Bin 0 -> 10211 bytes .../type/__pycache__/tagmap.cpython-310.pyc | Bin 0 -> 3311 bytes .../type/__pycache__/univ.cpython-310.pyc | Bin 0 -> 93784 bytes .../type/__pycache__/useful.cpython-310.pyc | Bin 0 -> 4414 bytes .../Lib/site-packages/pyasn1/type/base.py | 699 ++ .../Lib/site-packages/pyasn1/type/char.py | 288 + .../site-packages/pyasn1/type/constraint.py | 751 ++ .../Lib/site-packages/pyasn1/type/error.py | 11 + .../site-packages/pyasn1/type/namedtype.py | 550 + .../Lib/site-packages/pyasn1/type/namedval.py | 192 + .../Lib/site-packages/pyasn1/type/opentype.py | 104 + .../Lib/site-packages/pyasn1/type/tag.py | 335 + .../Lib/site-packages/pyasn1/type/tagmap.py | 96 + .../Lib/site-packages/pyasn1/type/univ.py | 3327 +++++++ .../Lib/site-packages/pyasn1/type/useful.py | 189 + .../pyasn1_modules-0.4.2.dist-info/INSTALLER | 1 + .../pyasn1_modules-0.4.2.dist-info/METADATA | 73 + .../pyasn1_modules-0.4.2.dist-info/RECORD | 271 + .../pyasn1_modules-0.4.2.dist-info/WHEEL | 5 + .../licenses/LICENSE.txt | 24 + .../top_level.txt | 1 + .../pyasn1_modules-0.4.2.dist-info/zip-safe | 1 + .../site-packages/pyasn1_modules/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 206 bytes .../__pycache__/pem.cpython-310.pyc | Bin 0 -> 1890 bytes .../__pycache__/rfc1155.cpython-310.pyc | Bin 0 -> 2681 bytes .../__pycache__/rfc1157.cpython-310.pyc | Bin 0 -> 3857 bytes .../__pycache__/rfc1901.cpython-310.pyc | Bin 0 -> 678 bytes .../__pycache__/rfc1902.cpython-310.pyc | Bin 0 -> 3375 bytes .../__pycache__/rfc1905.cpython-310.pyc | Bin 0 -> 4234 bytes .../__pycache__/rfc2251.cpython-310.pyc | Bin 0 -> 15618 bytes .../__pycache__/rfc2314.cpython-310.pyc | Bin 0 -> 1615 bytes .../__pycache__/rfc2315.cpython-310.pyc | Bin 0 -> 9341 bytes .../__pycache__/rfc2437.cpython-310.pyc | Bin 0 -> 2230 bytes .../__pycache__/rfc2459.cpython-310.pyc | Bin 0 -> 38838 bytes .../__pycache__/rfc2511.cpython-310.pyc | Bin 0 -> 8875 bytes .../__pycache__/rfc2560.cpython-310.pyc | Bin 0 -> 7605 bytes .../__pycache__/rfc2631.cpython-310.pyc | Bin 0 -> 1120 bytes .../__pycache__/rfc2634.cpython-310.pyc | Bin 0 -> 6831 bytes .../__pycache__/rfc2876.cpython-310.pyc | Bin 0 -> 1093 bytes .../__pycache__/rfc2985.cpython-310.pyc | Bin 0 -> 8018 bytes .../__pycache__/rfc2986.cpython-310.pyc | Bin 0 -> 1406 bytes .../__pycache__/rfc3058.cpython-310.pyc | Bin 0 -> 811 bytes .../__pycache__/rfc3114.cpython-310.pyc | Bin 0 -> 1719 bytes .../__pycache__/rfc3125.cpython-310.pyc | Bin 0 -> 13801 bytes .../__pycache__/rfc3161.cpython-310.pyc | Bin 0 -> 3448 bytes .../__pycache__/rfc3274.cpython-310.pyc | Bin 0 -> 1119 bytes .../__pycache__/rfc3279.cpython-310.pyc | Bin 0 -> 6178 bytes .../__pycache__/rfc3280.cpython-310.pyc | Bin 0 -> 32595 bytes .../__pycache__/rfc3281.cpython-310.pyc | Bin 0 -> 7036 bytes .../__pycache__/rfc3370.cpython-310.pyc | Bin 0 -> 1936 bytes .../__pycache__/rfc3412.cpython-310.pyc | Bin 0 -> 1765 bytes .../__pycache__/rfc3414.cpython-310.pyc | Bin 0 -> 943 bytes .../__pycache__/rfc3447.cpython-310.pyc | Bin 0 -> 1442 bytes .../__pycache__/rfc3537.cpython-310.pyc | Bin 0 -> 565 bytes .../__pycache__/rfc3560.cpython-310.pyc | Bin 0 -> 1105 bytes .../__pycache__/rfc3565.cpython-310.pyc | Bin 0 -> 1127 bytes .../__pycache__/rfc3657.cpython-310.pyc | Bin 0 -> 1324 bytes .../__pycache__/rfc3709.cpython-310.pyc | Bin 0 -> 4371 bytes .../__pycache__/rfc3739.cpython-310.pyc | Bin 0 -> 4378 bytes .../__pycache__/rfc3770.cpython-310.pyc | Bin 0 -> 1116 bytes .../__pycache__/rfc3779.cpython-310.pyc | Bin 0 -> 2760 bytes .../__pycache__/rfc3820.cpython-310.pyc | Bin 0 -> 1423 bytes .../__pycache__/rfc3852.cpython-310.pyc | Bin 0 -> 15074 bytes .../__pycache__/rfc4010.cpython-310.pyc | Bin 0 -> 1148 bytes .../__pycache__/rfc4043.cpython-310.pyc | Bin 0 -> 877 bytes .../__pycache__/rfc4055.cpython-310.pyc | Bin 0 -> 4954 bytes .../__pycache__/rfc4073.cpython-310.pyc | Bin 0 -> 1162 bytes .../__pycache__/rfc4108.cpython-310.pyc | Bin 0 -> 7317 bytes .../__pycache__/rfc4210.cpython-310.pyc | Bin 0 -> 23405 bytes .../__pycache__/rfc4211.cpython-310.pyc | Bin 0 -> 8457 bytes .../__pycache__/rfc4334.cpython-310.pyc | Bin 0 -> 1207 bytes .../__pycache__/rfc4357.cpython-310.pyc | Bin 0 -> 9494 bytes .../__pycache__/rfc4387.cpython-310.pyc | Bin 0 -> 372 bytes .../__pycache__/rfc4476.cpython-310.pyc | Bin 0 -> 1860 bytes .../__pycache__/rfc4490.cpython-310.pyc | Bin 0 -> 2607 bytes .../__pycache__/rfc4491.cpython-310.pyc | Bin 0 -> 522 bytes .../__pycache__/rfc4683.cpython-310.pyc | Bin 0 -> 1465 bytes .../__pycache__/rfc4985.cpython-310.pyc | Bin 0 -> 806 bytes .../__pycache__/rfc5035.cpython-310.pyc | Bin 0 -> 2605 bytes .../__pycache__/rfc5083.cpython-310.pyc | Bin 0 -> 1280 bytes .../__pycache__/rfc5084.cpython-310.pyc | Bin 0 -> 1906 bytes .../__pycache__/rfc5126.cpython-310.pyc | Bin 0 -> 13384 bytes .../__pycache__/rfc5208.cpython-310.pyc | Bin 0 -> 1959 bytes .../__pycache__/rfc5275.cpython-310.pyc | Bin 0 -> 8300 bytes .../__pycache__/rfc5280.cpython-310.pyc | Bin 0 -> 34355 bytes .../__pycache__/rfc5480.cpython-310.pyc | Bin 0 -> 2801 bytes .../__pycache__/rfc5636.cpython-310.pyc | Bin 0 -> 2337 bytes .../__pycache__/rfc5639.cpython-310.pyc | Bin 0 -> 840 bytes .../__pycache__/rfc5649.cpython-310.pyc | Bin 0 -> 788 bytes .../__pycache__/rfc5652.cpython-310.pyc | Bin 0 -> 15575 bytes .../__pycache__/rfc5697.cpython-310.pyc | Bin 0 -> 1435 bytes .../__pycache__/rfc5751.cpython-310.pyc | Bin 0 -> 2214 bytes .../__pycache__/rfc5752.cpython-310.pyc | Bin 0 -> 1186 bytes .../__pycache__/rfc5753.cpython-310.pyc | Bin 0 -> 3171 bytes .../__pycache__/rfc5755.cpython-310.pyc | Bin 0 -> 9516 bytes .../__pycache__/rfc5913.cpython-310.pyc | Bin 0 -> 872 bytes .../__pycache__/rfc5914.cpython-310.pyc | Bin 0 -> 2846 bytes .../__pycache__/rfc5915.cpython-310.pyc | Bin 0 -> 944 bytes .../__pycache__/rfc5916.cpython-310.pyc | Bin 0 -> 539 bytes .../__pycache__/rfc5917.cpython-310.pyc | Bin 0 -> 1039 bytes .../__pycache__/rfc5924.cpython-310.pyc | Bin 0 -> 312 bytes .../__pycache__/rfc5934.cpython-310.pyc | Bin 0 -> 14537 bytes .../__pycache__/rfc5940.cpython-310.pyc | Bin 0 -> 993 bytes .../__pycache__/rfc5958.cpython-310.pyc | Bin 0 -> 2764 bytes .../__pycache__/rfc5990.cpython-310.pyc | Bin 0 -> 3919 bytes .../__pycache__/rfc6010.cpython-310.pyc | Bin 0 -> 1858 bytes .../__pycache__/rfc6019.cpython-310.pyc | Bin 0 -> 834 bytes .../__pycache__/rfc6031.cpython-310.pyc | Bin 0 -> 10451 bytes .../__pycache__/rfc6032.cpython-310.pyc | Bin 0 -> 1388 bytes .../__pycache__/rfc6120.cpython-310.pyc | Bin 0 -> 646 bytes .../__pycache__/rfc6170.cpython-310.pyc | Bin 0 -> 293 bytes .../__pycache__/rfc6187.cpython-310.pyc | Bin 0 -> 386 bytes .../__pycache__/rfc6210.cpython-310.pyc | Bin 0 -> 818 bytes .../__pycache__/rfc6211.cpython-310.pyc | Bin 0 -> 1409 bytes .../__pycache__/rfc6402.cpython-310.pyc | Bin 0 -> 11944 bytes .../__pycache__/rfc6482.cpython-310.pyc | Bin 0 -> 2022 bytes .../__pycache__/rfc6486.cpython-310.pyc | Bin 0 -> 1635 bytes .../__pycache__/rfc6487.cpython-310.pyc | Bin 0 -> 376 bytes .../__pycache__/rfc6664.cpython-310.pyc | Bin 0 -> 2814 bytes .../__pycache__/rfc6955.cpython-310.pyc | Bin 0 -> 1882 bytes .../__pycache__/rfc6960.cpython-310.pyc | Bin 0 -> 5961 bytes .../__pycache__/rfc7030.cpython-310.pyc | Bin 0 -> 1220 bytes .../__pycache__/rfc7191.cpython-310.pyc | Bin 0 -> 5905 bytes .../__pycache__/rfc7229.cpython-310.pyc | Bin 0 -> 632 bytes .../__pycache__/rfc7292.cpython-310.pyc | Bin 0 -> 5788 bytes .../__pycache__/rfc7296.cpython-310.pyc | Bin 0 -> 885 bytes .../__pycache__/rfc7508.cpython-310.pyc | Bin 0 -> 2407 bytes .../__pycache__/rfc7585.cpython-310.pyc | Bin 0 -> 860 bytes .../__pycache__/rfc7633.cpython-310.pyc | Bin 0 -> 664 bytes .../__pycache__/rfc7773.cpython-310.pyc | Bin 0 -> 1182 bytes .../__pycache__/rfc7894.cpython-310.pyc | Bin 0 -> 1684 bytes .../__pycache__/rfc7906.cpython-310.pyc | Bin 0 -> 12284 bytes .../__pycache__/rfc7914.cpython-310.pyc | Bin 0 -> 1087 bytes .../__pycache__/rfc8017.cpython-310.pyc | Bin 0 -> 3456 bytes .../__pycache__/rfc8018.cpython-310.pyc | Bin 0 -> 4117 bytes .../__pycache__/rfc8103.cpython-310.pyc | Bin 0 -> 859 bytes .../__pycache__/rfc8209.cpython-310.pyc | Bin 0 -> 316 bytes .../__pycache__/rfc8226.cpython-310.pyc | Bin 0 -> 3358 bytes .../__pycache__/rfc8358.cpython-310.pyc | Bin 0 -> 730 bytes .../__pycache__/rfc8360.cpython-310.pyc | Bin 0 -> 580 bytes .../__pycache__/rfc8398.cpython-310.pyc | Bin 0 -> 829 bytes .../__pycache__/rfc8410.cpython-310.pyc | Bin 0 -> 1027 bytes .../__pycache__/rfc8418.cpython-310.pyc | Bin 0 -> 1086 bytes .../__pycache__/rfc8419.cpython-310.pyc | Bin 0 -> 1006 bytes .../__pycache__/rfc8479.cpython-310.pyc | Bin 0 -> 853 bytes .../__pycache__/rfc8494.cpython-310.pyc | Bin 0 -> 1868 bytes .../__pycache__/rfc8520.cpython-310.pyc | Bin 0 -> 990 bytes .../__pycache__/rfc8619.cpython-310.pyc | Bin 0 -> 641 bytes .../__pycache__/rfc8649.cpython-310.pyc | Bin 0 -> 785 bytes .../__pycache__/rfc8692.cpython-310.pyc | Bin 0 -> 1056 bytes .../__pycache__/rfc8696.cpython-310.pyc | Bin 0 -> 2818 bytes .../__pycache__/rfc8702.cpython-310.pyc | Bin 0 -> 1717 bytes .../__pycache__/rfc8708.cpython-310.pyc | Bin 0 -> 703 bytes .../__pycache__/rfc8769.cpython-310.pyc | Bin 0 -> 354 bytes .../Lib/site-packages/pyasn1_modules/pem.py | 58 + .../site-packages/pyasn1_modules/rfc1155.py | 96 + .../site-packages/pyasn1_modules/rfc1157.py | 126 + .../site-packages/pyasn1_modules/rfc1901.py | 22 + .../site-packages/pyasn1_modules/rfc1902.py | 129 + .../site-packages/pyasn1_modules/rfc1905.py | 135 + .../site-packages/pyasn1_modules/rfc2251.py | 563 ++ .../site-packages/pyasn1_modules/rfc2314.py | 48 + .../site-packages/pyasn1_modules/rfc2315.py | 294 + .../site-packages/pyasn1_modules/rfc2437.py | 69 + .../site-packages/pyasn1_modules/rfc2459.py | 1339 +++ .../site-packages/pyasn1_modules/rfc2511.py | 258 + .../site-packages/pyasn1_modules/rfc2560.py | 225 + .../site-packages/pyasn1_modules/rfc2631.py | 37 + .../site-packages/pyasn1_modules/rfc2634.py | 336 + .../site-packages/pyasn1_modules/rfc2876.py | 56 + .../site-packages/pyasn1_modules/rfc2985.py | 588 ++ .../site-packages/pyasn1_modules/rfc2986.py | 75 + .../site-packages/pyasn1_modules/rfc3058.py | 42 + .../site-packages/pyasn1_modules/rfc3114.py | 77 + .../site-packages/pyasn1_modules/rfc3125.py | 469 + .../site-packages/pyasn1_modules/rfc3161.py | 142 + .../site-packages/pyasn1_modules/rfc3274.py | 59 + .../site-packages/pyasn1_modules/rfc3279.py | 260 + .../site-packages/pyasn1_modules/rfc3280.py | 1543 +++ .../site-packages/pyasn1_modules/rfc3281.py | 331 + .../site-packages/pyasn1_modules/rfc3370.py | 146 + .../site-packages/pyasn1_modules/rfc3412.py | 53 + .../site-packages/pyasn1_modules/rfc3414.py | 28 + .../site-packages/pyasn1_modules/rfc3447.py | 45 + .../site-packages/pyasn1_modules/rfc3537.py | 34 + .../site-packages/pyasn1_modules/rfc3560.py | 74 + .../site-packages/pyasn1_modules/rfc3565.py | 57 + .../site-packages/pyasn1_modules/rfc3657.py | 66 + .../site-packages/pyasn1_modules/rfc3709.py | 207 + .../site-packages/pyasn1_modules/rfc3739.py | 203 + .../site-packages/pyasn1_modules/rfc3770.py | 75 + .../site-packages/pyasn1_modules/rfc3779.py | 137 + .../site-packages/pyasn1_modules/rfc3820.py | 65 + .../site-packages/pyasn1_modules/rfc3852.py | 706 ++ .../site-packages/pyasn1_modules/rfc4010.py | 58 + .../site-packages/pyasn1_modules/rfc4043.py | 43 + .../site-packages/pyasn1_modules/rfc4055.py | 258 + .../site-packages/pyasn1_modules/rfc4073.py | 59 + .../site-packages/pyasn1_modules/rfc4108.py | 350 + .../site-packages/pyasn1_modules/rfc4210.py | 803 ++ .../site-packages/pyasn1_modules/rfc4211.py | 396 + .../site-packages/pyasn1_modules/rfc4334.py | 75 + .../site-packages/pyasn1_modules/rfc4357.py | 477 + .../site-packages/pyasn1_modules/rfc4387.py | 23 + .../site-packages/pyasn1_modules/rfc4476.py | 93 + .../site-packages/pyasn1_modules/rfc4490.py | 113 + .../site-packages/pyasn1_modules/rfc4491.py | 44 + .../site-packages/pyasn1_modules/rfc4683.py | 72 + .../site-packages/pyasn1_modules/rfc4985.py | 49 + .../site-packages/pyasn1_modules/rfc5035.py | 199 + .../site-packages/pyasn1_modules/rfc5083.py | 52 + .../site-packages/pyasn1_modules/rfc5084.py | 97 + .../site-packages/pyasn1_modules/rfc5126.py | 577 ++ .../site-packages/pyasn1_modules/rfc5208.py | 56 + .../site-packages/pyasn1_modules/rfc5275.py | 404 + .../site-packages/pyasn1_modules/rfc5280.py | 1658 ++++ .../site-packages/pyasn1_modules/rfc5480.py | 190 + .../site-packages/pyasn1_modules/rfc5636.py | 113 + .../site-packages/pyasn1_modules/rfc5639.py | 49 + .../site-packages/pyasn1_modules/rfc5649.py | 33 + .../site-packages/pyasn1_modules/rfc5652.py | 761 ++ .../site-packages/pyasn1_modules/rfc5697.py | 70 + .../site-packages/pyasn1_modules/rfc5751.py | 124 + .../site-packages/pyasn1_modules/rfc5752.py | 49 + .../site-packages/pyasn1_modules/rfc5753.py | 157 + .../site-packages/pyasn1_modules/rfc5755.py | 398 + .../site-packages/pyasn1_modules/rfc5913.py | 44 + .../site-packages/pyasn1_modules/rfc5914.py | 119 + .../site-packages/pyasn1_modules/rfc5915.py | 32 + .../site-packages/pyasn1_modules/rfc5916.py | 35 + .../site-packages/pyasn1_modules/rfc5917.py | 55 + .../site-packages/pyasn1_modules/rfc5924.py | 19 + .../site-packages/pyasn1_modules/rfc5934.py | 786 ++ .../site-packages/pyasn1_modules/rfc5940.py | 59 + .../site-packages/pyasn1_modules/rfc5958.py | 98 + .../site-packages/pyasn1_modules/rfc5990.py | 237 + .../site-packages/pyasn1_modules/rfc6010.py | 88 + .../site-packages/pyasn1_modules/rfc6019.py | 45 + .../site-packages/pyasn1_modules/rfc6031.py | 469 + .../site-packages/pyasn1_modules/rfc6032.py | 68 + .../site-packages/pyasn1_modules/rfc6120.py | 43 + .../site-packages/pyasn1_modules/rfc6170.py | 17 + .../site-packages/pyasn1_modules/rfc6187.py | 22 + .../site-packages/pyasn1_modules/rfc6210.py | 42 + .../site-packages/pyasn1_modules/rfc6211.py | 72 + .../site-packages/pyasn1_modules/rfc6402.py | 628 ++ .../site-packages/pyasn1_modules/rfc6482.py | 74 + .../site-packages/pyasn1_modules/rfc6486.py | 68 + .../site-packages/pyasn1_modules/rfc6487.py | 22 + .../site-packages/pyasn1_modules/rfc6664.py | 147 + .../site-packages/pyasn1_modules/rfc6955.py | 108 + .../site-packages/pyasn1_modules/rfc6960.py | 223 + .../site-packages/pyasn1_modules/rfc7030.py | 66 + .../site-packages/pyasn1_modules/rfc7191.py | 261 + .../site-packages/pyasn1_modules/rfc7229.py | 29 + .../site-packages/pyasn1_modules/rfc7292.py | 357 + .../site-packages/pyasn1_modules/rfc7296.py | 32 + .../site-packages/pyasn1_modules/rfc7508.py | 90 + .../site-packages/pyasn1_modules/rfc7585.py | 50 + .../site-packages/pyasn1_modules/rfc7633.py | 38 + .../site-packages/pyasn1_modules/rfc7773.py | 52 + .../site-packages/pyasn1_modules/rfc7894.py | 92 + .../site-packages/pyasn1_modules/rfc7906.py | 736 ++ .../site-packages/pyasn1_modules/rfc7914.py | 49 + .../site-packages/pyasn1_modules/rfc8017.py | 153 + .../site-packages/pyasn1_modules/rfc8018.py | 260 + .../site-packages/pyasn1_modules/rfc8103.py | 36 + .../site-packages/pyasn1_modules/rfc8209.py | 20 + .../site-packages/pyasn1_modules/rfc8226.py | 149 + .../site-packages/pyasn1_modules/rfc8358.py | 50 + .../site-packages/pyasn1_modules/rfc8360.py | 44 + .../site-packages/pyasn1_modules/rfc8398.py | 52 + .../site-packages/pyasn1_modules/rfc8410.py | 43 + .../site-packages/pyasn1_modules/rfc8418.py | 36 + .../site-packages/pyasn1_modules/rfc8419.py | 68 + .../site-packages/pyasn1_modules/rfc8479.py | 45 + .../site-packages/pyasn1_modules/rfc8494.py | 80 + .../site-packages/pyasn1_modules/rfc8520.py | 63 + .../site-packages/pyasn1_modules/rfc8619.py | 45 + .../site-packages/pyasn1_modules/rfc8649.py | 40 + .../site-packages/pyasn1_modules/rfc8692.py | 79 + .../site-packages/pyasn1_modules/rfc8696.py | 104 + .../site-packages/pyasn1_modules/rfc8702.py | 105 + .../site-packages/pyasn1_modules/rfc8708.py | 41 + .../site-packages/pyasn1_modules/rfc8769.py | 21 + .../pydantic-2.9.2.dist-info/INSTALLER | 1 + .../pydantic-2.9.2.dist-info/METADATA | 1469 +++ .../pydantic-2.9.2.dist-info/RECORD | 212 + .../pydantic-2.9.2.dist-info/REQUESTED | 0 .../pydantic-2.9.2.dist-info/WHEEL | 4 + .../pydantic-2.9.2.dist-info/licenses/LICENSE | 21 + .../Lib/site-packages/pydantic/__init__.py | 421 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7817 bytes .../__pycache__/_migration.cpython-310.pyc | Bin 0 -> 10158 bytes .../alias_generators.cpython-310.pyc | Bin 0 -> 2187 bytes .../__pycache__/aliases.cpython-310.pyc | Bin 0 -> 5301 bytes .../annotated_handlers.cpython-310.pyc | Bin 0 -> 5171 bytes .../class_validators.cpython-310.pyc | Bin 0 -> 344 bytes .../__pycache__/color.cpython-310.pyc | Bin 0 -> 22261 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 4923 bytes .../__pycache__/dataclasses.cpython-310.pyc | Bin 0 -> 10520 bytes .../datetime_parse.cpython-310.pyc | Bin 0 -> 344 bytes .../__pycache__/decorator.cpython-310.pyc | Bin 0 -> 334 bytes .../__pycache__/env_settings.cpython-310.pyc | Bin 0 -> 340 bytes .../error_wrappers.cpython-310.pyc | Bin 0 -> 344 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 5438 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 42196 bytes .../functional_serializers.cpython-310.pyc | Bin 0 -> 14850 bytes .../functional_validators.cpython-310.pyc | Bin 0 -> 25377 bytes .../__pycache__/generics.cpython-310.pyc | Bin 0 -> 332 bytes .../pydantic/__pycache__/json.cpython-310.pyc | Bin 0 -> 324 bytes .../__pycache__/json_schema.cpython-310.pyc | Bin 0 -> 82161 bytes .../pydantic/__pycache__/main.cpython-310.pyc | Bin 0 -> 48391 bytes .../pydantic/__pycache__/mypy.cpython-310.pyc | Bin 0 -> 41191 bytes .../__pycache__/networks.cpython-310.pyc | Bin 0 -> 14248 bytes .../__pycache__/parse.cpython-310.pyc | Bin 0 -> 326 bytes .../__pycache__/root_model.cpython-310.pyc | Bin 0 -> 6292 bytes .../__pycache__/schema.cpython-310.pyc | Bin 0 -> 328 bytes .../__pycache__/tools.cpython-310.pyc | Bin 0 -> 326 bytes .../__pycache__/type_adapter.cpython-310.pyc | Bin 0 -> 21775 bytes .../__pycache__/types.cpython-310.pyc | Bin 0 -> 74464 bytes .../__pycache__/typing.cpython-310.pyc | Bin 0 -> 324 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 326 bytes .../validate_call_decorator.cpython-310.pyc | Bin 0 -> 2549 bytes .../__pycache__/validators.cpython-310.pyc | Bin 0 -> 336 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 2645 bytes .../__pycache__/warnings.cpython-310.pyc | Bin 0 -> 3989 bytes .../pydantic/_internal/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/_config.cpython-310.pyc | Bin 0 -> 10942 bytes .../_core_metadata.cpython-310.pyc | Bin 0 -> 3741 bytes .../__pycache__/_core_utils.cpython-310.pyc | Bin 0 -> 18624 bytes .../__pycache__/_dataclasses.cpython-310.pyc | Bin 0 -> 8042 bytes .../__pycache__/_decorators.cpython-310.pyc | Bin 0 -> 27481 bytes .../_decorators_v1.cpython-310.pyc | Bin 0 -> 7347 bytes .../_discriminated_union.cpython-310.pyc | Bin 0 -> 15447 bytes .../_docs_extraction.cpython-310.pyc | Bin 0 -> 3420 bytes .../__pycache__/_fields.cpython-310.pyc | Bin 0 -> 9260 bytes .../__pycache__/_forward_ref.cpython-310.pyc | Bin 0 -> 1184 bytes .../_generate_schema.cpython-310.pyc | Bin 0 -> 75748 bytes .../__pycache__/_generics.cpython-310.pyc | Bin 0 -> 17581 bytes .../__pycache__/_git.cpython-310.pyc | Bin 0 -> 1195 bytes .../__pycache__/_import_utils.cpython-310.pyc | Bin 0 -> 746 bytes .../_internal_dataclass.cpython-310.pyc | Bin 0 -> 293 bytes .../_known_annotated_metadata.cpython-310.pyc | Bin 0 -> 11015 bytes .../__pycache__/_mock_val_ser.cpython-310.pyc | Bin 0 -> 7247 bytes .../_model_construction.cpython-310.pyc | Bin 0 -> 23636 bytes .../__pycache__/_repr.cpython-310.pyc | Bin 0 -> 4952 bytes .../_schema_generation_shared.cpython-310.pyc | Bin 0 -> 5150 bytes .../__pycache__/_serializers.cpython-310.pyc | Bin 0 -> 1214 bytes .../__pycache__/_signature.cpython-310.pyc | Bin 0 -> 4459 bytes .../_std_types_schema.cpython-310.pyc | Bin 0 -> 11379 bytes .../__pycache__/_typing_extra.cpython-310.pyc | Bin 0 -> 17796 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 12388 bytes .../_validate_call.cpython-310.pyc | Bin 0 -> 2898 bytes .../__pycache__/_validators.cpython-310.pyc | Bin 0 -> 10008 bytes .../pydantic/_internal/_config.py | 341 + .../pydantic/_internal/_core_metadata.py | 84 + .../pydantic/_internal/_core_utils.py | 570 ++ .../pydantic/_internal/_dataclasses.py | 232 + .../pydantic/_internal/_decorators.py | 827 ++ .../pydantic/_internal/_decorators_v1.py | 174 + .../_internal/_discriminated_union.py | 503 + .../pydantic/_internal/_docs_extraction.py | 108 + .../pydantic/_internal/_fields.py | 333 + .../pydantic/_internal/_forward_ref.py | 23 + .../pydantic/_internal/_generate_schema.py | 2596 +++++ .../pydantic/_internal/_generics.py | 518 + .../site-packages/pydantic/_internal/_git.py | 27 + .../pydantic/_internal/_import_utils.py | 20 + .../pydantic/_internal/_internal_dataclass.py | 7 + .../_internal/_known_annotated_metadata.py | 397 + .../pydantic/_internal/_mock_val_ser.py | 194 + .../pydantic/_internal/_model_construction.py | 752 ++ .../site-packages/pydantic/_internal/_repr.py | 118 + .../_internal/_schema_generation_shared.py | 125 + .../pydantic/_internal/_serializers.py | 51 + .../pydantic/_internal/_signature.py | 164 + .../pydantic/_internal/_std_types_schema.py | 403 + .../pydantic/_internal/_typing_extra.py | 581 ++ .../pydantic/_internal/_utils.py | 363 + .../pydantic/_internal/_validate_call.py | 99 + .../pydantic/_internal/_validators.py | 314 + .../Lib/site-packages/pydantic/_migration.py | 308 + .../pydantic/alias_generators.py | 62 + .../Lib/site-packages/pydantic/aliases.py | 132 + .../pydantic/annotated_handlers.py | 121 + .../pydantic/class_validators.py | 5 + ocr/.venv/Lib/site-packages/pydantic/color.py | 604 ++ .../Lib/site-packages/pydantic/config.py | 1062 ++ .../Lib/site-packages/pydantic/dataclasses.py | 344 + .../site-packages/pydantic/datetime_parse.py | 5 + .../Lib/site-packages/pydantic/decorator.py | 5 + .../pydantic/deprecated/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../class_validators.cpython-310.pyc | Bin 0 -> 9862 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3122 bytes .../copy_internals.cpython-310.pyc | Bin 0 -> 5176 bytes .../__pycache__/decorator.cpython-310.pyc | Bin 0 -> 8751 bytes .../__pycache__/json.cpython-310.pyc | Bin 0 -> 4295 bytes .../__pycache__/parse.cpython-310.pyc | Bin 0 -> 2255 bytes .../__pycache__/tools.cpython-310.pyc | Bin 0 -> 2710 bytes .../pydantic/deprecated/class_validators.py | 256 + .../pydantic/deprecated/config.py | 72 + .../pydantic/deprecated/copy_internals.py | 224 + .../pydantic/deprecated/decorator.py | 279 + .../site-packages/pydantic/deprecated/json.py | 141 + .../pydantic/deprecated/parse.py | 80 + .../pydantic/deprecated/tools.py | 103 + .../site-packages/pydantic/env_settings.py | 5 + .../site-packages/pydantic/error_wrappers.py | 5 + .../Lib/site-packages/pydantic/errors.py | 157 + .../pydantic/experimental/__init__.py | 10 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 517 bytes .../__pycache__/pipeline.cpython-310.pyc | Bin 0 -> 23215 bytes .../pydantic/experimental/pipeline.py | 669 ++ .../Lib/site-packages/pydantic/fields.py | 1266 +++ .../pydantic/functional_serializers.py | 438 + .../pydantic/functional_validators.py | 808 ++ .../Lib/site-packages/pydantic/generics.py | 5 + ocr/.venv/Lib/site-packages/pydantic/json.py | 5 + .../Lib/site-packages/pydantic/json_schema.py | 2574 +++++ ocr/.venv/Lib/site-packages/pydantic/main.py | 1610 +++ ocr/.venv/Lib/site-packages/pydantic/mypy.py | 1396 +++ .../Lib/site-packages/pydantic/networks.py | 778 ++ ocr/.venv/Lib/site-packages/pydantic/parse.py | 5 + .../site-packages/pydantic/plugin/__init__.py | 171 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7313 bytes .../__pycache__/_loader.cpython-310.pyc | Bin 0 -> 1598 bytes .../_schema_validator.cpython-310.pyc | Bin 0 -> 4942 bytes .../site-packages/pydantic/plugin/_loader.py | 56 + .../pydantic/plugin/_schema_validator.py | 139 + ocr/.venv/Lib/site-packages/pydantic/py.typed | 0 .../Lib/site-packages/pydantic/root_model.py | 154 + .../Lib/site-packages/pydantic/schema.py | 5 + ocr/.venv/Lib/site-packages/pydantic/tools.py | 5 + .../site-packages/pydantic/type_adapter.py | 594 ++ ocr/.venv/Lib/site-packages/pydantic/types.py | 3074 ++++++ .../Lib/site-packages/pydantic/typing.py | 5 + ocr/.venv/Lib/site-packages/pydantic/utils.py | 5 + .../Lib/site-packages/pydantic/v1/__init__.py | 131 + .../v1/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2171 bytes .../_hypothesis_plugin.cpython-310.pyc | Bin 0 -> 10257 bytes .../annotated_types.cpython-310.pyc | Bin 0 -> 3185 bytes .../class_validators.cpython-310.pyc | Bin 0 -> 13686 bytes .../v1/__pycache__/color.cpython-310.pyc | Bin 0 -> 18107 bytes .../v1/__pycache__/config.cpython-310.pyc | Bin 0 -> 6108 bytes .../__pycache__/dataclasses.cpython-310.pyc | Bin 0 -> 15206 bytes .../datetime_parse.cpython-310.pyc | Bin 0 -> 6640 bytes .../v1/__pycache__/decorator.cpython-310.pyc | Bin 0 -> 8797 bytes .../__pycache__/env_settings.cpython-310.pyc | Bin 0 -> 11925 bytes .../error_wrappers.cpython-310.pyc | Bin 0 -> 5997 bytes .../v1/__pycache__/errors.cpython-310.pyc | Bin 0 -> 22708 bytes .../v1/__pycache__/fields.cpython-310.pyc | Bin 0 -> 34911 bytes .../v1/__pycache__/generics.cpython-310.pyc | Bin 0 -> 11485 bytes .../v1/__pycache__/json.cpython-310.pyc | Bin 0 -> 3650 bytes .../v1/__pycache__/main.cpython-310.pyc | Bin 0 -> 29738 bytes .../v1/__pycache__/mypy.cpython-310.pyc | Bin 0 -> 29288 bytes .../v1/__pycache__/networks.cpython-310.pyc | Bin 0 -> 20251 bytes .../v1/__pycache__/parse.cpython-310.pyc | Bin 0 -> 1784 bytes .../v1/__pycache__/schema.cpython-310.pyc | Bin 0 -> 32724 bytes .../v1/__pycache__/tools.cpython-310.pyc | Bin 0 -> 2818 bytes .../v1/__pycache__/types.cpython-310.pyc | Bin 0 -> 32810 bytes .../v1/__pycache__/typing.cpython-310.pyc | Bin 0 -> 14782 bytes .../v1/__pycache__/utils.cpython-310.pyc | Bin 0 -> 25672 bytes .../v1/__pycache__/validators.cpython-310.pyc | Bin 0 -> 18519 bytes .../v1/__pycache__/version.cpython-310.pyc | Bin 0 -> 1301 bytes .../pydantic/v1/_hypothesis_plugin.py | 391 + .../pydantic/v1/annotated_types.py | 72 + .../pydantic/v1/class_validators.py | 361 + .../Lib/site-packages/pydantic/v1/color.py | 494 + .../Lib/site-packages/pydantic/v1/config.py | 191 + .../site-packages/pydantic/v1/dataclasses.py | 500 + .../pydantic/v1/datetime_parse.py | 248 + .../site-packages/pydantic/v1/decorator.py | 264 + .../site-packages/pydantic/v1/env_settings.py | 350 + .../pydantic/v1/error_wrappers.py | 161 + .../Lib/site-packages/pydantic/v1/errors.py | 646 ++ .../Lib/site-packages/pydantic/v1/fields.py | 1253 +++ .../Lib/site-packages/pydantic/v1/generics.py | 400 + .../Lib/site-packages/pydantic/v1/json.py | 112 + .../Lib/site-packages/pydantic/v1/main.py | 1107 +++ .../Lib/site-packages/pydantic/v1/mypy.py | 949 ++ .../Lib/site-packages/pydantic/v1/networks.py | 747 ++ .../Lib/site-packages/pydantic/v1/parse.py | 66 + .../Lib/site-packages/pydantic/v1/py.typed | 0 .../Lib/site-packages/pydantic/v1/schema.py | 1163 +++ .../Lib/site-packages/pydantic/v1/tools.py | 92 + .../Lib/site-packages/pydantic/v1/types.py | 1205 +++ .../Lib/site-packages/pydantic/v1/typing.py | 608 ++ .../Lib/site-packages/pydantic/v1/utils.py | 804 ++ .../site-packages/pydantic/v1/validators.py | 765 ++ .../Lib/site-packages/pydantic/v1/version.py | 38 + .../pydantic/validate_call_decorator.py | 69 + .../Lib/site-packages/pydantic/validators.py | 5 + .../Lib/site-packages/pydantic/version.py | 78 + .../Lib/site-packages/pydantic/warnings.py | 79 + .../pydantic_core-2.23.4.dist-info/INSTALLER | 1 + .../pydantic_core-2.23.4.dist-info/METADATA | 161 + .../pydantic_core-2.23.4.dist-info/RECORD | 12 + .../pydantic_core-2.23.4.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/pydantic_core/__init__.py | 139 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2733 bytes .../__pycache__/core_schema.cpython-310.pyc | Bin 0 -> 123098 bytes .../_pydantic_core.cp310-win_amd64.pyd | Bin 0 -> 5033472 bytes .../pydantic_core/_pydantic_core.pyi | 1166 +++ .../pydantic_core/core_schema.py | 4138 ++++++++ .../Lib/site-packages/pydantic_core/py.typed | 0 .../python_dotenv-1.0.1.dist-info/INSTALLER | 1 + .../python_dotenv-1.0.1.dist-info/LICENSE | 27 + .../python_dotenv-1.0.1.dist-info/METADATA | 692 ++ .../python_dotenv-1.0.1.dist-info/RECORD | 26 + .../python_dotenv-1.0.1.dist-info/REQUESTED | 0 .../python_dotenv-1.0.1.dist-info/WHEEL | 5 + .../entry_points.txt | 2 + .../top_level.txt | 1 + .../INSTALLER | 1 + .../python_multipart-0.0.9.dist-info/METADATA | 70 + .../python_multipart-0.0.9.dist-info/RECORD | 14 + .../REQUESTED | 0 .../python_multipart-0.0.9.dist-info/WHEEL | 4 + .../licenses/LICENSE.txt | 14 + .../pyyaml-6.0.3.dist-info/INSTALLER | 1 + .../pyyaml-6.0.3.dist-info/METADATA | 59 + .../pyyaml-6.0.3.dist-info/RECORD | 43 + .../pyyaml-6.0.3.dist-info/WHEEL | 5 + .../pyyaml-6.0.3.dist-info/licenses/LICENSE | 20 + .../pyyaml-6.0.3.dist-info/top_level.txt | 2 + .../requests-2.32.5.dist-info/INSTALLER | 1 + .../requests-2.32.5.dist-info/METADATA | 133 + .../requests-2.32.5.dist-info/RECORD | 42 + .../requests-2.32.5.dist-info/WHEEL | 5 + .../licenses/LICENSE | 175 + .../requests-2.32.5.dist-info/top_level.txt | 1 + .../Lib/site-packages/requests/__init__.py | 184 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3923 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 537 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1613 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 21670 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6713 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8109 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 614 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1945 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18708 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 6216 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2836 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 981 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24298 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 618 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19719 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4731 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4425 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24516 bytes .../Lib/site-packages/requests/__version__.py | 14 + .../site-packages/requests/_internal_utils.py | 50 + .../Lib/site-packages/requests/adapters.py | 696 ++ ocr/.venv/Lib/site-packages/requests/api.py | 157 + ocr/.venv/Lib/site-packages/requests/auth.py | 314 + ocr/.venv/Lib/site-packages/requests/certs.py | 17 + .../Lib/site-packages/requests/compat.py | 106 + .../Lib/site-packages/requests/cookies.py | 561 ++ .../Lib/site-packages/requests/exceptions.py | 151 + ocr/.venv/Lib/site-packages/requests/help.py | 134 + ocr/.venv/Lib/site-packages/requests/hooks.py | 33 + .../Lib/site-packages/requests/models.py | 1039 ++ .../Lib/site-packages/requests/packages.py | 23 + .../Lib/site-packages/requests/sessions.py | 831 ++ .../site-packages/requests/status_codes.py | 128 + .../Lib/site-packages/requests/structures.py | 99 + ocr/.venv/Lib/site-packages/requests/utils.py | 1086 ++ .../rsa-4.9.1.dist-info/INSTALLER | 1 + .../site-packages/rsa-4.9.1.dist-info/LICENSE | 13 + .../rsa-4.9.1.dist-info/METADATA | 140 + .../site-packages/rsa-4.9.1.dist-info/RECORD | 41 + .../site-packages/rsa-4.9.1.dist-info/WHEEL | 4 + .../rsa-4.9.1.dist-info/entry_points.txt | 8 + ocr/.venv/Lib/site-packages/rsa/__init__.py | 60 + .../rsa/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1075 bytes .../rsa/__pycache__/asn1.cpython-310.pyc | Bin 0 -> 1436 bytes .../rsa/__pycache__/cli.cpython-310.pyc | Bin 0 -> 9120 bytes .../rsa/__pycache__/common.cpython-310.pyc | Bin 0 -> 4288 bytes .../rsa/__pycache__/core.cpython-310.pyc | Bin 0 -> 1310 bytes .../rsa/__pycache__/key.cpython-310.pyc | Bin 0 -> 25206 bytes .../rsa/__pycache__/parallel.cpython-310.pyc | Bin 0 -> 1920 bytes .../rsa/__pycache__/pem.cpython-310.pyc | Bin 0 -> 2876 bytes .../rsa/__pycache__/pkcs1.cpython-310.pyc | Bin 0 -> 12526 bytes .../rsa/__pycache__/pkcs1_v2.cpython-310.pyc | Bin 0 -> 2658 bytes .../rsa/__pycache__/prime.cpython-310.pyc | Bin 0 -> 3888 bytes .../rsa/__pycache__/randnum.cpython-310.pyc | Bin 0 -> 1778 bytes .../rsa/__pycache__/transform.cpython-310.pyc | Bin 0 -> 1865 bytes .../rsa/__pycache__/util.cpython-310.pyc | Bin 0 -> 2009 bytes ocr/.venv/Lib/site-packages/rsa/asn1.py | 52 + ocr/.venv/Lib/site-packages/rsa/cli.py | 321 + ocr/.venv/Lib/site-packages/rsa/common.py | 184 + ocr/.venv/Lib/site-packages/rsa/core.py | 53 + ocr/.venv/Lib/site-packages/rsa/key.py | 858 ++ ocr/.venv/Lib/site-packages/rsa/parallel.py | 96 + ocr/.venv/Lib/site-packages/rsa/pem.py | 134 + ocr/.venv/Lib/site-packages/rsa/pkcs1.py | 485 + ocr/.venv/Lib/site-packages/rsa/pkcs1_v2.py | 100 + ocr/.venv/Lib/site-packages/rsa/prime.py | 198 + ocr/.venv/Lib/site-packages/rsa/py.typed | 1 + ocr/.venv/Lib/site-packages/rsa/randnum.py | 95 + ocr/.venv/Lib/site-packages/rsa/transform.py | 72 + ocr/.venv/Lib/site-packages/rsa/util.py | 97 + .../setuptools-63.2.0.dist-info/INSTALLER | 1 + .../setuptools-63.2.0.dist-info/LICENSE | 19 + .../setuptools-63.2.0.dist-info/METADATA | 140 + .../setuptools-63.2.0.dist-info/RECORD | 468 + .../setuptools-63.2.0.dist-info/REQUESTED | 0 .../setuptools-63.2.0.dist-info/WHEEL | 5 + .../entry_points.txt | 56 + .../setuptools-63.2.0.dist-info/top_level.txt | 3 + .../Lib/site-packages/setuptools/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6581 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 553 bytes .../__pycache__/_entry_points.cpython-310.pyc | Bin 0 -> 3016 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2079 bytes .../__pycache__/_importlib.cpython-310.pyc | Bin 0 -> 1349 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 917 bytes .../__pycache__/_path.cpython-310.pyc | Bin 0 -> 429 bytes .../__pycache__/_reqs.cpython-310.pyc | Bin 0 -> 832 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6183 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9863 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 860 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5299 bytes .../__pycache__/discovery.cpython-310.pyc | Bin 0 -> 20578 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 38379 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 2487 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 5579 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3738 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2984 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 910 bytes .../__pycache__/logging.cpython-310.pyc | Bin 0 -> 1213 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4638 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42642 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3621 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32688 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 485 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15761 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1115 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 327 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7375 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1033 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 561 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 2062 bytes .../__pycache__/_functools.cpython-310.pyc | Bin 0 -> 692 bytes .../__pycache__/_macos_compat.cpython-310.pyc | Bin 0 -> 456 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13862 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6572 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6582 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33359 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13965 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3581 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 7089 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 8331 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 255 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2772 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5921 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34127 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 4997 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7013 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10643 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 5967 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10803 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2312 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17530 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14790 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 428 bytes .../__pycache__/py39compat.cpython-310.pyc | Bin 0 -> 737 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2857 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12581 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8258 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 8649 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 13505 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7830 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5330 bytes .../setuptools/_distutils/_collections.py | 56 + .../setuptools/_distutils/_functools.py | 20 + .../setuptools/_distutils/_macos_compat.py | 12 + .../setuptools/_distutils/_msvccompiler.py | 591 ++ .../setuptools/_distutils/archive_util.py | 280 + .../setuptools/_distutils/bcppcompiler.py | 398 + .../setuptools/_distutils/ccompiler.py | 1193 +++ .../setuptools/_distutils/cmd.py | 434 + .../setuptools/_distutils/command/__init__.py | 32 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 534 bytes .../_framework_compat.cpython-310.pyc | Bin 0 -> 1926 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3649 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3641 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 20196 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12276 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8616 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3900 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4865 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16225 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9802 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4603 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 4556 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2135 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10365 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17223 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2356 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3315 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1771 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5199 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2204 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1043 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8571 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14508 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5358 bytes .../_distutils/command/_framework_compat.py | 55 + .../setuptools/_distutils/command/bdist.py | 155 + .../_distutils/command/bdist_dumb.py | 142 + .../_distutils/command/bdist_msi.py | 1114 +++ .../_distutils/command/bdist_rpm.py | 607 ++ .../_distutils/command/bdist_wininst.py | 418 + .../setuptools/_distutils/command/build.py | 152 + .../_distutils/command/build_clib.py | 208 + .../_distutils/command/build_ext.py | 780 ++ .../setuptools/_distutils/command/build_py.py | 408 + .../_distutils/command/build_scripts.py | 173 + .../setuptools/_distutils/command/check.py | 153 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 376 + .../setuptools/_distutils/command/install.py | 811 ++ .../_distutils/command/install_data.py | 84 + .../_distutils/command/install_egg_info.py | 87 + .../_distutils/command/install_headers.py | 45 + .../_distutils/command/install_lib.py | 238 + .../_distutils/command/install_scripts.py | 61 + .../_distutils/command/py37compat.py | 31 + .../setuptools/_distutils/command/register.py | 319 + .../setuptools/_distutils/command/sdist.py | 531 + .../setuptools/_distutils/command/upload.py | 205 + .../setuptools/_distutils/config.py | 139 + .../setuptools/_distutils/core.py | 283 + .../setuptools/_distutils/cygwinccompiler.py | 414 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 96 + .../setuptools/_distutils/dir_util.py | 239 + .../setuptools/_distutils/dist.py | 1286 +++ .../setuptools/_distutils/errors.py | 127 + .../setuptools/_distutils/extension.py | 248 + .../setuptools/_distutils/fancy_getopt.py | 468 + .../setuptools/_distutils/file_util.py | 245 + .../setuptools/_distutils/filelist.py | 371 + .../setuptools/_distutils/log.py | 80 + .../setuptools/_distutils/msvc9compiler.py | 820 ++ .../setuptools/_distutils/msvccompiler.py | 683 ++ .../setuptools/_distutils/py38compat.py | 8 + .../setuptools/_distutils/py39compat.py | 22 + .../setuptools/_distutils/spawn.py | 107 + .../setuptools/_distutils/sysconfig.py | 549 + .../setuptools/_distutils/text_file.py | 287 + .../setuptools/_distutils/unixccompiler.py | 382 + .../setuptools/_distutils/util.py | 520 + .../setuptools/_distutils/version.py | 358 + .../setuptools/_distutils/versionpredicate.py | 175 + .../site-packages/setuptools/_entry_points.py | 86 + .../Lib/site-packages/setuptools/_imp.py | 82 + .../site-packages/setuptools/_importlib.py | 47 + .../site-packages/setuptools/_itertools.py | 23 + .../Lib/site-packages/setuptools/_path.py | 7 + .../Lib/site-packages/setuptools/_reqs.py | 19 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16325 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66583 bytes .../_vendor/__pycache__/zipp.cpython-310.pyc | Bin 0 -> 10232 bytes .../_vendor/importlib_metadata/__init__.py | 1047 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 37422 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 2409 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 1584 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 2073 bytes .../__pycache__/_functools.cpython-310.pyc | Bin 0 -> 3174 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 2055 bytes .../__pycache__/_meta.cpython-310.pyc | Bin 0 -> 2363 bytes .../__pycache__/_text.cpython-310.pyc | Bin 0 -> 3107 bytes .../_vendor/importlib_metadata/_adapters.py | 68 + .../importlib_metadata/_collections.py | 30 + .../_vendor/importlib_metadata/_compat.py | 71 + .../_vendor/importlib_metadata/_functools.py | 104 + .../_vendor/importlib_metadata/_itertools.py | 73 + .../_vendor/importlib_metadata/_meta.py | 48 + .../_vendor/importlib_metadata/_text.py | 99 + .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 644 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 7352 bytes .../__pycache__/_common.cpython-310.pyc | Bin 0 -> 2642 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 3502 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 889 bytes .../__pycache__/_legacy.cpython-310.pyc | Bin 0 -> 4225 bytes .../__pycache__/abc.cpython-310.pyc | Bin 0 -> 5378 bytes .../__pycache__/readers.cpython-310.pyc | Bin 0 -> 5462 bytes .../__pycache__/simple.cpython-310.pyc | Bin 0 -> 4726 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../setuptools/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/context.cpython-310.pyc | Bin 0 -> 6328 bytes .../__pycache__/functools.cpython-310.pyc | Bin 0 -> 15614 bytes .../setuptools/_vendor/jaraco/context.py | 213 + .../setuptools/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 ++ .../text/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 19656 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 270 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 109991 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 17970 bytes .../setuptools/_vendor/more_itertools/more.py | 3824 +++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 26 + .../setuptools/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 596 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 452 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7306 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4618 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2711 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9299 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3987 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21533 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12196 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3581 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12931 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../setuptools/_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../setuptools/_vendor/packaging/tags.py | 487 + .../setuptools/_vendor/packaging/utils.py | 136 + .../setuptools/_vendor/packaging/version.py | 504 + .../setuptools/_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7123 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7188 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10111 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176336 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9078 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35255 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24799 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12106 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9820 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8611 bytes .../setuptools/_vendor/pyparsing/actions.py | 207 + .../setuptools/_vendor/pyparsing/common.py | 424 + .../setuptools/_vendor/pyparsing/core.py | 5812 +++++++++++ .../_vendor/pyparsing/diagram/__init__.py | 611 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16057 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../setuptools/_vendor/pyparsing/helpers.py | 1083 ++ .../setuptools/_vendor/pyparsing/results.py | 760 ++ .../setuptools/_vendor/pyparsing/testing.py | 331 + .../setuptools/_vendor/pyparsing/unicode.py | 332 + .../setuptools/_vendor/pyparsing/util.py | 235 + .../setuptools/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 361 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 17075 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2907 bytes .../tomli/__pycache__/_types.cpython-310.pyc | Bin 0 -> 331 bytes .../setuptools/_vendor/tomli/_parser.py | 691 ++ .../setuptools/_vendor/tomli/_re.py | 107 + .../setuptools/_vendor/tomli/_types.py | 10 + .../setuptools/_vendor/typing_extensions.py | 2296 +++++ .../site-packages/setuptools/_vendor/zipp.py | 329 + .../site-packages/setuptools/archive_util.py | 213 + .../site-packages/setuptools/build_meta.py | 304 + .../Lib/site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli-arm64.exe | Bin 0 -> 137216 bytes .../Lib/site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 378 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2380 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13130 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1593 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 1223 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2467 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9896 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 10675 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6156 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 2637 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 64425 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22898 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4289 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2463 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 4175 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2457 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4540 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 844 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2511 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 930 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6988 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4692 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8234 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 817 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6407 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 457 + .../setuptools/command/bdist_rpm.py | 40 + .../site-packages/setuptools/command/build.py | 24 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 298 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 69 + .../setuptools/command/easy_install.py | 2312 +++++ .../setuptools/command/egg_info.py | 752 ++ .../setuptools/command/install.py | 139 + .../setuptools/command/install_egg_info.py | 63 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 70 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 196 + .../setuptools/command/setopt.py | 149 + .../site-packages/setuptools/command/test.py | 251 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 212 + .../setuptools/config/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1446 bytes .../_apply_pyprojecttoml.cpython-310.pyc | Bin 0 -> 13529 bytes .../config/__pycache__/expand.cpython-310.pyc | Bin 0 -> 18094 bytes .../__pycache__/pyprojecttoml.cpython-310.pyc | Bin 0 -> 16151 bytes .../__pycache__/setupcfg.cpython-310.pyc | Bin 0 -> 19678 bytes .../setuptools/config/_apply_pyprojecttoml.py | 377 + .../config/_validate_pyproject/__init__.py | 34 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1521 bytes .../error_reporting.cpython-310.pyc | Bin 0 -> 11576 bytes .../extra_validations.cpython-310.pyc | Bin 0 -> 1435 bytes .../fastjsonschema_exceptions.cpython-310.pyc | Bin 0 -> 2453 bytes ...fastjsonschema_validations.cpython-310.pyc | Bin 0 -> 68694 bytes .../__pycache__/formats.cpython-310.pyc | Bin 0 -> 8501 bytes .../_validate_pyproject/error_reporting.py | 318 + .../_validate_pyproject/extra_validations.py | 36 + .../fastjsonschema_exceptions.py | 51 + .../fastjsonschema_validations.py | 1035 ++ .../config/_validate_pyproject/formats.py | 257 + .../site-packages/setuptools/config/expand.py | 479 + .../setuptools/config/pyprojecttoml.py | 484 + .../setuptools/config/setupcfg.py | 713 ++ .../Lib/site-packages/setuptools/dep_util.py | 25 + .../Lib/site-packages/setuptools/depends.py | 176 + .../Lib/site-packages/setuptools/discovery.py | 588 ++ .../Lib/site-packages/setuptools/dist.py | 1222 +++ .../Lib/site-packages/setuptools/errors.py | 58 + .../Lib/site-packages/setuptools/extension.py | 140 + .../setuptools/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3020 bytes .../Lib/site-packages/setuptools/glob.py | 167 + .../Lib/site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui-arm64.exe | Bin 0 -> 137728 bytes .../Lib/site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/installer.py | 104 + .../Lib/site-packages/setuptools/launch.py | 36 + .../Lib/site-packages/setuptools/logging.py | 36 + .../Lib/site-packages/setuptools/monkey.py | 177 + .../Lib/site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1126 +++ .../site-packages/setuptools/py34compat.py | 13 + .../Lib/site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../Lib/site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../Lib/site-packages/setuptools/version.py | 6 + .../Lib/site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + .../sniffio-1.3.1.dist-info/INSTALLER | 1 + .../sniffio-1.3.1.dist-info/LICENSE | 3 + .../sniffio-1.3.1.dist-info/LICENSE.APACHE2 | 202 + .../sniffio-1.3.1.dist-info/LICENSE.MIT | 20 + .../sniffio-1.3.1.dist-info/METADATA | 104 + .../sniffio-1.3.1.dist-info/RECORD | 19 + .../sniffio-1.3.1.dist-info/WHEEL | 5 + .../sniffio-1.3.1.dist-info/top_level.txt | 1 + .../Lib/site-packages/sniffio/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 435 bytes .../sniffio/__pycache__/_impl.cpython-310.pyc | Bin 0 -> 2678 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 199 bytes ocr/.venv/Lib/site-packages/sniffio/_impl.py | 95 + .../site-packages/sniffio/_tests/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 185 bytes .../__pycache__/test_sniffio.cpython-310.pyc | Bin 0 -> 2129 bytes .../sniffio/_tests/test_sniffio.py | 84 + .../Lib/site-packages/sniffio/_version.py | 3 + ocr/.venv/Lib/site-packages/sniffio/py.typed | 0 .../starlette-0.38.6.dist-info/INSTALLER | 1 + .../starlette-0.38.6.dist-info/METADATA | 174 + .../starlette-0.38.6.dist-info/RECORD | 76 + .../starlette-0.38.6.dist-info/WHEEL | 4 + .../licenses/LICENSE.md | 27 + .../Lib/site-packages/starlette/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 625 bytes .../_exception_handler.cpython-310.pyc | Bin 0 -> 2667 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 3731 bytes .../__pycache__/applications.cpython-310.pyc | Bin 0 -> 10401 bytes .../authentication.cpython-310.pyc | Bin 0 -> 5814 bytes .../__pycache__/background.cpython-310.pyc | Bin 0 -> 2024 bytes .../__pycache__/concurrency.cpython-310.pyc | Bin 0 -> 2264 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 5109 bytes .../__pycache__/convertors.cpython-310.pyc | Bin 0 -> 3791 bytes .../datastructures.cpython-310.pyc | Bin 0 -> 27943 bytes .../__pycache__/endpoints.cpython-310.pyc | Bin 0 -> 5150 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 2597 bytes .../__pycache__/formparsers.cpython-310.pyc | Bin 0 -> 8102 bytes .../__pycache__/requests.cpython-310.pyc | Bin 0 -> 10510 bytes .../__pycache__/responses.cpython-310.pyc | Bin 0 -> 11118 bytes .../__pycache__/routing.cpython-310.pyc | Bin 0 -> 27978 bytes .../__pycache__/schemas.cpython-310.pyc | Bin 0 -> 5001 bytes .../__pycache__/staticfiles.cpython-310.pyc | Bin 0 -> 7293 bytes .../__pycache__/status.cpython-310.pyc | Bin 0 -> 4469 bytes .../__pycache__/templating.cpython-310.pyc | Bin 0 -> 6584 bytes .../__pycache__/testclient.cpython-310.pyc | Bin 0 -> 21677 bytes .../__pycache__/types.cpython-310.pyc | Bin 0 -> 963 bytes .../__pycache__/websockets.cpython-310.pyc | Bin 0 -> 7510 bytes .../Lib/site-packages/starlette/_compat.py | 26 + .../starlette/_exception_handler.py | 85 + .../Lib/site-packages/starlette/_utils.py | 89 + .../site-packages/starlette/applications.py | 250 + .../site-packages/starlette/authentication.py | 147 + .../Lib/site-packages/starlette/background.py | 41 + .../site-packages/starlette/concurrency.py | 64 + .../Lib/site-packages/starlette/config.py | 138 + .../Lib/site-packages/starlette/convertors.py | 89 + .../site-packages/starlette/datastructures.py | 679 ++ .../Lib/site-packages/starlette/endpoints.py | 122 + .../Lib/site-packages/starlette/exceptions.py | 62 + .../site-packages/starlette/formparsers.py | 260 + .../starlette/middleware/__init__.py | 42 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2395 bytes .../authentication.cpython-310.pyc | Bin 0 -> 2145 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 7494 bytes .../__pycache__/cors.cpython-310.pyc | Bin 0 -> 5084 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 7638 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 2956 bytes .../__pycache__/gzip.cpython-310.pyc | Bin 0 -> 3485 bytes .../__pycache__/httpsredirect.cpython-310.pyc | Bin 0 -> 1306 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 3058 bytes .../__pycache__/trustedhost.cpython-310.pyc | Bin 0 -> 2114 bytes .../__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 5355 bytes .../starlette/middleware/authentication.py | 52 + .../starlette/middleware/base.py | 228 + .../starlette/middleware/cors.py | 172 + .../starlette/middleware/errors.py | 260 + .../starlette/middleware/exceptions.py | 72 + .../starlette/middleware/gzip.py | 108 + .../starlette/middleware/httpsredirect.py | 19 + .../starlette/middleware/sessions.py | 85 + .../starlette/middleware/trustedhost.py | 60 + .../starlette/middleware/wsgi.py | 152 + .../Lib/site-packages/starlette/py.typed | 0 .../Lib/site-packages/starlette/requests.py | 302 + .../Lib/site-packages/starlette/responses.py | 346 + .../Lib/site-packages/starlette/routing.py | 875 ++ .../Lib/site-packages/starlette/schemas.py | 144 + .../site-packages/starlette/staticfiles.py | 220 + .../Lib/site-packages/starlette/status.py | 201 + .../Lib/site-packages/starlette/templating.py | 216 + .../Lib/site-packages/starlette/testclient.py | 795 ++ .../Lib/site-packages/starlette/types.py | 24 + .../Lib/site-packages/starlette/websockets.py | 195 + .../INSTALLER | 1 + .../METADATA | 72 + .../typing_extensions-4.15.0.dist-info/RECORD | 7 + .../typing_extensions-4.15.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 279 + .../Lib/site-packages/typing_extensions.py | 4317 ++++++++ .../urllib3-2.5.0.dist-info/INSTALLER | 1 + .../urllib3-2.5.0.dist-info/METADATA | 154 + .../urllib3-2.5.0.dist-info/RECORD | 79 + .../urllib3-2.5.0.dist-info/WHEEL | 4 + .../licenses/LICENSE.txt | 21 + .../Lib/site-packages/urllib3/__init__.py | 211 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6113 bytes .../_base_connection.cpython-310.pyc | Bin 0 -> 5686 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 16242 bytes .../_request_methods.cpython-310.pyc | Bin 0 -> 9095 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 554 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 25322 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 29218 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 13830 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 9717 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2351 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 18343 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 34715 bytes .../site-packages/urllib3/_base_connection.py | 165 + .../Lib/site-packages/urllib3/_collections.py | 479 + .../site-packages/urllib3/_request_methods.py | 278 + .../Lib/site-packages/urllib3/_version.py | 21 + .../Lib/site-packages/urllib3/connection.py | 1093 ++ .../site-packages/urllib3/connectionpool.py | 1178 +++ .../site-packages/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 17866 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 6147 bytes .../urllib3/contrib/emscripten/__init__.py | 16 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 725 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 7575 bytes .../__pycache__/fetch.cpython-310.pyc | Bin 0 -> 18954 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 1241 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 8073 bytes .../urllib3/contrib/emscripten/connection.py | 255 + .../emscripten/emscripten_fetch_worker.js | 110 + .../urllib3/contrib/emscripten/fetch.py | 728 ++ .../urllib3/contrib/emscripten/request.py | 22 + .../urllib3/contrib/emscripten/response.py | 277 + .../urllib3/contrib/pyopenssl.py | 564 ++ .../site-packages/urllib3/contrib/socks.py | 228 + .../Lib/site-packages/urllib3/exceptions.py | 335 + ocr/.venv/Lib/site-packages/urllib3/fields.py | 341 + .../Lib/site-packages/urllib3/filepost.py | 89 + .../site-packages/urllib3/http2/__init__.py | 53 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1423 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 10906 bytes .../http2/__pycache__/probe.cpython-310.pyc | Bin 0 -> 2557 bytes .../site-packages/urllib3/http2/connection.py | 356 + .../Lib/site-packages/urllib3/http2/probe.py | 87 + .../Lib/site-packages/urllib3/poolmanager.py | 653 ++ ocr/.venv/Lib/site-packages/urllib3/py.typed | 2 + .../Lib/site-packages/urllib3/response.py | 1307 +++ .../site-packages/urllib3/util/__init__.py | 42 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 966 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3481 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1096 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 6444 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2352 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 15765 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 12830 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3721 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 9435 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 9617 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 11255 bytes .../util/__pycache__/util.cpython-310.pyc | Bin 0 -> 1226 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 2405 bytes .../site-packages/urllib3/util/connection.py | 137 + .../Lib/site-packages/urllib3/util/proxy.py | 43 + .../Lib/site-packages/urllib3/util/request.py | 266 + .../site-packages/urllib3/util/response.py | 101 + .../Lib/site-packages/urllib3/util/retry.py | 533 + .../Lib/site-packages/urllib3/util/ssl_.py | 524 + .../urllib3/util/ssl_match_hostname.py | 159 + .../urllib3/util/ssltransport.py | 271 + .../Lib/site-packages/urllib3/util/timeout.py | 275 + .../Lib/site-packages/urllib3/util/url.py | 469 + .../Lib/site-packages/urllib3/util/util.py | 42 + .../Lib/site-packages/urllib3/util/wait.py | 124 + .../uvicorn-0.30.6.dist-info/INSTALLER | 1 + .../uvicorn-0.30.6.dist-info/METADATA | 186 + .../uvicorn-0.30.6.dist-info/RECORD | 87 + .../uvicorn-0.30.6.dist-info/REQUESTED | 0 .../uvicorn-0.30.6.dist-info/WHEEL | 4 + .../uvicorn-0.30.6.dist-info/entry_points.txt | 2 + .../licenses/LICENSE.md | 27 + .../Lib/site-packages/uvicorn/__init__.py | 5 + .../Lib/site-packages/uvicorn/__main__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 363 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 249 bytes .../__pycache__/_subprocess.cpython-310.pyc | Bin 0 -> 2409 bytes .../__pycache__/_types.cpython-310.pyc | Bin 0 -> 9098 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 14469 bytes .../__pycache__/importer.cpython-310.pyc | Bin 0 -> 1204 bytes .../__pycache__/logging.cpython-310.pyc | Bin 0 -> 5131 bytes .../uvicorn/__pycache__/main.cpython-310.pyc | Bin 0 -> 13327 bytes .../__pycache__/server.cpython-310.pyc | Bin 0 -> 8879 bytes .../__pycache__/workers.cpython-310.pyc | Bin 0 -> 3958 bytes .../Lib/site-packages/uvicorn/_subprocess.py | 84 + ocr/.venv/Lib/site-packages/uvicorn/_types.py | 293 + ocr/.venv/Lib/site-packages/uvicorn/config.py | 529 + .../Lib/site-packages/uvicorn/importer.py | 34 + .../uvicorn/lifespan/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 187 bytes .../lifespan/__pycache__/off.cpython-310.pyc | Bin 0 -> 925 bytes .../lifespan/__pycache__/on.cpython-310.pyc | Bin 0 -> 4117 bytes .../Lib/site-packages/uvicorn/lifespan/off.py | 17 + .../Lib/site-packages/uvicorn/lifespan/on.py | 137 + .../Lib/site-packages/uvicorn/logging.py | 117 + .../site-packages/uvicorn/loops/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 184 bytes .../loops/__pycache__/asyncio.cpython-310.pyc | Bin 0 -> 557 bytes .../loops/__pycache__/auto.cpython-310.pyc | Bin 0 -> 565 bytes .../loops/__pycache__/uvloop.cpython-310.pyc | Bin 0 -> 435 bytes .../site-packages/uvicorn/loops/asyncio.py | 10 + .../Lib/site-packages/uvicorn/loops/auto.py | 11 + .../Lib/site-packages/uvicorn/loops/uvloop.py | 7 + ocr/.venv/Lib/site-packages/uvicorn/main.py | 589 ++ .../uvicorn/middleware/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/asgi2.cpython-310.pyc | Bin 0 -> 910 bytes .../message_logger.cpython-310.pyc | Bin 0 -> 3015 bytes .../__pycache__/proxy_headers.cpython-310.pyc | Bin 0 -> 2863 bytes .../__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 6013 bytes .../site-packages/uvicorn/middleware/asgi2.py | 15 + .../uvicorn/middleware/message_logger.py | 87 + .../uvicorn/middleware/proxy_headers.py | 70 + .../site-packages/uvicorn/middleware/wsgi.py | 200 + .../uvicorn/protocols/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 188 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1972 bytes .../uvicorn/protocols/http/__init__.py | 0 .../http/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../http/__pycache__/auto.cpython-310.pyc | Bin 0 -> 554 bytes .../__pycache__/flow_control.cpython-310.pyc | Bin 0 -> 2072 bytes .../http/__pycache__/h11_impl.cpython-310.pyc | Bin 0 -> 14773 bytes .../httptools_impl.cpython-310.pyc | Bin 0 -> 16236 bytes .../uvicorn/protocols/http/auto.py | 15 + .../uvicorn/protocols/http/flow_control.py | 54 + .../uvicorn/protocols/http/h11_impl.py | 546 + .../uvicorn/protocols/http/httptools_impl.py | 562 ++ .../site-packages/uvicorn/protocols/utils.py | 56 + .../uvicorn/protocols/websockets/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/auto.cpython-310.pyc | Bin 0 -> 683 bytes .../websockets_impl.cpython-310.pyc | Bin 0 -> 12277 bytes .../__pycache__/wsproto_impl.cpython-310.pyc | Bin 0 -> 11259 bytes .../uvicorn/protocols/websockets/auto.py | 21 + .../protocols/websockets/websockets_impl.py | 389 + .../protocols/websockets/wsproto_impl.py | 376 + ocr/.venv/Lib/site-packages/uvicorn/py.typed | 1 + ocr/.venv/Lib/site-packages/uvicorn/server.py | 335 + .../uvicorn/supervisors/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 802 bytes .../__pycache__/basereload.cpython-310.pyc | Bin 0 -> 4254 bytes .../__pycache__/multiprocess.cpython-310.pyc | Bin 0 -> 7850 bytes .../__pycache__/statreload.cpython-310.pyc | Bin 0 -> 2048 bytes .../watchfilesreload.cpython-310.pyc | Bin 0 -> 3246 bytes .../watchgodreload.cpython-310.pyc | Bin 0 -> 4474 bytes .../uvicorn/supervisors/basereload.py | 121 + .../uvicorn/supervisors/multiprocess.py | 222 + .../uvicorn/supervisors/statreload.py | 52 + .../uvicorn/supervisors/watchfilesreload.py | 88 + .../uvicorn/supervisors/watchgodreload.py | 152 + .../Lib/site-packages/uvicorn/workers.py | 114 + .../watchfiles-1.1.1.dist-info/INSTALLER | 1 + .../watchfiles-1.1.1.dist-info/METADATA | 148 + .../watchfiles-1.1.1.dist-info/RECORD | 24 + .../watchfiles-1.1.1.dist-info/WHEEL | 4 + .../entry_points.txt | 2 + .../licenses/LICENSE | 21 + .../Lib/site-packages/watchfiles/__init__.py | 17 + .../Lib/site-packages/watchfiles/__main__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 520 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 251 bytes .../__pycache__/cli.cpython-310.pyc | Bin 0 -> 6605 bytes .../__pycache__/filters.cpython-310.pyc | Bin 0 -> 5488 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 13808 bytes .../__pycache__/run.cpython-310.pyc | Bin 0 -> 14057 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 265 bytes .../_rust_notify.cp310-win_amd64.pyd | Bin 0 -> 678912 bytes .../site-packages/watchfiles/_rust_notify.pyi | 111 + ocr/.venv/Lib/site-packages/watchfiles/cli.py | 224 + .../Lib/site-packages/watchfiles/filters.py | 149 + .../Lib/site-packages/watchfiles/main.py | 373 + .../Lib/site-packages/watchfiles/py.typed | 1 + ocr/.venv/Lib/site-packages/watchfiles/run.py | 438 + .../Lib/site-packages/watchfiles/version.py | 5 + .../websockets-15.0.1.dist-info/INSTALLER | 1 + .../websockets-15.0.1.dist-info/LICENSE | 24 + .../websockets-15.0.1.dist-info/METADATA | 179 + .../websockets-15.0.1.dist-info/RECORD | 106 + .../websockets-15.0.1.dist-info/WHEEL | 5 + .../entry_points.txt | 2 + .../websockets-15.0.1.dist-info/top_level.txt | 1 + .../Lib/site-packages/websockets/__init__.py | 236 + .../Lib/site-packages/websockets/__main__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3792 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 257 bytes .../__pycache__/auth.cpython-310.pyc | Bin 0 -> 626 bytes .../__pycache__/cli.cpython-310.pyc | Bin 0 -> 4874 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 11566 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 500 bytes .../datastructures.cpython-310.pyc | Bin 0 -> 7108 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 14805 bytes .../__pycache__/frames.cpython-310.pyc | Bin 0 -> 10109 bytes .../__pycache__/headers.cpython-310.pyc | Bin 0 -> 13628 bytes .../__pycache__/http.cpython-310.pyc | Bin 0 -> 740 bytes .../__pycache__/http11.cpython-310.pyc | Bin 0 -> 10485 bytes .../__pycache__/imports.cpython-310.pyc | Bin 0 -> 2709 bytes .../__pycache__/protocol.cpython-310.pyc | Bin 0 -> 16892 bytes .../__pycache__/server.cpython-310.pyc | Bin 0 -> 17118 bytes .../__pycache__/streams.cpython-310.pyc | Bin 0 -> 4261 bytes .../__pycache__/typing.cpython-310.pyc | Bin 0 -> 882 bytes .../__pycache__/uri.cpython-310.pyc | Bin 0 -> 5310 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1510 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 2016 bytes .../websockets/asyncio/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/async_timeout.cpython-310.pyc | Bin 0 -> 7475 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 23625 bytes .../__pycache__/compatibility.cpython-310.pyc | Bin 0 -> 829 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 32853 bytes .../__pycache__/messages.cpython-310.pyc | Bin 0 -> 9372 bytes .../__pycache__/router.cpython-310.pyc | Bin 0 -> 6548 bytes .../__pycache__/server.cpython-310.pyc | Bin 0 -> 29989 bytes .../websockets/asyncio/async_timeout.py | 282 + .../websockets/asyncio/client.py | 820 ++ .../websockets/asyncio/compatibility.py | 30 + .../websockets/asyncio/connection.py | 1237 +++ .../websockets/asyncio/messages.py | 314 + .../websockets/asyncio/router.py | 198 + .../websockets/asyncio/server.py | 981 ++ .../Lib/site-packages/websockets/auth.py | 18 + ocr/.venv/Lib/site-packages/websockets/cli.py | 178 + .../Lib/site-packages/websockets/client.py | 389 + .../site-packages/websockets/connection.py | 12 + .../websockets/datastructures.py | 187 + .../site-packages/websockets/exceptions.py | 473 + .../websockets/extensions/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 293 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 3722 bytes .../permessage_deflate.cpython-310.pyc | Bin 0 -> 13483 bytes .../websockets/extensions/base.py | 123 + .../extensions/permessage_deflate.py | 697 ++ .../Lib/site-packages/websockets/frames.py | 430 + .../Lib/site-packages/websockets/headers.py | 586 ++ .../Lib/site-packages/websockets/http.py | 20 + .../Lib/site-packages/websockets/http11.py | 427 + .../Lib/site-packages/websockets/imports.py | 100 + .../websockets/legacy/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 426 bytes .../legacy/__pycache__/auth.cpython-310.pyc | Bin 0 -> 5904 bytes .../legacy/__pycache__/client.cpython-310.pyc | Bin 0 -> 19881 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 2722 bytes .../__pycache__/framing.cpython-310.pyc | Bin 0 -> 5972 bytes .../__pycache__/handshake.cpython-310.pyc | Bin 0 -> 4727 bytes .../legacy/__pycache__/http.cpython-310.pyc | Bin 0 -> 5201 bytes .../__pycache__/protocol.cpython-310.pyc | Bin 0 -> 41790 bytes .../legacy/__pycache__/server.cpython-310.pyc | Bin 0 -> 34662 bytes .../site-packages/websockets/legacy/auth.py | 190 + .../site-packages/websockets/legacy/client.py | 705 ++ .../websockets/legacy/exceptions.py | 71 + .../websockets/legacy/framing.py | 225 + .../websockets/legacy/handshake.py | 158 + .../site-packages/websockets/legacy/http.py | 201 + .../websockets/legacy/protocol.py | 1641 +++ .../site-packages/websockets/legacy/server.py | 1191 +++ .../Lib/site-packages/websockets/protocol.py | 758 ++ .../Lib/site-packages/websockets/py.typed | 0 .../Lib/site-packages/websockets/server.py | 587 ++ .../Lib/site-packages/websockets/speedups.c | 222 + .../websockets/speedups.cp310-win_amd64.pyd | Bin 0 -> 11776 bytes .../Lib/site-packages/websockets/speedups.pyi | 1 + .../Lib/site-packages/websockets/streams.py | 151 + .../site-packages/websockets/sync/__init__.py | 0 .../sync/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../sync/__pycache__/client.cpython-310.pyc | Bin 0 -> 17118 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 26918 bytes .../sync/__pycache__/messages.cpython-310.pyc | Bin 0 -> 9139 bytes .../sync/__pycache__/router.cpython-310.pyc | Bin 0 -> 6344 bytes .../sync/__pycache__/server.cpython-310.pyc | Bin 0 -> 21767 bytes .../sync/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1447 bytes .../site-packages/websockets/sync/client.py | 648 ++ .../websockets/sync/connection.py | 1072 ++ .../site-packages/websockets/sync/messages.py | 345 + .../site-packages/websockets/sync/router.py | 192 + .../site-packages/websockets/sync/server.py | 763 ++ .../site-packages/websockets/sync/utils.py | 45 + .../Lib/site-packages/websockets/typing.py | 74 + ocr/.venv/Lib/site-packages/websockets/uri.py | 225 + .../Lib/site-packages/websockets/utils.py | 51 + .../Lib/site-packages/websockets/version.py | 92 + ocr/.venv/Lib/site-packages/yaml/__init__.py | 390 + .../yaml/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10712 bytes .../yaml/__pycache__/composer.cpython-310.pyc | Bin 0 -> 3618 bytes .../__pycache__/constructor.cpython-310.pyc | Bin 0 -> 20225 bytes .../yaml/__pycache__/cyaml.cpython-310.pyc | Bin 0 -> 2880 bytes .../yaml/__pycache__/dumper.cpython-310.pyc | Bin 0 -> 1521 bytes .../yaml/__pycache__/emitter.cpython-310.pyc | Bin 0 -> 25130 bytes .../yaml/__pycache__/error.cpython-310.pyc | Bin 0 -> 2404 bytes .../yaml/__pycache__/events.cpython-310.pyc | Bin 0 -> 3812 bytes .../yaml/__pycache__/loader.cpython-310.pyc | Bin 0 -> 1828 bytes .../yaml/__pycache__/nodes.cpython-310.pyc | Bin 0 -> 1708 bytes .../yaml/__pycache__/parser.cpython-310.pyc | Bin 0 -> 11695 bytes .../yaml/__pycache__/reader.cpython-310.pyc | Bin 0 -> 4601 bytes .../__pycache__/representer.cpython-310.pyc | Bin 0 -> 10056 bytes .../yaml/__pycache__/resolver.cpython-310.pyc | Bin 0 -> 5529 bytes .../yaml/__pycache__/scanner.cpython-310.pyc | Bin 0 -> 25575 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 3373 bytes .../yaml/__pycache__/tokens.cpython-310.pyc | Bin 0 -> 4598 bytes .../yaml/_yaml.cp310-win_amd64.pyd | Bin 0 -> 258048 bytes ocr/.venv/Lib/site-packages/yaml/composer.py | 139 + .../Lib/site-packages/yaml/constructor.py | 748 ++ ocr/.venv/Lib/site-packages/yaml/cyaml.py | 101 + ocr/.venv/Lib/site-packages/yaml/dumper.py | 62 + ocr/.venv/Lib/site-packages/yaml/emitter.py | 1137 +++ ocr/.venv/Lib/site-packages/yaml/error.py | 75 + ocr/.venv/Lib/site-packages/yaml/events.py | 86 + ocr/.venv/Lib/site-packages/yaml/loader.py | 63 + ocr/.venv/Lib/site-packages/yaml/nodes.py | 49 + ocr/.venv/Lib/site-packages/yaml/parser.py | 589 ++ ocr/.venv/Lib/site-packages/yaml/reader.py | 185 + .../Lib/site-packages/yaml/representer.py | 389 + ocr/.venv/Lib/site-packages/yaml/resolver.py | 227 + ocr/.venv/Lib/site-packages/yaml/scanner.py | 1435 +++ .../Lib/site-packages/yaml/serializer.py | 111 + ocr/.venv/Lib/site-packages/yaml/tokens.py | 104 + ocr/.venv/Scripts/Activate.ps1 | 472 + ocr/.venv/Scripts/activate | 69 + ocr/.venv/Scripts/activate.bat | 34 + ocr/.venv/Scripts/deactivate.bat | 22 + ocr/.venv/Scripts/dotenv.exe | Bin 0 -> 107904 bytes ocr/.venv/Scripts/fastapi.exe | Bin 0 -> 107902 bytes ocr/.venv/Scripts/normalizer.exe | Bin 0 -> 107925 bytes ocr/.venv/Scripts/pip.exe | Bin 0 -> 107913 bytes ocr/.venv/Scripts/pip3.10.exe | Bin 0 -> 107913 bytes ocr/.venv/Scripts/pip3.exe | Bin 0 -> 107913 bytes ocr/.venv/Scripts/pyrsa-decrypt.exe | Bin 0 -> 107904 bytes ocr/.venv/Scripts/pyrsa-encrypt.exe | Bin 0 -> 107904 bytes ocr/.venv/Scripts/pyrsa-keygen.exe | Bin 0 -> 107902 bytes ocr/.venv/Scripts/pyrsa-priv2pub.exe | Bin 0 -> 107925 bytes ocr/.venv/Scripts/pyrsa-sign.exe | Bin 0 -> 107898 bytes ocr/.venv/Scripts/pyrsa-verify.exe | Bin 0 -> 107902 bytes ocr/.venv/Scripts/python.exe | Bin 0 -> 266616 bytes ocr/.venv/Scripts/pythonw.exe | Bin 0 -> 254840 bytes ocr/.venv/Scripts/uvicorn.exe | Bin 0 -> 107903 bytes ocr/.venv/Scripts/watchfiles.exe | Bin 0 -> 107903 bytes ocr/.venv/Scripts/websockets.exe | Bin 0 -> 107905 bytes ocr/.venv/pyvenv.cfg | 3 + ocr/README.md | 111 + ocr/__pycache__/main.cpython-310.pyc | Bin 0 -> 7804 bytes ocr/main.py | 217 + ocr/requirements.txt | 6 + 4145 files changed, 672104 insertions(+) create mode 100644 ocr/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/_distutils_hack/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/_distutils_hack/override.py create mode 100644 ocr/.venv/Lib/site-packages/_yaml/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/annotated_types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/annotated_types/py.typed create mode 100644 ocr/.venv/Lib/site-packages/annotated_types/test_cases.py create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/anyio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/to_process.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_backends/_trio.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_eventloop.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_fileio.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_resources.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_signals.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_sockets.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_streams.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_subprocesses.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_synchronization.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_tasks.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_tempfile.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_testing.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/_core/_typedattr.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_eventloop.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_resources.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_sockets.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_streams.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_subprocesses.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_tasks.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/abc/_testing.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/from_thread.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/lowlevel.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/py.typed create mode 100644 ocr/.venv/Lib/site-packages/anyio/pytest_plugin.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/buffered.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/file.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/memory.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/stapled.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/text.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/streams/tls.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/to_interpreter.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/to_process.py create mode 100644 ocr/.venv/Lib/site-packages/anyio/to_thread.py create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__pycache__/_cached.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__pycache__/_cachedmethod.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__pycache__/func.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/cachetools/__pycache__/keys.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/cachetools/_cached.py create mode 100644 ocr/.venv/Lib/site-packages/cachetools/_cachedmethod.py create mode 100644 ocr/.venv/Lib/site-packages/cachetools/func.py create mode 100644 ocr/.venv/Lib/site-packages/cachetools/keys.py create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/certifi/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/certifi/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/certifi/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/certifi/cacert.pem create mode 100644 ocr/.venv/Lib/site-packages/certifi/core.py create mode 100644 ocr/.venv/Lib/site-packages/certifi/py.typed create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/api.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/cd.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/cli/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/cli/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/constant.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/legacy.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/md.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/md.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/md__mypyc.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/models.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/py.typed create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/utils.py create mode 100644 ocr/.venv/Lib/site-packages/charset_normalizer/version.py create mode 100644 ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/click/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/decorators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/formatting.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/globals.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/shell_completion.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/termui.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/click/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/click/_termui_impl.py create mode 100644 ocr/.venv/Lib/site-packages/click/_textwrap.py create mode 100644 ocr/.venv/Lib/site-packages/click/_utils.py create mode 100644 ocr/.venv/Lib/site-packages/click/_winconsole.py create mode 100644 ocr/.venv/Lib/site-packages/click/core.py create mode 100644 ocr/.venv/Lib/site-packages/click/decorators.py create mode 100644 ocr/.venv/Lib/site-packages/click/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/click/formatting.py create mode 100644 ocr/.venv/Lib/site-packages/click/globals.py create mode 100644 ocr/.venv/Lib/site-packages/click/parser.py create mode 100644 ocr/.venv/Lib/site-packages/click/py.typed create mode 100644 ocr/.venv/Lib/site-packages/click/shell_completion.py create mode 100644 ocr/.venv/Lib/site-packages/click/termui.py create mode 100644 ocr/.venv/Lib/site-packages/click/testing.py create mode 100644 ocr/.venv/Lib/site-packages/click/types.py create mode 100644 ocr/.venv/Lib/site-packages/click/utils.py create mode 100644 ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/colorama/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/ansi.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/ansitowin32.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/initialise.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/ansi_test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/ansitowin32_test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/initialise_test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/winterm_test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/ansi_test.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/ansitowin32_test.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/initialise_test.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/isatty_test.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/utils.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/tests/winterm_test.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/win32.py create mode 100644 ocr/.venv/Lib/site-packages/colorama/winterm.py create mode 100644 ocr/.venv/Lib/site-packages/distutils-precedence.pth create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/cli.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/variables.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/dotenv/cli.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/ipython.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/main.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/parser.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/py.typed create mode 100644 ocr/.venv/Lib/site-packages/dotenv/variables.py create mode 100644 ocr/.venv/Lib/site-packages/dotenv/version.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/_catch.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/_exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/_formatting.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/_suppress.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/_version.py create mode 100644 ocr/.venv/Lib/site-packages/exceptiongroup/py.typed create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/applications.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/background.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/cli.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/logger.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/params.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/requests.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/responses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/routing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/staticfiles.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/templating.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/applications.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/background.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/cli.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/concurrency.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/datastructures.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/models.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/dependencies/utils.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/encoders.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/exception_handlers.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/logger.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/cors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/gzip.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/cors.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/gzip.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/httpsredirect.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/trustedhost.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/middleware/wsgi.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/constants.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/docs.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/models.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/openapi/utils.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/param_functions.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/params.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/py.typed create mode 100644 ocr/.venv/Lib/site-packages/fastapi/requests.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/responses.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/routing.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/api_key.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/base.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/http.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/oauth2.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/open_id_connect_url.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/security/utils.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/staticfiles.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/templating.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/testclient.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/types.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/utils.py create mode 100644 ocr/.venv/Lib/site-packages/fastapi/websockets.py create mode 100644 ocr/.venv/Lib/site-packages/google/_upb/_message.pyd create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/annotations_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/config_change_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/consumer_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/documentation_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/endpoint_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/error_reason_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/field_behavior_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/field_info_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/label_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/logging_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/monitoring_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/quota_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/resource_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/routing_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/source_info_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/usage_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api/annotations.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/annotations_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/annotations_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/auth.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/auth_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/auth_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/backend.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/backend_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/backend_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/billing.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/billing_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/billing_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/client.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/client_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/client_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/config_change.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/config_change_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/config_change_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/consumer.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/consumer_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/consumer_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/context.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/context_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/context_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/control.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/control_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/control_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/distribution.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/distribution_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/distribution_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/documentation.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/documentation_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/documentation_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/endpoint.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/error_reason.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_behavior.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_info.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_info_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/field_info_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/http.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/http_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/http_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/httpbody.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/label.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/label_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/label_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/launch_stage.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/log.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/log_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/log_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/logging.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/logging_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/logging_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/metric.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/metric_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/metric_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitored_resource.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitoring.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/policy.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/policy_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/policy_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/quota.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/quota_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/quota_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/resource.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/resource_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/resource_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/routing.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/routing_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/routing_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/service.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/service_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/service_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/source_info.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/source_info_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/source_info_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/system_parameter.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/usage.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/usage_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/usage_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api/visibility.proto create mode 100644 ocr/.venv/Lib/site-packages/google/api/visibility_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/api/visibility_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/_python_package_support.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/_python_version_support.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/_rest_streaming_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/_python_package_support.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/_python_version_support.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/_rest_streaming_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/bidi.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/bidi_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/bidi_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/client_info.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/client_logging.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/client_options.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/datetime_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/extended_operation.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/async_future.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/future/polling.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/client_info.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/routing_header.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/general_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/iam.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operation.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operation_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/abstract_operations_base_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/abstract_operations_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client_config.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_rest_client_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/page_iterator.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/page_iterator_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/path_template.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/protobuf_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/rest_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/rest_streaming.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/rest_streaming_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/retry_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/retry_streaming.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/retry_streaming_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/retry_unary.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry/retry_unary_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/retry_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/timeout.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/universe.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/version.py create mode 100644 ocr/.venv/Lib/site-packages/google/api_core/version_header.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_cloud_sdk.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_constants.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_credentials_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_default.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_default_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_jwt_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_oauth2client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/api_key.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/app_engine.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/aws.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/downscoped.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/external_account.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/external_account_authorized_user.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/iam.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/identity_pool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/impersonated_credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/metrics.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/pluggable.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_cloud_sdk.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_constants.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_credentials_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_credentials_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_default.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_default_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_exponential_backoff.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_jwt_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_oauth2client.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_refresh_worker.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/_service_account_info.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/__pycache__/_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/__pycache__/sessions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/aiohttp.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aio/transport/sessions.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/api_key.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/app_engine.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/aws.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/__pycache__/_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/__pycache__/credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/compute_engine/credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/_cryptography_rsa.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/_python_rsa.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/_cryptography_rsa.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/_python_rsa.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/es256.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/crypt/rsa.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/downscoped.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/environment_vars.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/external_account.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/external_account_authorized_user.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/iam.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/identity_pool.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/impersonated_credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/jwt.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/metrics.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/pluggable.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/_aiohttp_requests.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/_custom_tls_signer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/_mtls_helper.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/_requests_base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/requests.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/__pycache__/urllib3.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/_aiohttp_requests.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/_custom_tls_signer.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/_http_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/_mtls_helper.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/_requests_base.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/mtls.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/requests.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/transport/urllib3.py create mode 100644 ocr/.venv/Lib/site-packages/google/auth/version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/__pycache__/common_resources_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/__pycache__/extended_operations_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/common_resources.proto create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/common_resources_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/common_resources_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/extended_operations.proto create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/extended_operations_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/extended_operations_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/location/__pycache__/locations_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/location/locations.proto create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/location/locations_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/location/locations_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_helpers/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_helpers/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_helpers/__pycache__/decorators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_helpers/decorators.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/gapic_metadata.json create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/image_annotator/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/__pycache__/pagers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/pagers.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/services/product_search/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/geometry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/image_annotator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/product_search.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/product_search_service.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/text_annotation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/__pycache__/web_detection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/geometry.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/image_annotator.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/product_search.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/product_search_service.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/text_annotation.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1/types/web_detection.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/gapic_metadata.json create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/services/image_annotator/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__pycache__/geometry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__pycache__/image_annotator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__pycache__/text_annotation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/__pycache__/web_detection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/geometry.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/image_annotator.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/text_annotation.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p1beta1/types/web_detection.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/gapic_metadata.json create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/services/image_annotator/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__pycache__/geometry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__pycache__/image_annotator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__pycache__/text_annotation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/__pycache__/web_detection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/geometry.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/image_annotator.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/text_annotation.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p2beta1/types/web_detection.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/gapic_metadata.json create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/image_annotator/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/__pycache__/pagers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/pagers.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/services/product_search/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/geometry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/image_annotator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/product_search.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/product_search_service.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/text_annotation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/__pycache__/web_detection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/geometry.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/image_annotator.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/product_search.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/product_search_service.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/text_annotation.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p3beta1/types/web_detection.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/__pycache__/gapic_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/gapic_metadata.json create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/gapic_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/image_annotator/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/__pycache__/async_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/__pycache__/pagers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/async_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/client.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/pagers.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__pycache__/grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__pycache__/grpc_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/__pycache__/rest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/base.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/grpc_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/services/product_search/transports/rest.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/face.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/geometry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/image_annotator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/product_search.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/product_search_service.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/text_annotation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/__pycache__/web_detection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/face.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/geometry.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/image_annotator.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/product_search.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/product_search_service.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/text_annotation.py create mode 100644 ocr/.venv/Lib/site-packages/google/cloud/vision_v1p4beta1/types/web_detection.py create mode 100644 ocr/.venv/Lib/site-packages/google/gapic/metadata/__pycache__/gapic_metadata_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/gapic/metadata/gapic_metadata.proto create mode 100644 ocr/.venv/Lib/site-packages/google/gapic/metadata/gapic_metadata_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/gapic/metadata/gapic_metadata_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/__pycache__/http_request_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/__pycache__/log_severity_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/http_request.proto create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/http_request_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/http_request_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/log_severity.proto create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/log_severity_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/logging/type/log_severity_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_proto.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_grpc_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_pb2_grpc.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_proto.proto create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_proto.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_proto_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/longrunning/operations_proto_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_client_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_credentials_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_id_token_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_reauth_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/_service_account_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/gdch_credentials.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/id_token.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/service_account.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/sts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_client.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_client_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_credentials_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_id_token_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_reauth_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/_service_account_async.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/challenges.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/gdch_credentials.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/id_token.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/py.typed create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/reauth.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/service_account.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/sts.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/utils.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/webauthn_handler.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/webauthn_handler_factory.py create mode 100644 ocr/.venv/Lib/site-packages/google/oauth2/webauthn_types.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/any.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/any_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/api_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/descriptor_pool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/duration.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/message_factory.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/proto.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/proto_builder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/proto_json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/runtime_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/service.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/service_reflection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/source_context_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/text_format.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/timestamp.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/timestamp_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/type_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/any.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/any_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/api_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/compiler/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/compiler/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/compiler/__pycache__/plugin_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/compiler/plugin_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/descriptor.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/descriptor_database.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/descriptor_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/descriptor_pool.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/duration.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/duration_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/empty_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/field_mask_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/_parameterized.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/python_message.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/testing_refleaks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/_parameterized.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/api_implementation.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/builder.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/containers.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/decoder.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/encoder.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/enum_type_wrapper.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/extension_dict.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/field_mask.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/message_listener.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/python_edition_defaults.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/python_message.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/testing_refleaks.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/type_checkers.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/well_known_types.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/internal/wire_format.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/json_format.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/message.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/message_factory.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/proto.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/proto_builder.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/proto_json.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/pyext/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/pyext/cpp_message.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/reflection.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/runtime_version.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/service.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/service_reflection.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/source_context_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/struct_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/symbol_database.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/testdata/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/testdata/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/text_encoding.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/text_format.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/timestamp.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/timestamp_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/type_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/unknown_fields.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/util/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/util/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/protobuf/wrappers_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/__pycache__/error_details_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/__pycache__/http_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/__pycache__/status_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/code.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/code_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/code_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/__pycache__/attribute_context_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/__pycache__/audit_context_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/attribute_context.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/attribute_context_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/attribute_context_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/audit_context.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/audit_context_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/context/audit_context_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/error_details.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/error_details_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/error_details_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/http.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/http_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/http_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/status.proto create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/status_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/rpc/status_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/calendar_period_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/color_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/date_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/datetime_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/dayofweek_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/decimal_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/expr_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/fraction_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/latlng_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/localized_text_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/money_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/month_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/phone_number_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/postal_address_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/quaternion_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/__pycache__/timeofday_pb2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/google/type/calendar_period.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/calendar_period_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/calendar_period_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/color.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/color_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/color_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/date.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/date_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/date_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/datetime.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/datetime_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/datetime_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/dayofweek.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/dayofweek_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/dayofweek_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/decimal.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/decimal_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/decimal_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/expr.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/expr_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/expr_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/fraction.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/fraction_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/fraction_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/interval.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/interval_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/interval_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/latlng.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/latlng_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/latlng_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/localized_text.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/localized_text_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/localized_text_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/money.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/money_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/money_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/month.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/month_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/month_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/phone_number.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/phone_number_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/phone_number_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/postal_address.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/postal_address_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/postal_address_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/quaternion.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/quaternion_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/quaternion_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google/type/timeofday.proto create mode 100644 ocr/.venv/Lib/site-packages/google/type/timeofday_pb2.py create mode 100644 ocr/.venv/Lib/site-packages/google/type/timeofday_pb2.pyi create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/google_api_core-2.28.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/google_auth-2.43.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/google_cloud_vision-3.7.4.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/googleapis_common_protos-1.72.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/grpc/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_channel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_compression.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_grpcio_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_interceptor.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_observability.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_plugin_wrapping.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_runtime_protos.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_typing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/__pycache__/_utilities.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/_auth.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_channel.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_common.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_compression.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/_credentials/roots.pem create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/_cygrpc/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/_cygrpc/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/_cython/cygrpc.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/grpc/_grpcio_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_interceptor.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_observability.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_plugin_wrapping.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_runtime_protos.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_server.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_simple_stubs.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_typing.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/_utilities.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/__pycache__/_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_base_call.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_base_channel.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_base_server.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_call.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_channel.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_interceptor.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_server.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_typing.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/aio/_utils.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/_client_adaptations.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/_server_adaptations.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/implementations.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/interfaces.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/__pycache__/utilities.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/_client_adaptations.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/_server_adaptations.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/implementations.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/interfaces.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/beta/utilities.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/__pycache__/gevent.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/__pycache__/session_cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/aio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/gevent.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/experimental/session_cache.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/__pycache__/cardinality.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/__pycache__/style.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/cardinality.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/common/style.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/abandonment.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/callable_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/future.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/logging_pool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/stream.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/__pycache__/stream_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/abandonment.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/callable_util.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/future.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/logging_pool.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/stream.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/foundation/stream_util.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/__pycache__/utilities.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/base.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/base/utilities.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/__pycache__/face.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/__pycache__/utilities.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/face.py create mode 100644 ocr/.venv/Lib/site-packages/grpc/framework/interfaces/face/utilities.py create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/_async.py create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/_common.py create mode 100644 ocr/.venv/Lib/site-packages/grpc_status/rpc_status.py create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/grpcio-1.76.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/grpcio_status-1.71.2.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/h11-0.16.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/h11/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_abnf.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_events.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_headers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_readers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_state.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/__pycache__/_writers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/h11/_abnf.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_connection.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_events.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_headers.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_readers.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_receivebuffer.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_state.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_util.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_version.py create mode 100644 ocr/.venv/Lib/site-packages/h11/_writers.py create mode 100644 ocr/.venv/Lib/site-packages/h11/py.typed create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/httptools-0.7.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/httptools/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/httptools/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/httptools/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/httptools/_version.py create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/__pycache__/protocol.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/cparser.pxd create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/errors.py create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/parser.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/parser.pyi create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/parser.pyx create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/protocol.py create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/python.pxd create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/url_cparser.pxd create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/url_parser.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/url_parser.pyi create mode 100644 ocr/.venv/Lib/site-packages/httptools/parser/url_parser.pyx create mode 100644 ocr/.venv/Lib/site-packages/idna-3.11.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/idna-3.11.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/idna-3.11.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/idna-3.11.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/idna-3.11.dist-info/licenses/LICENSE.md create mode 100644 ocr/.venv/Lib/site-packages/idna/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/codec.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/idna/codec.py create mode 100644 ocr/.venv/Lib/site-packages/idna/compat.py create mode 100644 ocr/.venv/Lib/site-packages/idna/core.py create mode 100644 ocr/.venv/Lib/site-packages/idna/idnadata.py create mode 100644 ocr/.venv/Lib/site-packages/idna/intranges.py create mode 100644 ocr/.venv/Lib/site-packages/idna/package_data.py create mode 100644 ocr/.venv/Lib/site-packages/idna/py.typed create mode 100644 ocr/.venv/Lib/site-packages/idna/uts46data.py create mode 100644 ocr/.venv/Lib/site-packages/multipart/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/multipart/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/multipart/__pycache__/decoders.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/multipart/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/multipart/__pycache__/multipart.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/multipart/decoders.py create mode 100644 ocr/.venv/Lib/site-packages/multipart/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/multipart/multipart.py create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/pip-22.2.2.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/pip/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/__pip-runner__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/build_env.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/inspect.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/configuration.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/main.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/_json.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/index.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/installation_report.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/link.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/download.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/session.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/egg_link.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/models.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/enums.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/chardet/version.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/win32.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/distro/distro.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/build.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/check.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/meta.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/console.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/filter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/style.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/token.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pygments/util.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_extension.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_loop.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_pick.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_stack.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_timer.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_windows.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/abc.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/align.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/ansi.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/bar.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/box.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/cells.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/color.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/columns.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/console.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/constrain.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/containers.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/control.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/emoji.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/errors.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/filesize.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/json.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/layout.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/live.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/live_render.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/logging.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/markup.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/measure.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/padding.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/pager.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/palette.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/panel.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/pretty.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/progress.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/prompt.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/protocol.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/region.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/repr.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/rule.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/scope.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/screen.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/segment.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/spinner.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/status.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/style.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/styled.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/syntax.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/table.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/text.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/theme.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/themes.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/traceback.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/rich/tree.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/six.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/after.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/before.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/tomli/_types.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/typing_extensions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 ocr/.venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 ocr/.venv/Lib/site-packages/pip/py.typed create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/_vendor/zipp.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/extern/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/_file_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/_package_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/datetime_helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/enums.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/message.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/modules.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/primitives.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/_file_info.py create mode 100644 ocr/.venv/Lib/site-packages/proto/_package_info.py create mode 100644 ocr/.venv/Lib/site-packages/proto/datetime_helpers.py create mode 100644 ocr/.venv/Lib/site-packages/proto/enums.py create mode 100644 ocr/.venv/Lib/site-packages/proto/fields.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/__pycache__/marshal.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/__pycache__/maps.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/maps.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/collections/repeated.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/compat.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/marshal.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/dates.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/enums.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/message.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/struct.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/bytes.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/dates.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/enums.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/field_mask.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/message.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/stringy_numbers.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/struct.py create mode 100644 ocr/.venv/Lib/site-packages/proto/marshal/rules/wrappers.py create mode 100644 ocr/.venv/Lib/site-packages/proto/message.py create mode 100644 ocr/.venv/Lib/site-packages/proto/modules.py create mode 100644 ocr/.venv/Lib/site-packages/proto/primitives.py create mode 100644 ocr/.venv/Lib/site-packages/proto/utils.py create mode 100644 ocr/.venv/Lib/site-packages/proto/version.py create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/proto_plus-1.26.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/protobuf-5.29.5.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/protobuf-5.29.5.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/protobuf-5.29.5.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/protobuf-5.29.5.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/protobuf-5.29.5.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/LICENSE.rst create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/pyasn1-0.6.1.dist-info/zip-safe create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/__pycache__/debug.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/__pycache__/error.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/__pycache__/streaming.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/__pycache__/decoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/__pycache__/encoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/__pycache__/eoo.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/decoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/encoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/ber/eoo.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/__pycache__/decoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/__pycache__/encoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/decoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/cer/encoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/__pycache__/decoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/__pycache__/encoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/decoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/der/encoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/__pycache__/decoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/__pycache__/encoder.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/decoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/native/encoder.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/codec/streaming.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/compat/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/compat/__pycache__/integer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/compat/integer.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/debug.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/error.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/char.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/constraint.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/error.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/namedtype.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/namedval.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/opentype.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/tag.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/tagmap.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/univ.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/__pycache__/useful.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/base.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/char.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/constraint.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/error.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/namedtype.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/namedval.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/opentype.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/tag.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/tagmap.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/univ.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1/type/useful.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules-0.4.2.dist-info/zip-safe create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/pem.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc1155.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc1157.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc1901.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc1902.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc1905.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2251.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2314.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2315.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2437.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2459.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2511.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2560.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2631.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2634.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2876.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2985.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc2986.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3058.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3114.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3125.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3161.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3274.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3279.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3280.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3281.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3370.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3412.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3414.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3447.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3537.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3560.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3565.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3657.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3709.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3739.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3770.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3779.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3820.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc3852.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4010.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4043.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4055.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4073.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4108.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4210.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4211.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4334.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4357.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4387.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4476.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4490.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4491.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4683.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc4985.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5035.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5083.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5084.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5126.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5208.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5275.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5280.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5480.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5636.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5639.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5649.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5652.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5697.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5751.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5752.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5753.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5755.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5913.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5914.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5915.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5916.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5917.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5924.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5934.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5940.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5958.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc5990.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6010.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6019.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6031.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6032.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6120.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6170.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6187.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6210.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6211.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6402.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6482.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6486.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6487.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6664.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6955.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc6960.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7030.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7191.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7229.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7292.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7296.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7508.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7585.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7633.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7773.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7894.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7906.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc7914.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8017.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8018.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8103.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8209.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8226.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8358.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8360.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8398.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8410.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8418.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8419.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8479.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8494.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8520.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8619.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8649.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8692.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8696.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8702.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8708.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/__pycache__/rfc8769.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/pem.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc1155.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc1157.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc1901.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc1902.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc1905.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2251.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2314.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2315.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2437.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2459.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2511.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2560.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2631.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2634.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2876.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2985.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc2986.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3058.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3114.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3125.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3161.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3274.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3279.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3280.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3281.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3370.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3412.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3414.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3447.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3537.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3560.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3565.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3657.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3709.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3739.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3770.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3779.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3820.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc3852.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4010.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4043.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4055.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4073.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4108.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4210.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4211.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4334.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4357.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4387.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4476.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4490.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4491.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4683.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc4985.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5035.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5083.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5084.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5126.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5208.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5275.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5280.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5480.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5636.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5639.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5649.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5652.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5697.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5751.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5752.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5753.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5755.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5913.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5914.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5915.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5916.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5917.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5924.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5934.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5940.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5958.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc5990.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6010.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6019.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6031.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6032.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6120.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6170.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6187.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6210.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6211.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6402.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6482.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6486.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6487.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6664.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6955.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc6960.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7030.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7191.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7229.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7292.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7296.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7508.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7585.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7633.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7773.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7894.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7906.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc7914.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8017.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8018.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8103.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8209.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8226.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8358.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8360.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8398.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8410.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8418.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8419.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8479.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8494.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8520.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8619.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8649.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8692.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8696.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8702.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8708.py create mode 100644 ocr/.venv/Lib/site-packages/pyasn1_modules/rfc8769.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pydantic-2.9.2.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/_migration.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/alias_generators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/aliases.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/annotated_handlers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/class_validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/color.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/dataclasses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/datetime_parse.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/decorator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/env_settings.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/error_wrappers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/functional_serializers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/functional_validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/generics.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/json_schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/mypy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/networks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/parse.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/root_model.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/tools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/type_adapter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/typing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/validate_call_decorator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/__pycache__/warnings.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_core_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_core_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_dataclasses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_decorators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_decorators_v1.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_discriminated_union.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_docs_extraction.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_forward_ref.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_generate_schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_generics.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_git.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_import_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_internal_dataclass.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_known_annotated_metadata.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_mock_val_ser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_model_construction.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_repr.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_schema_generation_shared.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_serializers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_signature.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_std_types_schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_typing_extra.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_validate_call.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/__pycache__/_validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_config.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_core_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_core_utils.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_dataclasses.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_decorators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_decorators_v1.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_discriminated_union.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_docs_extraction.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_fields.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_forward_ref.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_generate_schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_generics.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_git.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_import_utils.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_internal_dataclass.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_known_annotated_metadata.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_mock_val_ser.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_model_construction.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_repr.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_schema_generation_shared.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_serializers.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_signature.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_std_types_schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_typing_extra.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_utils.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_validate_call.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_internal/_validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/_migration.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/alias_generators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/aliases.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/annotated_handlers.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/class_validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/color.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/config.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/dataclasses.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/datetime_parse.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/decorator.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/class_validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/copy_internals.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/decorator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/parse.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/__pycache__/tools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/class_validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/config.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/copy_internals.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/decorator.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/json.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/parse.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/deprecated/tools.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/env_settings.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/error_wrappers.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/errors.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/experimental/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/experimental/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/experimental/__pycache__/pipeline.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/experimental/pipeline.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/fields.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/functional_serializers.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/functional_validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/generics.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/json.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/json_schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/main.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/mypy.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/networks.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/parse.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/__pycache__/_loader.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/__pycache__/_schema_validator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/_loader.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/plugin/_schema_validator.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/py.typed create mode 100644 ocr/.venv/Lib/site-packages/pydantic/root_model.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/tools.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/type_adapter.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/types.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/typing.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/_hypothesis_plugin.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/annotated_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/class_validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/color.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/dataclasses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/datetime_parse.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/decorator.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/env_settings.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/error_wrappers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/generics.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/json.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/mypy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/networks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/parse.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/tools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/typing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/validators.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/_hypothesis_plugin.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/annotated_types.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/class_validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/color.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/config.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/dataclasses.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/datetime_parse.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/decorator.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/env_settings.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/error_wrappers.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/errors.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/fields.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/generics.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/json.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/main.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/mypy.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/networks.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/parse.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/py.typed create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/tools.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/types.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/typing.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/utils.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/v1/version.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/validate_call_decorator.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/validators.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/version.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic/warnings.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core-2.23.4.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core-2.23.4.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core-2.23.4.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core-2.23.4.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core-2.23.4.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/__pycache__/core_schema.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/_pydantic_core.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/_pydantic_core.pyi create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/core_schema.py create mode 100644 ocr/.venv/Lib/site-packages/pydantic_core/py.typed create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/python_dotenv-1.0.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/python_multipart-0.0.9.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/pyyaml-6.0.3.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/requests-2.32.5.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/requests/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/api.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/certs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/help.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/models.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/packages.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/structures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/requests/__version__.py create mode 100644 ocr/.venv/Lib/site-packages/requests/_internal_utils.py create mode 100644 ocr/.venv/Lib/site-packages/requests/adapters.py create mode 100644 ocr/.venv/Lib/site-packages/requests/api.py create mode 100644 ocr/.venv/Lib/site-packages/requests/auth.py create mode 100644 ocr/.venv/Lib/site-packages/requests/certs.py create mode 100644 ocr/.venv/Lib/site-packages/requests/compat.py create mode 100644 ocr/.venv/Lib/site-packages/requests/cookies.py create mode 100644 ocr/.venv/Lib/site-packages/requests/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/requests/help.py create mode 100644 ocr/.venv/Lib/site-packages/requests/hooks.py create mode 100644 ocr/.venv/Lib/site-packages/requests/models.py create mode 100644 ocr/.venv/Lib/site-packages/requests/packages.py create mode 100644 ocr/.venv/Lib/site-packages/requests/sessions.py create mode 100644 ocr/.venv/Lib/site-packages/requests/status_codes.py create mode 100644 ocr/.venv/Lib/site-packages/requests/structures.py create mode 100644 ocr/.venv/Lib/site-packages/requests/utils.py create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/rsa-4.9.1.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/rsa/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/asn1.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/cli.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/key.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/parallel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/pem.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/pkcs1.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/pkcs1_v2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/prime.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/randnum.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/transform.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/rsa/asn1.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/cli.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/common.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/core.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/key.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/parallel.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/pem.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/pkcs1.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/pkcs1_v2.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/prime.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/py.typed create mode 100644 ocr/.venv/Lib/site-packages/rsa/randnum.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/transform.py create mode 100644 ocr/.venv/Lib/site-packages/rsa/util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_deprecation_warning.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/_collections.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/_functools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/archive_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/cmd.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/build.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/check.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/clean.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/config.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/register.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/command/upload.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/config.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/core.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/debug.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/dep_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/dir_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/dist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/errors.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/extension.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/file_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/filelist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/log.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/py38compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/py39compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/spawn.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/text_file.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/version.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_entry_points.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_imp.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_importlib.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_itertools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_path.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_reqs.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/common.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/core.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/results.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/pyparsing/util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/_vendor/zipp.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/archive_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/build_meta.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/cli-32.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/cli-64.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/cli-arm64.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/cli.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/alias.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/bdist_egg.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/bdist_rpm.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/build.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/build_clib.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/build_ext.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/build_py.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/develop.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/dist_info.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/easy_install.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/egg_info.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/install.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/install_egg_info.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/install_lib.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/install_scripts.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/launcher manifest.xml create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/py36compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/register.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/rotate.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/saveopts.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/sdist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/setopt.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/test.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/upload.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/command/upload_docs.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/expand.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/pyprojecttoml.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/config/setupcfg.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/dep_util.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/depends.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/discovery.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/dist.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/errors.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/extension.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/extern/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/setuptools/glob.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/gui-32.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/gui-64.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/gui-arm64.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/gui.exe create mode 100644 ocr/.venv/Lib/site-packages/setuptools/installer.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/launch.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/logging.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/monkey.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/msvc.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/namespaces.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/package_index.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/py34compat.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/sandbox.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/script (dev).tmpl create mode 100644 ocr/.venv/Lib/site-packages/setuptools/script.tmpl create mode 100644 ocr/.venv/Lib/site-packages/setuptools/unicode_utils.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/version.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/wheel.py create mode 100644 ocr/.venv/Lib/site-packages/setuptools/windows_support.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/LICENSE.APACHE2 create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/LICENSE.MIT create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/sniffio-1.3.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/sniffio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/sniffio/__pycache__/_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/sniffio/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_impl.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_tests/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_tests/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_tests/__pycache__/test_sniffio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_tests/test_sniffio.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio/_version.py create mode 100644 ocr/.venv/Lib/site-packages/sniffio/py.typed create mode 100644 ocr/.venv/Lib/site-packages/starlette-0.38.6.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/starlette-0.38.6.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/starlette-0.38.6.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/starlette-0.38.6.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/starlette-0.38.6.dist-info/licenses/LICENSE.md create mode 100644 ocr/.venv/Lib/site-packages/starlette/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/_compat.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/_exception_handler.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/_utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/applications.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/authentication.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/background.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/concurrency.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/convertors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/datastructures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/endpoints.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/formparsers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/requests.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/responses.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/routing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/schemas.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/staticfiles.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/status.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/templating.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/testclient.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/__pycache__/websockets.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/_compat.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/_exception_handler.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/_utils.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/applications.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/authentication.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/background.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/concurrency.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/config.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/convertors.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/datastructures.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/endpoints.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/formparsers.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/authentication.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/cors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/errors.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/gzip.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/httpsredirect.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/sessions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/trustedhost.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/__pycache__/wsgi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/authentication.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/base.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/cors.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/errors.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/gzip.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/httpsredirect.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/sessions.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/trustedhost.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/middleware/wsgi.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/py.typed create mode 100644 ocr/.venv/Lib/site-packages/starlette/requests.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/responses.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/routing.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/schemas.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/staticfiles.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/status.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/templating.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/testclient.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/types.py create mode 100644 ocr/.venv/Lib/site-packages/starlette/websockets.py create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/typing_extensions.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3-2.5.0.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/urllib3-2.5.0.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/urllib3-2.5.0.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/urllib3-2.5.0.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/urllib3-2.5.0.dist-info/licenses/LICENSE.txt create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/_base_connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/_request_methods.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/_base_connection.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/_collections.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/_request_methods.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/_version.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/connection.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/connectionpool.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__pycache__/fetch.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__pycache__/request.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/__pycache__/response.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/connection.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/fetch.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/request.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/emscripten/response.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/pyopenssl.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/contrib/socks.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/fields.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/filepost.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/connection.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/http2/probe.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/poolmanager.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/py.typed create mode 100644 ocr/.venv/Lib/site-packages/urllib3/response.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/connection.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/proxy.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/request.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/response.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/retry.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/ssl_.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/ssl_match_hostname.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/ssltransport.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/timeout.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/url.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/util.py create mode 100644 ocr/.venv/Lib/site-packages/urllib3/util/wait.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/REQUESTED create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/uvicorn-0.30.6.dist-info/licenses/LICENSE.md create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/_subprocess.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/_types.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/config.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/importer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/logging.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/__pycache__/workers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/_subprocess.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/_types.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/config.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/importer.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/__pycache__/off.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/__pycache__/on.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/off.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/lifespan/on.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/logging.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/__pycache__/asyncio.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/__pycache__/auto.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/__pycache__/uvloop.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/asyncio.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/auto.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/loops/uvloop.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/main.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__pycache__/asgi2.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__pycache__/message_logger.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__pycache__/proxy_headers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/__pycache__/wsgi.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/asgi2.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/message_logger.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/proxy_headers.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/middleware/wsgi.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__pycache__/auto.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__pycache__/flow_control.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__pycache__/h11_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/__pycache__/httptools_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/auto.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/flow_control.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/h11_impl.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/http/httptools_impl.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/utils.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/__pycache__/auto.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/__pycache__/websockets_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/__pycache__/wsproto_impl.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/auto.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/websockets_impl.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/protocols/websockets/wsproto_impl.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/py.typed create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/server.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/basereload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/multiprocess.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/statreload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/watchfilesreload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/__pycache__/watchgodreload.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/basereload.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/multiprocess.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/statreload.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/watchfilesreload.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/supervisors/watchgodreload.py create mode 100644 ocr/.venv/Lib/site-packages/uvicorn/workers.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/watchfiles-1.1.1.dist-info/licenses/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/cli.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/filters.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/main.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/run.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/_rust_notify.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/_rust_notify.pyi create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/cli.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/filters.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/main.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/py.typed create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/run.py create mode 100644 ocr/.venv/Lib/site-packages/watchfiles/version.py create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/INSTALLER create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/LICENSE create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/METADATA create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/RECORD create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/WHEEL create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/entry_points.txt create mode 100644 ocr/.venv/Lib/site-packages/websockets-15.0.1.dist-info/top_level.txt create mode 100644 ocr/.venv/Lib/site-packages/websockets/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/__main__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/__main__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/cli.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/datastructures.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/frames.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/headers.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/http.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/http11.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/imports.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/protocol.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/streams.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/typing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/uri.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/__pycache__/version.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/async_timeout.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/compatibility.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/messages.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/router.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/__pycache__/server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/async_timeout.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/client.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/compatibility.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/connection.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/messages.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/router.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/asyncio/server.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/auth.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/cli.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/client.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/connection.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/datastructures.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/__pycache__/base.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/__pycache__/permessage_deflate.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/base.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/extensions/permessage_deflate.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/frames.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/headers.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/http.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/http11.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/imports.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/auth.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/exceptions.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/framing.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/handshake.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/http.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/protocol.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/__pycache__/server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/auth.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/client.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/exceptions.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/framing.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/handshake.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/http.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/protocol.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/legacy/server.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/protocol.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/py.typed create mode 100644 ocr/.venv/Lib/site-packages/websockets/server.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/speedups.c create mode 100644 ocr/.venv/Lib/site-packages/websockets/speedups.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/websockets/speedups.pyi create mode 100644 ocr/.venv/Lib/site-packages/websockets/streams.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/client.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/connection.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/messages.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/router.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/server.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/__pycache__/utils.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/client.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/connection.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/messages.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/router.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/server.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/sync/utils.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/typing.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/uri.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/utils.py create mode 100644 ocr/.venv/Lib/site-packages/websockets/version.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/__init__.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/__init__.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/composer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/constructor.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/cyaml.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/dumper.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/emitter.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/error.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/events.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/loader.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/nodes.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/parser.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/reader.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/representer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/resolver.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/scanner.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/serializer.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/__pycache__/tokens.cpython-310.pyc create mode 100644 ocr/.venv/Lib/site-packages/yaml/_yaml.cp310-win_amd64.pyd create mode 100644 ocr/.venv/Lib/site-packages/yaml/composer.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/constructor.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/cyaml.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/dumper.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/emitter.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/error.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/events.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/loader.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/nodes.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/parser.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/reader.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/representer.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/resolver.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/scanner.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/serializer.py create mode 100644 ocr/.venv/Lib/site-packages/yaml/tokens.py create mode 100644 ocr/.venv/Scripts/Activate.ps1 create mode 100644 ocr/.venv/Scripts/activate create mode 100644 ocr/.venv/Scripts/activate.bat create mode 100644 ocr/.venv/Scripts/deactivate.bat create mode 100644 ocr/.venv/Scripts/dotenv.exe create mode 100644 ocr/.venv/Scripts/fastapi.exe create mode 100644 ocr/.venv/Scripts/normalizer.exe create mode 100644 ocr/.venv/Scripts/pip.exe create mode 100644 ocr/.venv/Scripts/pip3.10.exe create mode 100644 ocr/.venv/Scripts/pip3.exe create mode 100644 ocr/.venv/Scripts/pyrsa-decrypt.exe create mode 100644 ocr/.venv/Scripts/pyrsa-encrypt.exe create mode 100644 ocr/.venv/Scripts/pyrsa-keygen.exe create mode 100644 ocr/.venv/Scripts/pyrsa-priv2pub.exe create mode 100644 ocr/.venv/Scripts/pyrsa-sign.exe create mode 100644 ocr/.venv/Scripts/pyrsa-verify.exe create mode 100644 ocr/.venv/Scripts/python.exe create mode 100644 ocr/.venv/Scripts/pythonw.exe create mode 100644 ocr/.venv/Scripts/uvicorn.exe create mode 100644 ocr/.venv/Scripts/watchfiles.exe create mode 100644 ocr/.venv/Scripts/websockets.exe create mode 100644 ocr/.venv/pyvenv.cfg create mode 100644 ocr/README.md create mode 100644 ocr/__pycache__/main.cpython-310.pyc create mode 100644 ocr/main.py create mode 100644 ocr/requirements.txt diff --git a/ocr/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc b/ocr/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ff5630e53bc54611ee9c6f5cb0e10e1e471c463 GIT binary patch literal 115614 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

M7!7%zs_5u zWUrF_N~V>!K3=UbFdFQAV-fzKq1Ac6-da~Jj=u{oyus3tcThX}Rs+V>s5f{&8loFSmAM_r`H@ z=&kNTN$=)2i-hHWVPkfvuW)&8Z4oZD%*?WIrr}R#^CS7bTrNjw%l5xw_EO&6NFD`w z$PwTHJ~XK#hehtDeb?2x&h;u*R_^>@A)hN2i)-O!r}I7e?8fz|)ulFWE^bmwvNsmH z<28xU#u;|L<=e9{l`d>dZSGTB(}adk5AdsBM)?D&Vjc-w8q0ju;9nsrO=Y{0xY-+n z1g#s`(Dk-~Q9{Yzk-mhnx+9-1_S1q)alq2e`7!PkiZ`nU%z8E#H&T-`^y!Ac&*zAs zI+!VL)${($Kw)50ZZlHE%ur_Vy5ixYg3}ji#bd?H#&rM2d^Woo^?k}#8S1_Lzt;ah zmQM|3(m9@N<_>bi;(Gu8I{*KruBWgR*7MZAn_XYrCUd}{?8ff&Wz2jwpUw5riu6!s z;Ev*?dS4u3Hd!5Zy@k>U7i@po+}DMI!`^t2doQGkN1x4=^y~tE=d*?M*ZTVke_wns zpSm7yF96{n;&RhkCl+)_FH?>hcqe6vf^Yrrk!{adnn149eKU73{lG3u_>=e#R);9)toBM zG}W9QRrL(T4hdwJ0^$Ys0}Jf#Wf8zy>_wL#$e)oz0_2cGUvu&;fDb_uteM}do=b#+yB)vNb@@1q{$*;&`X?|1*P5dQWl!}txojQ@&wxrU;Cf{GiQMaD+{WE+f| z!q_o;#zuh`xb@K3uy~Q%counyJ9yf>%w0T7e1=!>biQrySzdi;@amDdQO4UGpU2xg z-dy4C%&Zt6RyHbPR=E5LQTZ?9$0mBKM+Iiwza-ovV`Gjl@I|aNk8jWLC-Lo*`1T2Y zmOq8w1%8e{jprg~Yewz-C!pC_-Ee%rv)|eG{RX`cehiHQ%5@a=Dk{zrV~6#aEOBGa zNK848_X0QX8FHR_a7H7t4vhoj<07{nF$O+hm*Q$x=AlZuNf@b``3bH0NePvt9fBj& zD}!NgFHl~%+lgf&xVI&?V=25fk#svr97pO!Z>yX1$HR7WY{Uy96?;;2qM#v^m$Za; zcev?YZ#U-MNO)n}yQ}t9J%3eq>)v`RRNii|??ocuUJ`rVHWwrBgwr=xf5V#xM6W-@-5=2<( zG;4>H)@ycF0Bf>RpEp@4R2mgor6;5UHGbIMjx%R3kZl}NWfrw+OqL*Lz?^+`j&m{8z#PA@9bx1Y0I$*9SIS%6QV%PqjH(Ws>~`l%rZ^p9LrgBPJo)g zN98(-x`}EM)Z7GwO$}kFtcEaD_Mt(*Uono@Av?hHL;KLAo&)o5jQi&`$n8~WVl@rv z^w|+&Nx(TOCxB6J5cUT@`jYI(8j5-rRTDb&;Vf;&jeDk=JzyV$&__&~2khU>`zEx? z)cd9GkX!W{%UmEyCTcHCS~W8>>lZSs9qbA%o4l%E^~`-Eg2FZ8-Og3oO_7DO4bxm; z=4ZBVBP8&TYVeqBXl@LkQ4M6tA~BK}KSq*l=F4GSPrk|c6+>$wwaKZ7~y z3@Q?x!(7vb=*TR9ith+=Oy=x9ZToWjNhn zdBn-(+?OoBa`Ck#-NYP1=1VVMxpe8uw_dq$Q7;Cc2!94&vKuF1FCbj!kX?oP5u~)$ z)8`*!BAI8YwSR`kK9MLxE>_U12yu4FW>C4$q=%PNY$IG=L-~}{RTv0tj18@H2qnfs z8$u9ZvM$437(}chuoC9`X_&P**%vPZ}Wxo?7iI8ms3BZhqwlinYGjH}BBR3UDcb2H zjW+u5@5w-y$UuK&^o;KUSNGvL)(p9XK}{^cJco8xz!4s^%vOnn2guK%k5GQ2Dca&e zM_#>ydD)y@ z&VG)i^CwqdtrbZZ$xZk^gxA+kv@5=UzZ*pPi2OP&TBk}QX;jfh@>x{xqkKyKz%d+F zDd@gaNFpv?Ls4YihDch3-z_|3z>@a18={D^*X zY}ZlLRa6I%YnREHfeThMBxi2!zBL5Hj7j|eRg#+WjLI`Yus={IMpm>y9)U=og zmDJNk)e#LJ%Ip7NyBle?9-d+k*(ZtuJ|&ta0X2>9ne#>z>~8Vk>RtLM$9K9s<&^bp z9M&fi#^BWdR<8_)Ud0-j4GMvp%+7s&R)SlDTFRQOVU{@q;xh}#Ze=zi4ot~rc16;P zxdu{Z=PzR<=a3%~@qKKijle>|VhiRxvswD(KTGz6J`#$^YSB~mP{Gp~j}VP$*^tj9 zpGQx#|12D`v;-Mi4^1(=Ca?l03PM@D?i9iEadkxM`2p&EdHWPwha()7(~92vrh53oFv=y3kK zaR6waGJXV*MIwNLH4fY5<1{#jnMbb(=9e+hwl16AqJN+s@)c}2VQa|*0(SbEcM^6p;sG=-A3G#+wVtr_ zJO5u|$JT`z)x47zh_Z`RU8m{>RoYm-HEd}v&J8!uW%U5VDz}~$R0wHu_N&g&M(DBdZQWuR2|~CHd>DeB(hwbSO@M*T5t@-!Zdj zN;aR1N5;E|tq3*p%d~4D_bL=8<+O|rq3K^ZEmgw1q8)MlVvgw`o;S@Zt1!E4{_fn2 z?YPW7PQNxh_@9NyROKO-D%yS!_CF$LZKgXqFrt8et=pkXp~6MD(~0&cE?pi)PS@Yp z-1A=8>V^@gyR%33S=I6wiq^O-w!NiGS6;oWN0(l{aN)JlU|Q|$>rZjDuO|-@Fp91( z@~=^4cBm+*9Rr}|8c{6&7S%%(jlPPVeq|aTM&g~YcZ7SwfFzW6_3o{oo|q6ME+WvTa<=$Q}{35mjo0!W$iJ7Smfp0I!GycU3RkCRtGSU`vpA24|xjQGhHMVOKR|*h%VryuN(-@Zo)$znjgV`9w5PRB9eveS=^Qs8tS_m(5W3AFt20Vq8`hv zC~OPz6OBma64ro!5qta?Mf21Ap=DH=dz@aI#?Q}{-k7k5v2P(OBSY2@TgVQm z5XQ&)KJmzejB)kWs<=9o?rmiLWZPSpU1Scob+!+2S=fL-<(}py3|A9rutY)3n%T&E zdBpuO;gW&QjMN#7LjlU$elv=ik2qMCYd)HQl0dpCVJlI0Z>o+8Lhz|742tbWLuS`*x{swfom;vN^dET<$x= zr7IUNzItW2O#`${{Jy9?`YFE7?a|d~j2W5?WFL{e412=YPGk(O{n&aHfTS#zwm|YW zwNBWdbDy`^V@%E?D;sv`#V{P+=l{gWk8Wl2!z`eG^X=7@8@Dz6Ss7;wD1Fh&W{{T`GVv+rHSGkM z6L4I_F#2;k2JL^I$rc_{X}g92`BhZ7e|?E25t0W#YE!w6@+rx>uYVvrCz#15dZ)s! z?E6S93F-U4q$w|;N~=T`QYZa^iHkAWxxrpCq)#*&ST-ZYF49T*NVr5kkD;s}9yGFI zFNnG#Gn1_`K9KRDe1mvEIsISJI(qBb!PdHeN;JJgQ)8+|`ZIzBvE~;vc!?^_C^RO1 zLqkpKIEWvU!Xq=6Fx`RZe1pXHHrj~iv@oT>%hY{|y}w4$azxUR-cQMq&`lyz`lRK2 zZ|uzS{OuZiNMh|TPToXw_7-#f$cf1rt%=Fp?-Fxw(Ep^S5_S*!Wwa;3!bCn4Q8+V? zCH2?NUr7ojJ#Go~Tx;j@vXD{-=Yhh5f&F M$tfU%?o_Nl0V{GIC;$Ke literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/ocr/.venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee7b8268dc943a321aff4df4899558f93382e5b1 GIT binary patch literal 237 zcmd1j<>g`kg6~s>GIfCTV-N=!FabFZKwK;UBvKht7@8RuFfL?ZWJqBQX3%7c;*U?s zEG{W6$;>H^&qz$p_S0m##T6f)nOl%wR1zN_#hsELpI??*RFs*Lx{{#?WE`0I73*vj z6Iz^FR2-9)m71TI9^;Z)oL!P%5aVBvnirm!lapE!@8}tmpIj89SC*Pr7UPqd6jPj8 plB!z(v?eh= (3, 6) else ImportError + raise exc("No module named '_yaml'") +else: + from yaml._yaml import * + import warnings + warnings.warn( + 'The _yaml extension module is now located at yaml._yaml' + ' and its location is subject to change. To use the' + ' LibYAML-based parser and emitter, import from `yaml`:' + ' `from yaml import CLoader as Loader, CDumper as Dumper`.', + DeprecationWarning + ) + del warnings + # Don't `del yaml` here because yaml is actually an existing + # namespace member of _yaml. + +__name__ = '_yaml' +# If the module is top-level (i.e. not a part of any specific package) +# then the attribute should be set to ''. +# https://docs.python.org/3.8/library/types.html +__package__ = '' diff --git a/ocr/.venv/Lib/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80870a8bc1e862b7f570f9b2cb941175d0a4f695 GIT binary patch literal 738 zcmYjOO-~y!5VdzV$&v&KrBZw0;2TN>=^a%S2#SOR^Z-@W?MjXl55cf&uWW~}WBCs~ zx5xgZ`q~qJp}ll=x2Ux=qj@v)X6$FPy4ojrx?e`>zC*~*8vK6}1UqPMhE5Vm3z89_ zKx8E2huE!SE-9ii&SFX+mYu7PeGZAH(8;>cmE8yWnPN|`=$*CvG)p1@yo;gKgitBI4gTWHCY zcWt#MVYge(E@AGOH*9_(^a3V~of)=tz&x%wQnQb{$46T;;c#3ftOLvHIZ!I^!EQ2D zR>pdEZcWLi^|I+Un>MHhPvyNMBV2dkDhntP zitwQ=g_QGJYtF-f^GeLG!~(&0Vn?{NalcOYw)6KWfXgp0!RST45AMpFDt}i2&M6A; zeD^RnbDK}DL0{*nUhb5Kt-teJ-n{P>$1hi&^GS6V(%0=zzoEFtt)ojj!(>R;qLij+ P35{r!B)_9xlBCHW+Y#fc literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/METADATA b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/METADATA new file mode 100644 index 00000000..3ac05cfd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/METADATA @@ -0,0 +1,295 @@ +Metadata-Version: 2.3 +Name: annotated-types +Version: 0.7.0 +Summary: Reusable constraint types to use with typing.Annotated +Project-URL: Homepage, https://github.com/annotated-types/annotated-types +Project-URL: Source, https://github.com/annotated-types/annotated-types +Project-URL: Changelog, https://github.com/annotated-types/annotated-types/releases +Author-email: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin , Zac Hatfield-Dodds +License-File: LICENSE +Classifier: Development Status :: 4 - Beta +Classifier: Environment :: Console +Classifier: Environment :: MacOS X +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Information Technology +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: Unix +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Typing :: Typed +Requires-Python: >=3.8 +Requires-Dist: typing-extensions>=4.0.0; python_version < '3.9' +Description-Content-Type: text/markdown + +# annotated-types + +[![CI](https://github.com/annotated-types/annotated-types/workflows/CI/badge.svg?event=push)](https://github.com/annotated-types/annotated-types/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) +[![pypi](https://img.shields.io/pypi/v/annotated-types.svg)](https://pypi.python.org/pypi/annotated-types) +[![versions](https://img.shields.io/pypi/pyversions/annotated-types.svg)](https://github.com/annotated-types/annotated-types) +[![license](https://img.shields.io/github/license/annotated-types/annotated-types.svg)](https://github.com/annotated-types/annotated-types/blob/main/LICENSE) + +[PEP-593](https://peps.python.org/pep-0593/) added `typing.Annotated` as a way of +adding context-specific metadata to existing types, and specifies that +`Annotated[T, x]` _should_ be treated as `T` by any tool or library without special +logic for `x`. + +This package provides metadata objects which can be used to represent common +constraints such as upper and lower bounds on scalar values and collection sizes, +a `Predicate` marker for runtime checks, and +descriptions of how we intend these metadata to be interpreted. In some cases, +we also note alternative representations which do not require this package. + +## Install + +```bash +pip install annotated-types +``` + +## Examples + +```python +from typing import Annotated +from annotated_types import Gt, Len, Predicate + +class MyClass: + age: Annotated[int, Gt(18)] # Valid: 19, 20, ... + # Invalid: 17, 18, "19", 19.0, ... + factors: list[Annotated[int, Predicate(is_prime)]] # Valid: 2, 3, 5, 7, 11, ... + # Invalid: 4, 8, -2, 5.0, "prime", ... + + my_list: Annotated[list[int], Len(0, 10)] # Valid: [], [10, 20, 30, 40, 50] + # Invalid: (1, 2), ["abc"], [0] * 20 +``` + +## Documentation + +_While `annotated-types` avoids runtime checks for performance, users should not +construct invalid combinations such as `MultipleOf("non-numeric")` or `Annotated[int, Len(3)]`. +Downstream implementors may choose to raise an error, emit a warning, silently ignore +a metadata item, etc., if the metadata objects described below are used with an +incompatible type - or for any other reason!_ + +### Gt, Ge, Lt, Le + +Express inclusive and/or exclusive bounds on orderable values - which may be numbers, +dates, times, strings, sets, etc. Note that the boundary value need not be of the +same type that was annotated, so long as they can be compared: `Annotated[int, Gt(1.5)]` +is fine, for example, and implies that the value is an integer x such that `x > 1.5`. + +We suggest that implementors may also interpret `functools.partial(operator.le, 1.5)` +as being equivalent to `Gt(1.5)`, for users who wish to avoid a runtime dependency on +the `annotated-types` package. + +To be explicit, these types have the following meanings: + +* `Gt(x)` - value must be "Greater Than" `x` - equivalent to exclusive minimum +* `Ge(x)` - value must be "Greater than or Equal" to `x` - equivalent to inclusive minimum +* `Lt(x)` - value must be "Less Than" `x` - equivalent to exclusive maximum +* `Le(x)` - value must be "Less than or Equal" to `x` - equivalent to inclusive maximum + +### Interval + +`Interval(gt, ge, lt, le)` allows you to specify an upper and lower bound with a single +metadata object. `None` attributes should be ignored, and non-`None` attributes +treated as per the single bounds above. + +### MultipleOf + +`MultipleOf(multiple_of=x)` might be interpreted in two ways: + +1. Python semantics, implying `value % multiple_of == 0`, or +2. [JSONschema semantics](https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.2.1), + where `int(value / multiple_of) == value / multiple_of`. + +We encourage users to be aware of these two common interpretations and their +distinct behaviours, especially since very large or non-integer numbers make +it easy to cause silent data corruption due to floating-point imprecision. + +We encourage libraries to carefully document which interpretation they implement. + +### MinLen, MaxLen, Len + +`Len()` implies that `min_length <= len(value) <= max_length` - lower and upper bounds are inclusive. + +As well as `Len()` which can optionally include upper and lower bounds, we also +provide `MinLen(x)` and `MaxLen(y)` which are equivalent to `Len(min_length=x)` +and `Len(max_length=y)` respectively. + +`Len`, `MinLen`, and `MaxLen` may be used with any type which supports `len(value)`. + +Examples of usage: + +* `Annotated[list, MaxLen(10)]` (or `Annotated[list, Len(max_length=10))`) - list must have a length of 10 or less +* `Annotated[str, MaxLen(10)]` - string must have a length of 10 or less +* `Annotated[list, MinLen(3))` (or `Annotated[list, Len(min_length=3))`) - list must have a length of 3 or more +* `Annotated[list, Len(4, 6)]` - list must have a length of 4, 5, or 6 +* `Annotated[list, Len(8, 8)]` - list must have a length of exactly 8 + +#### Changed in v0.4.0 + +* `min_inclusive` has been renamed to `min_length`, no change in meaning +* `max_exclusive` has been renamed to `max_length`, upper bound is now **inclusive** instead of **exclusive** +* The recommendation that slices are interpreted as `Len` has been removed due to ambiguity and different semantic + meaning of the upper bound in slices vs. `Len` + +See [issue #23](https://github.com/annotated-types/annotated-types/issues/23) for discussion. + +### Timezone + +`Timezone` can be used with a `datetime` or a `time` to express which timezones +are allowed. `Annotated[datetime, Timezone(None)]` must be a naive datetime. +`Timezone[...]` ([literal ellipsis](https://docs.python.org/3/library/constants.html#Ellipsis)) +expresses that any timezone-aware datetime is allowed. You may also pass a specific +timezone string or [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) +object such as `Timezone(timezone.utc)` or `Timezone("Africa/Abidjan")` to express that you only +allow a specific timezone, though we note that this is often a symptom of fragile design. + +#### Changed in v0.x.x + +* `Timezone` accepts [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) objects instead of + `timezone`, extending compatibility to [`zoneinfo`](https://docs.python.org/3/library/zoneinfo.html) and third party libraries. + +### Unit + +`Unit(unit: str)` expresses that the annotated numeric value is the magnitude of +a quantity with the specified unit. For example, `Annotated[float, Unit("m/s")]` +would be a float representing a velocity in meters per second. + +Please note that `annotated_types` itself makes no attempt to parse or validate +the unit string in any way. That is left entirely to downstream libraries, +such as [`pint`](https://pint.readthedocs.io) or +[`astropy.units`](https://docs.astropy.org/en/stable/units/). + +An example of how a library might use this metadata: + +```python +from annotated_types import Unit +from typing import Annotated, TypeVar, Callable, Any, get_origin, get_args + +# given a type annotated with a unit: +Meters = Annotated[float, Unit("m")] + + +# you can cast the annotation to a specific unit type with any +# callable that accepts a string and returns the desired type +T = TypeVar("T") +def cast_unit(tp: Any, unit_cls: Callable[[str], T]) -> T | None: + if get_origin(tp) is Annotated: + for arg in get_args(tp): + if isinstance(arg, Unit): + return unit_cls(arg.unit) + return None + + +# using `pint` +import pint +pint_unit = cast_unit(Meters, pint.Unit) + + +# using `astropy.units` +import astropy.units as u +astropy_unit = cast_unit(Meters, u.Unit) +``` + +### Predicate + +`Predicate(func: Callable)` expresses that `func(value)` is truthy for valid values. +Users should prefer the statically inspectable metadata above, but if you need +the full power and flexibility of arbitrary runtime predicates... here it is. + +For some common constraints, we provide generic types: + +* `IsLower = Annotated[T, Predicate(str.islower)]` +* `IsUpper = Annotated[T, Predicate(str.isupper)]` +* `IsDigit = Annotated[T, Predicate(str.isdigit)]` +* `IsFinite = Annotated[T, Predicate(math.isfinite)]` +* `IsNotFinite = Annotated[T, Predicate(Not(math.isfinite))]` +* `IsNan = Annotated[T, Predicate(math.isnan)]` +* `IsNotNan = Annotated[T, Predicate(Not(math.isnan))]` +* `IsInfinite = Annotated[T, Predicate(math.isinf)]` +* `IsNotInfinite = Annotated[T, Predicate(Not(math.isinf))]` + +so that you can write e.g. `x: IsFinite[float] = 2.0` instead of the longer +(but exactly equivalent) `x: Annotated[float, Predicate(math.isfinite)] = 2.0`. + +Some libraries might have special logic to handle known or understandable predicates, +for example by checking for `str.isdigit` and using its presence to both call custom +logic to enforce digit-only strings, and customise some generated external schema. +Users are therefore encouraged to avoid indirection like `lambda s: s.lower()`, in +favor of introspectable methods such as `str.lower` or `re.compile("pattern").search`. + +To enable basic negation of commonly used predicates like `math.isnan` without introducing introspection that makes it impossible for implementers to introspect the predicate we provide a `Not` wrapper that simply negates the predicate in an introspectable manner. Several of the predicates listed above are created in this manner. + +We do not specify what behaviour should be expected for predicates that raise +an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently +skip invalid constraints, or statically raise an error; or it might try calling it +and then propagate or discard the resulting +`TypeError: descriptor 'isdigit' for 'str' objects doesn't apply to a 'int' object` +exception. We encourage libraries to document the behaviour they choose. + +### Doc + +`doc()` can be used to add documentation information in `Annotated`, for function and method parameters, variables, class attributes, return types, and any place where `Annotated` can be used. + +It expects a value that can be statically analyzed, as the main use case is for static analysis, editors, documentation generators, and similar tools. + +It returns a `DocInfo` class with a single attribute `documentation` containing the value passed to `doc()`. + +This is the early adopter's alternative form of the [`typing-doc` proposal](https://github.com/tiangolo/fastapi/blob/typing-doc/typing_doc.md). + +### Integrating downstream types with `GroupedMetadata` + +Implementers may choose to provide a convenience wrapper that groups multiple pieces of metadata. +This can help reduce verbosity and cognitive overhead for users. +For example, an implementer like Pydantic might provide a `Field` or `Meta` type that accepts keyword arguments and transforms these into low-level metadata: + +```python +from dataclasses import dataclass +from typing import Iterator +from annotated_types import GroupedMetadata, Ge + +@dataclass +class Field(GroupedMetadata): + ge: int | None = None + description: str | None = None + + def __iter__(self) -> Iterator[object]: + # Iterating over a GroupedMetadata object should yield annotated-types + # constraint metadata objects which describe it as fully as possible, + # and may include other unknown objects too. + if self.ge is not None: + yield Ge(self.ge) + if self.description is not None: + yield Description(self.description) +``` + +Libraries consuming annotated-types constraints should check for `GroupedMetadata` and unpack it by iterating over the object and treating the results as if they had been "unpacked" in the `Annotated` type. The same logic should be applied to the [PEP 646 `Unpack` type](https://peps.python.org/pep-0646/), so that `Annotated[T, Field(...)]`, `Annotated[T, Unpack[Field(...)]]` and `Annotated[T, *Field(...)]` are all treated consistently. + +Libraries consuming annotated-types should also ignore any metadata they do not recongize that came from unpacking a `GroupedMetadata`, just like they ignore unrecognized metadata in `Annotated` itself. + +Our own `annotated_types.Interval` class is a `GroupedMetadata` which unpacks itself into `Gt`, `Lt`, etc., so this is not an abstract concern. Similarly, `annotated_types.Len` is a `GroupedMetadata` which unpacks itself into `MinLen` (optionally) and `MaxLen`. + +### Consuming metadata + +We intend to not be prescriptive as to _how_ the metadata and constraints are used, but as an example of how one might parse constraints from types annotations see our [implementation in `test_main.py`](https://github.com/annotated-types/annotated-types/blob/f59cf6d1b5255a0fe359b93896759a180bec30ae/tests/test_main.py#L94-L103). + +It is up to the implementer to determine how this metadata is used. +You could use the metadata for runtime type checking, for generating schemas or to generate example data, amongst other use cases. + +## Design & History + +This package was designed at the PyCon 2022 sprints by the maintainers of Pydantic +and Hypothesis, with the goal of making it as easy as possible for end-users to +provide more informative annotations for use by runtime libraries. + +It is deliberately minimal, and following PEP-593 allows considerable downstream +discretion in what (if anything!) they choose to support. Nonetheless, we expect +that staying simple and covering _only_ the most common use-cases will give users +and maintainers the best experience we can. If you'd like more constraints for your +types - follow our lead, by defining them and documenting them downstream! diff --git a/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/RECORD b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/RECORD new file mode 100644 index 00000000..3e54a44f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/RECORD @@ -0,0 +1,10 @@ +annotated_types-0.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +annotated_types-0.7.0.dist-info/METADATA,sha256=7ltqxksJJ0wCYFGBNIQCWTlWQGeAH0hRFdnK3CB895E,15046 +annotated_types-0.7.0.dist-info/RECORD,, +annotated_types-0.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87 +annotated_types-0.7.0.dist-info/licenses/LICENSE,sha256=_hBJiEsaDZNCkB6I4H8ykl0ksxIdmXK2poBfuYJLCV0,1083 +annotated_types/__init__.py,sha256=RynLsRKUEGI0KimXydlD1fZEfEzWwDo0Uon3zOKhG1Q,13819 +annotated_types/__pycache__/__init__.cpython-310.pyc,, +annotated_types/__pycache__/test_cases.cpython-310.pyc,, +annotated_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +annotated_types/test_cases.py,sha256=zHFX6EpcMbGJ8FzBYDbO56bPwx_DYIVSKbZM-4B3_lg,6421 diff --git a/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/WHEEL new file mode 100644 index 00000000..516596c7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: hatchling 1.24.2 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE new file mode 100644 index 00000000..d99323a9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 the contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/annotated_types/__init__.py b/ocr/.venv/Lib/site-packages/annotated_types/__init__.py new file mode 100644 index 00000000..74e0deea --- /dev/null +++ b/ocr/.venv/Lib/site-packages/annotated_types/__init__.py @@ -0,0 +1,432 @@ +import math +import sys +import types +from dataclasses import dataclass +from datetime import tzinfo +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, SupportsFloat, SupportsIndex, TypeVar, Union + +if sys.version_info < (3, 8): + from typing_extensions import Protocol, runtime_checkable +else: + from typing import Protocol, runtime_checkable + +if sys.version_info < (3, 9): + from typing_extensions import Annotated, Literal +else: + from typing import Annotated, Literal + +if sys.version_info < (3, 10): + EllipsisType = type(Ellipsis) + KW_ONLY = {} + SLOTS = {} +else: + from types import EllipsisType + + KW_ONLY = {"kw_only": True} + SLOTS = {"slots": True} + + +__all__ = ( + 'BaseMetadata', + 'GroupedMetadata', + 'Gt', + 'Ge', + 'Lt', + 'Le', + 'Interval', + 'MultipleOf', + 'MinLen', + 'MaxLen', + 'Len', + 'Timezone', + 'Predicate', + 'LowerCase', + 'UpperCase', + 'IsDigits', + 'IsFinite', + 'IsNotFinite', + 'IsNan', + 'IsNotNan', + 'IsInfinite', + 'IsNotInfinite', + 'doc', + 'DocInfo', + '__version__', +) + +__version__ = '0.7.0' + + +T = TypeVar('T') + + +# arguments that start with __ are considered +# positional only +# see https://peps.python.org/pep-0484/#positional-only-arguments + + +class SupportsGt(Protocol): + def __gt__(self: T, __other: T) -> bool: + ... + + +class SupportsGe(Protocol): + def __ge__(self: T, __other: T) -> bool: + ... + + +class SupportsLt(Protocol): + def __lt__(self: T, __other: T) -> bool: + ... + + +class SupportsLe(Protocol): + def __le__(self: T, __other: T) -> bool: + ... + + +class SupportsMod(Protocol): + def __mod__(self: T, __other: T) -> T: + ... + + +class SupportsDiv(Protocol): + def __div__(self: T, __other: T) -> T: + ... + + +class BaseMetadata: + """Base class for all metadata. + + This exists mainly so that implementers + can do `isinstance(..., BaseMetadata)` while traversing field annotations. + """ + + __slots__ = () + + +@dataclass(frozen=True, **SLOTS) +class Gt(BaseMetadata): + """Gt(gt=x) implies that the value must be greater than x. + + It can be used with any type that supports the ``>`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + gt: SupportsGt + + +@dataclass(frozen=True, **SLOTS) +class Ge(BaseMetadata): + """Ge(ge=x) implies that the value must be greater than or equal to x. + + It can be used with any type that supports the ``>=`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + ge: SupportsGe + + +@dataclass(frozen=True, **SLOTS) +class Lt(BaseMetadata): + """Lt(lt=x) implies that the value must be less than x. + + It can be used with any type that supports the ``<`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + lt: SupportsLt + + +@dataclass(frozen=True, **SLOTS) +class Le(BaseMetadata): + """Le(le=x) implies that the value must be less than or equal to x. + + It can be used with any type that supports the ``<=`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + le: SupportsLe + + +@runtime_checkable +class GroupedMetadata(Protocol): + """A grouping of multiple objects, like typing.Unpack. + + `GroupedMetadata` on its own is not metadata and has no meaning. + All of the constraints and metadata should be fully expressable + in terms of the `BaseMetadata`'s returned by `GroupedMetadata.__iter__()`. + + Concrete implementations should override `GroupedMetadata.__iter__()` + to add their own metadata. + For example: + + >>> @dataclass + >>> class Field(GroupedMetadata): + >>> gt: float | None = None + >>> description: str | None = None + ... + >>> def __iter__(self) -> Iterable[object]: + >>> if self.gt is not None: + >>> yield Gt(self.gt) + >>> if self.description is not None: + >>> yield Description(self.gt) + + Also see the implementation of `Interval` below for an example. + + Parsers should recognize this and unpack it so that it can be used + both with and without unpacking: + + - `Annotated[int, Field(...)]` (parser must unpack Field) + - `Annotated[int, *Field(...)]` (PEP-646) + """ # noqa: trailing-whitespace + + @property + def __is_annotated_types_grouped_metadata__(self) -> Literal[True]: + return True + + def __iter__(self) -> Iterator[object]: + ... + + if not TYPE_CHECKING: + __slots__ = () # allow subclasses to use slots + + def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None: + # Basic ABC like functionality without the complexity of an ABC + super().__init_subclass__(*args, **kwargs) + if cls.__iter__ is GroupedMetadata.__iter__: + raise TypeError("Can't subclass GroupedMetadata without implementing __iter__") + + def __iter__(self) -> Iterator[object]: # noqa: F811 + raise NotImplementedError # more helpful than "None has no attribute..." type errors + + +@dataclass(frozen=True, **KW_ONLY, **SLOTS) +class Interval(GroupedMetadata): + """Interval can express inclusive or exclusive bounds with a single object. + + It accepts keyword arguments ``gt``, ``ge``, ``lt``, and/or ``le``, which + are interpreted the same way as the single-bound constraints. + """ + + gt: Union[SupportsGt, None] = None + ge: Union[SupportsGe, None] = None + lt: Union[SupportsLt, None] = None + le: Union[SupportsLe, None] = None + + def __iter__(self) -> Iterator[BaseMetadata]: + """Unpack an Interval into zero or more single-bounds.""" + if self.gt is not None: + yield Gt(self.gt) + if self.ge is not None: + yield Ge(self.ge) + if self.lt is not None: + yield Lt(self.lt) + if self.le is not None: + yield Le(self.le) + + +@dataclass(frozen=True, **SLOTS) +class MultipleOf(BaseMetadata): + """MultipleOf(multiple_of=x) might be interpreted in two ways: + + 1. Python semantics, implying ``value % multiple_of == 0``, or + 2. JSONschema semantics, where ``int(value / multiple_of) == value / multiple_of`` + + We encourage users to be aware of these two common interpretations, + and libraries to carefully document which they implement. + """ + + multiple_of: Union[SupportsDiv, SupportsMod] + + +@dataclass(frozen=True, **SLOTS) +class MinLen(BaseMetadata): + """ + MinLen() implies minimum inclusive length, + e.g. ``len(value) >= min_length``. + """ + + min_length: Annotated[int, Ge(0)] + + +@dataclass(frozen=True, **SLOTS) +class MaxLen(BaseMetadata): + """ + MaxLen() implies maximum inclusive length, + e.g. ``len(value) <= max_length``. + """ + + max_length: Annotated[int, Ge(0)] + + +@dataclass(frozen=True, **SLOTS) +class Len(GroupedMetadata): + """ + Len() implies that ``min_length <= len(value) <= max_length``. + + Upper bound may be omitted or ``None`` to indicate no upper length bound. + """ + + min_length: Annotated[int, Ge(0)] = 0 + max_length: Optional[Annotated[int, Ge(0)]] = None + + def __iter__(self) -> Iterator[BaseMetadata]: + """Unpack a Len into zone or more single-bounds.""" + if self.min_length > 0: + yield MinLen(self.min_length) + if self.max_length is not None: + yield MaxLen(self.max_length) + + +@dataclass(frozen=True, **SLOTS) +class Timezone(BaseMetadata): + """Timezone(tz=...) requires a datetime to be aware (or ``tz=None``, naive). + + ``Annotated[datetime, Timezone(None)]`` must be a naive datetime. + ``Timezone[...]`` (the ellipsis literal) expresses that the datetime must be + tz-aware but any timezone is allowed. + + You may also pass a specific timezone string or tzinfo object such as + ``Timezone(timezone.utc)`` or ``Timezone("Africa/Abidjan")`` to express that + you only allow a specific timezone, though we note that this is often + a symptom of poor design. + """ + + tz: Union[str, tzinfo, EllipsisType, None] + + +@dataclass(frozen=True, **SLOTS) +class Unit(BaseMetadata): + """Indicates that the value is a physical quantity with the specified unit. + + It is intended for usage with numeric types, where the value represents the + magnitude of the quantity. For example, ``distance: Annotated[float, Unit('m')]`` + or ``speed: Annotated[float, Unit('m/s')]``. + + Interpretation of the unit string is left to the discretion of the consumer. + It is suggested to follow conventions established by python libraries that work + with physical quantities, such as + + - ``pint`` : + - ``astropy.units``: + + For indicating a quantity with a certain dimensionality but without a specific unit + it is recommended to use square brackets, e.g. `Annotated[float, Unit('[time]')]`. + Note, however, ``annotated_types`` itself makes no use of the unit string. + """ + + unit: str + + +@dataclass(frozen=True, **SLOTS) +class Predicate(BaseMetadata): + """``Predicate(func: Callable)`` implies `func(value)` is truthy for valid values. + + Users should prefer statically inspectable metadata, but if you need the full + power and flexibility of arbitrary runtime predicates... here it is. + + We provide a few predefined predicates for common string constraints: + ``IsLower = Predicate(str.islower)``, ``IsUpper = Predicate(str.isupper)``, and + ``IsDigits = Predicate(str.isdigit)``. Users are encouraged to use methods which + can be given special handling, and avoid indirection like ``lambda s: s.lower()``. + + Some libraries might have special logic to handle certain predicates, e.g. by + checking for `str.isdigit` and using its presence to both call custom logic to + enforce digit-only strings, and customise some generated external schema. + + We do not specify what behaviour should be expected for predicates that raise + an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently + skip invalid constraints, or statically raise an error; or it might try calling it + and then propagate or discard the resulting exception. + """ + + func: Callable[[Any], bool] + + def __repr__(self) -> str: + if getattr(self.func, "__name__", "") == "": + return f"{self.__class__.__name__}({self.func!r})" + if isinstance(self.func, (types.MethodType, types.BuiltinMethodType)) and ( + namespace := getattr(self.func.__self__, "__name__", None) + ): + return f"{self.__class__.__name__}({namespace}.{self.func.__name__})" + if isinstance(self.func, type(str.isascii)): # method descriptor + return f"{self.__class__.__name__}({self.func.__qualname__})" + return f"{self.__class__.__name__}({self.func.__name__})" + + +@dataclass +class Not: + func: Callable[[Any], bool] + + def __call__(self, __v: Any) -> bool: + return not self.func(__v) + + +_StrType = TypeVar("_StrType", bound=str) + +LowerCase = Annotated[_StrType, Predicate(str.islower)] +""" +Return True if the string is a lowercase string, False otherwise. + +A string is lowercase if all cased characters in the string are lowercase and there is at least one cased character in the string. +""" # noqa: E501 +UpperCase = Annotated[_StrType, Predicate(str.isupper)] +""" +Return True if the string is an uppercase string, False otherwise. + +A string is uppercase if all cased characters in the string are uppercase and there is at least one cased character in the string. +""" # noqa: E501 +IsDigit = Annotated[_StrType, Predicate(str.isdigit)] +IsDigits = IsDigit # type: ignore # plural for backwards compatibility, see #63 +""" +Return True if the string is a digit string, False otherwise. + +A string is a digit string if all characters in the string are digits and there is at least one character in the string. +""" # noqa: E501 +IsAscii = Annotated[_StrType, Predicate(str.isascii)] +""" +Return True if all characters in the string are ASCII, False otherwise. + +ASCII characters have code points in the range U+0000-U+007F. Empty string is ASCII too. +""" + +_NumericType = TypeVar('_NumericType', bound=Union[SupportsFloat, SupportsIndex]) +IsFinite = Annotated[_NumericType, Predicate(math.isfinite)] +"""Return True if x is neither an infinity nor a NaN, and False otherwise.""" +IsNotFinite = Annotated[_NumericType, Predicate(Not(math.isfinite))] +"""Return True if x is one of infinity or NaN, and False otherwise""" +IsNan = Annotated[_NumericType, Predicate(math.isnan)] +"""Return True if x is a NaN (not a number), and False otherwise.""" +IsNotNan = Annotated[_NumericType, Predicate(Not(math.isnan))] +"""Return True if x is anything but NaN (not a number), and False otherwise.""" +IsInfinite = Annotated[_NumericType, Predicate(math.isinf)] +"""Return True if x is a positive or negative infinity, and False otherwise.""" +IsNotInfinite = Annotated[_NumericType, Predicate(Not(math.isinf))] +"""Return True if x is neither a positive or negative infinity, and False otherwise.""" + +try: + from typing_extensions import DocInfo, doc # type: ignore [attr-defined] +except ImportError: + + @dataclass(frozen=True, **SLOTS) + class DocInfo: # type: ignore [no-redef] + """ " + The return value of doc(), mainly to be used by tools that want to extract the + Annotated documentation at runtime. + """ + + documentation: str + """The documentation string passed to doc().""" + + def doc( + documentation: str, + ) -> DocInfo: + """ + Add documentation to a type annotation inside of Annotated. + + For example: + + >>> def hi(name: Annotated[int, doc("The name of the user")]) -> None: ... + """ + return DocInfo(documentation) diff --git a/ocr/.venv/Lib/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab3b0dee4f4fc4dda8b9187c930225afd2827cb0 GIT binary patch literal 14603 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 J|6~8h{{j_amtX(@ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc b/ocr/.venv/Lib/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45d3ccf1ce59bccd68dbfffa6ddfb07180f2b6ff GIT binary patch literal 5643 zcmb7IU2Gf25x%`Ul1GaAu`J87qbQ86IAZL`mj9ACiheA|sv1d7Vk>D60+-P6&6qM92hMj!}6y;N@#EXu~0v_*U5Uy}mRm||sOoqBzRco55 z)l^fh>84&wmau=~~9j)cVZ6TGq_g`py2@fH_bbGzV)#<`7eC zR@uW7*A#IM+R5s0ZLhhPDfOhR8DR}PtB#oamKC1j#w~>#_CQNBM|s-rvqujoC6#A* z-!0wT&)H=qpWOjwWj(J4I=6f~Fo^n2%?{E;xn1?Gz#z8i*6lnCQWxx^Q?sghBhVJ> zHv|2GQ}hF4#kYmERfPe``K}1`Rmby#%(?|LR~p-pX_sw3NJu`f?r0czCk+Ct>BV~8 z^)WOr5}tUWZVPz4lOVQ29yQes%+l0s-A-_IR! zawv;A-}d}m5iPlrD{^mH?STva&28IzYg%>-GEuwZ*3G`_R@LDJ((%lGryi@W=Tm`E zDAX~>LLtZ$3N@EEs>Ejth3_@2Y9vV&3fwIg3L=F`1cQY_*Sv>T^1@w3Ah|;F-@?+l z%?-~M-e#p@yY=$s1>3vkyW5+Ww(a_xR<&yTg~gRkw$r3ynlO;*!Cn-s}(bB>`Q9a$#A}-U? z%4)Y4xIUic{nUD&tyGV#uuir@F0|F@h1Q4LGWb9%nv-wv!4?A@YB6Au63{(Vi(w!? zq&t2X=6ho@@A!#bo4%ba#f|;D^!BTMzLAVaRka?B&C;aR@`EgJB;ZiOC2< z<^dQY|HMa&di6voW{WWNbuef=?jyp`*TInFiI^T?=z9Q$C_f$*LnX@@-+%i-SqX$v zI>ry&R%O;6IgnPeU8E6*?BY*^{iBv1AKjp=2=^lSTBJXHp0a!avR&Fp zcY49Q{LFi5nK|$_Hyr72jKTQSdwMzU^^quQL(piC0qv{mRfV7Z2s!WXYr)1V+3!QG=XYy$d$x7S zPOldA`ewbh1%J#x$Y=RWw^@rx6!F-GDCT;tLE|WT&++-&YKXjTt@CeVe63wtfsgS8 zz8I~~^L(i@3#~Fv`N%Kumt_WCywjbbR(V{?mif1&Y-N{hLdu59wC29OOY%f0;jc)o z)tD^&*Uj-YzJ4o;5wtJKb^B_ppH_L&PXN_xh})scVLX%c^eM4y(kf3;pSHZLQt#Nj zj|al-JRRB(+sVc*-Kj`-G8`Y4yK&Mg`L<=wv)hXCrRWV_$JM3VjR4n@1mWrQ0{?2`P+P6zjsQOPv`HI zWch6V-miZ}WoQ20AAV2epYzav65S&$Fkz41{Lc9^z7cn%Srr`weWf{nqBi>c+Ia$` znV6ZLIeDs?l&_gULnUA*@`(`AVxeJ)*k%?>B)g<4&jI@lx-;3(X8cQVoDk- zZ~pj`e@|`xwe6#S%|`=>QzU0N3^l60gY!edEkR#eC8vlXl55h8$WsFaB(H}(

Ry zdw5X(LuRMJh|?fYJBC-F!*i#D%#BXTYk?B5nLwR6c{gsF2E41s#*zr+fU0<&%$_B) zYLFm{XT)>VL{I}}nTf3;w+Z{4Y}g7|G4$KK)R9ocOT;HaTQ7hY=RnM)G5EIx>cDtbCkP1ZPHECu(C+97eRoGjvla24imGI50ZY_+#5CJsUn7_(KYw#BWv7HVIRwXD+IFAs{-vsJffRlPYd zVIRPk*1D-0C74VlT1VxNm;c@z`S^?ZhXcjIO9H*71EjhhT9oI;S0L%ZC)Ut*8;?iO z45eu-=IV{wmMw~??<$l#3wXR7Nc)t{nT<1c1%D5?HNephw+2a011FkCdM3GcbE)C^ zZf#k(jcuE+*}jFF1WP;ybN9`LBIMCC3PR_|4;a33RQfNYZwa~YYU}r@?TVHUH?-IX z>_gh5**dMfQq{F^;ox`$r|#QjTZo7G$5h8!ZISu9kX&LH7iqji1rf$p`AYBdmG+5fR|ZL5vXoeMHEEf_7!`8j;tDTp`lA zO9(lcuKOPnrJq7U0y2~_CN@wjZ)xTD~O4})rpx|i}v$Nr9kt1VJ6p{`l?+wH4xE9ipe$W z2308A1ubKAw0$u^GUG~g86{}R2U^1~3Ua2YZ(#Q^)2r^=wphYljhWuq-j3MRig&>& zLkwooD>{z!6hL_w9cbBsUbFnGfmXNbG_R7`x8kk4eke2(s91ICjW*&kE8a@IBsI-` z+1joK8t!?_!JcJ+ot3;A3yO?KLWZ6q<^2{!eRo_PXDST%hQL!AkM)@=&G+{$OryJN2@> z6AMF4_h4Z*QyK``m1X#4>Ivar)E#4r8(Gh@f9u%y6=)0 lV=<6RB-+Qrd%HQ>pyjS)C Iterable[Case]: + # Gt, Ge, Lt, Le + yield Case(Annotated[int, at.Gt(4)], (5, 6, 1000), (4, 0, -1)) + yield Case(Annotated[float, at.Gt(0.5)], (0.6, 0.7, 0.8, 0.9), (0.5, 0.0, -0.1)) + yield Case( + Annotated[datetime, at.Gt(datetime(2000, 1, 1))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(2000, 1, 1), datetime(1999, 12, 31)], + ) + yield Case( + Annotated[datetime, at.Gt(date(2000, 1, 1))], + [date(2000, 1, 2), date(2000, 1, 3)], + [date(2000, 1, 1), date(1999, 12, 31)], + ) + yield Case( + Annotated[datetime, at.Gt(Decimal('1.123'))], + [Decimal('1.1231'), Decimal('123')], + [Decimal('1.123'), Decimal('0')], + ) + + yield Case(Annotated[int, at.Ge(4)], (4, 5, 6, 1000, 4), (0, -1)) + yield Case(Annotated[float, at.Ge(0.5)], (0.5, 0.6, 0.7, 0.8, 0.9), (0.4, 0.0, -0.1)) + yield Case( + Annotated[datetime, at.Ge(datetime(2000, 1, 1))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(1998, 1, 1), datetime(1999, 12, 31)], + ) + + yield Case(Annotated[int, at.Lt(4)], (0, -1), (4, 5, 6, 1000, 4)) + yield Case(Annotated[float, at.Lt(0.5)], (0.4, 0.0, -0.1), (0.5, 0.6, 0.7, 0.8, 0.9)) + yield Case( + Annotated[datetime, at.Lt(datetime(2000, 1, 1))], + [datetime(1999, 12, 31), datetime(1999, 12, 31)], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + ) + + yield Case(Annotated[int, at.Le(4)], (4, 0, -1), (5, 6, 1000)) + yield Case(Annotated[float, at.Le(0.5)], (0.5, 0.0, -0.1), (0.6, 0.7, 0.8, 0.9)) + yield Case( + Annotated[datetime, at.Le(datetime(2000, 1, 1))], + [datetime(2000, 1, 1), datetime(1999, 12, 31)], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + ) + + # Interval + yield Case(Annotated[int, at.Interval(gt=4)], (5, 6, 1000), (4, 0, -1)) + yield Case(Annotated[int, at.Interval(gt=4, lt=10)], (5, 6), (4, 10, 1000, 0, -1)) + yield Case(Annotated[float, at.Interval(ge=0.5, le=1)], (0.5, 0.9, 1), (0.49, 1.1)) + yield Case( + Annotated[datetime, at.Interval(gt=datetime(2000, 1, 1), le=datetime(2000, 1, 3))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(2000, 1, 1), datetime(2000, 1, 4)], + ) + + yield Case(Annotated[int, at.MultipleOf(multiple_of=3)], (0, 3, 9), (1, 2, 4)) + yield Case(Annotated[float, at.MultipleOf(multiple_of=0.5)], (0, 0.5, 1, 1.5), (0.4, 1.1)) + + # lengths + + yield Case(Annotated[str, at.MinLen(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) + yield Case(Annotated[str, at.Len(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) + yield Case(Annotated[List[int], at.MinLen(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) + yield Case(Annotated[List[int], at.Len(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) + + yield Case(Annotated[str, at.MaxLen(4)], ('', '1234'), ('12345', 'x' * 10)) + yield Case(Annotated[str, at.Len(0, 4)], ('', '1234'), ('12345', 'x' * 10)) + yield Case(Annotated[List[str], at.MaxLen(4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) + yield Case(Annotated[List[str], at.Len(0, 4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) + + yield Case(Annotated[str, at.Len(3, 5)], ('123', '12345'), ('', '1', '12', '123456', 'x' * 10)) + yield Case(Annotated[str, at.Len(3, 3)], ('123',), ('12', '1234')) + + yield Case(Annotated[Dict[int, int], at.Len(2, 3)], [{1: 1, 2: 2}], [{}, {1: 1}, {1: 1, 2: 2, 3: 3, 4: 4}]) + yield Case(Annotated[Set[int], at.Len(2, 3)], ({1, 2}, {1, 2, 3}), (set(), {1}, {1, 2, 3, 4})) + yield Case(Annotated[Tuple[int, ...], at.Len(2, 3)], ((1, 2), (1, 2, 3)), ((), (1,), (1, 2, 3, 4))) + + # Timezone + + yield Case( + Annotated[datetime, at.Timezone(None)], [datetime(2000, 1, 1)], [datetime(2000, 1, 1, tzinfo=timezone.utc)] + ) + yield Case( + Annotated[datetime, at.Timezone(...)], [datetime(2000, 1, 1, tzinfo=timezone.utc)], [datetime(2000, 1, 1)] + ) + yield Case( + Annotated[datetime, at.Timezone(timezone.utc)], + [datetime(2000, 1, 1, tzinfo=timezone.utc)], + [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], + ) + yield Case( + Annotated[datetime, at.Timezone('Europe/London')], + [datetime(2000, 1, 1, tzinfo=timezone(timedelta(0), name='Europe/London'))], + [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], + ) + + # Quantity + + yield Case(Annotated[float, at.Unit(unit='m')], (5, 4.2), ('5m', '4.2m')) + + # predicate types + + yield Case(at.LowerCase[str], ['abc', 'foobar'], ['', 'A', 'Boom']) + yield Case(at.UpperCase[str], ['ABC', 'DEFO'], ['', 'a', 'abc', 'AbC']) + yield Case(at.IsDigit[str], ['123'], ['', 'ab', 'a1b2']) + yield Case(at.IsAscii[str], ['123', 'foo bar'], ['£100', '😊', 'whatever 👀']) + + yield Case(Annotated[int, at.Predicate(lambda x: x % 2 == 0)], [0, 2, 4], [1, 3, 5]) + + yield Case(at.IsFinite[float], [1.23], [math.nan, math.inf, -math.inf]) + yield Case(at.IsNotFinite[float], [math.nan, math.inf], [1.23]) + yield Case(at.IsNan[float], [math.nan], [1.23, math.inf]) + yield Case(at.IsNotNan[float], [1.23, math.inf], [math.nan]) + yield Case(at.IsInfinite[float], [math.inf], [math.nan, 1.23]) + yield Case(at.IsNotInfinite[float], [math.nan, 1.23], [math.inf]) + + # check stacked predicates + yield Case(at.IsInfinite[Annotated[float, at.Predicate(lambda x: x > 0)]], [math.inf], [-math.inf, 1.23, math.nan]) + + # doc + yield Case(Annotated[int, at.doc("A number")], [1, 2], []) + + # custom GroupedMetadata + class MyCustomGroupedMetadata(at.GroupedMetadata): + def __iter__(self) -> Iterator[at.Predicate]: + yield at.Predicate(lambda x: float(x).is_integer()) + + yield Case(Annotated[float, MyCustomGroupedMetadata()], [0, 2.0], [0.01, 1.5]) diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/METADATA b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/METADATA new file mode 100644 index 00000000..8dde437f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/METADATA @@ -0,0 +1,94 @@ +Metadata-Version: 2.4 +Name: anyio +Version: 4.11.0 +Summary: High-level concurrency and networking framework on top of asyncio or Trio +Author-email: Alex Grönholm +License-Expression: MIT +Project-URL: Documentation, https://anyio.readthedocs.io/en/latest/ +Project-URL: Changelog, https://anyio.readthedocs.io/en/stable/versionhistory.html +Project-URL: Source code, https://github.com/agronholm/anyio +Project-URL: Issue tracker, https://github.com/agronholm/anyio/issues +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Framework :: AnyIO +Classifier: Typing :: Typed +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Requires-Python: >=3.9 +Description-Content-Type: text/x-rst +License-File: LICENSE +Requires-Dist: exceptiongroup>=1.0.2; python_version < "3.11" +Requires-Dist: idna>=2.8 +Requires-Dist: sniffio>=1.1 +Requires-Dist: typing_extensions>=4.5; python_version < "3.13" +Provides-Extra: trio +Requires-Dist: trio>=0.31.0; extra == "trio" +Dynamic: license-file + +.. image:: https://github.com/agronholm/anyio/actions/workflows/test.yml/badge.svg + :target: https://github.com/agronholm/anyio/actions/workflows/test.yml + :alt: Build Status +.. image:: https://coveralls.io/repos/github/agronholm/anyio/badge.svg?branch=master + :target: https://coveralls.io/github/agronholm/anyio?branch=master + :alt: Code Coverage +.. image:: https://readthedocs.org/projects/anyio/badge/?version=latest + :target: https://anyio.readthedocs.io/en/latest/?badge=latest + :alt: Documentation +.. image:: https://badges.gitter.im/gitterHQ/gitter.svg + :target: https://gitter.im/python-trio/AnyIO + :alt: Gitter chat + +AnyIO is an asynchronous networking and concurrency library that works on top of either asyncio_ or +Trio_. It implements Trio-like `structured concurrency`_ (SC) on top of asyncio and works in harmony +with the native SC of Trio itself. + +Applications and libraries written against AnyIO's API will run unmodified on either asyncio_ or +Trio_. AnyIO can also be adopted into a library or application incrementally – bit by bit, no full +refactoring necessary. It will blend in with the native libraries of your chosen backend. + +To find out why you might want to use AnyIO's APIs instead of asyncio's, you can read about it +`here `_. + +Documentation +------------- + +View full documentation at: https://anyio.readthedocs.io/ + +Features +-------- + +AnyIO offers the following functionality: + +* Task groups (nurseries_ in trio terminology) +* High-level networking (TCP, UDP and UNIX sockets) + + * `Happy eyeballs`_ algorithm for TCP connections (more robust than that of asyncio on Python + 3.8) + * async/await style UDP sockets (unlike asyncio where you still have to use Transports and + Protocols) + +* A versatile API for byte streams and object streams +* Inter-task synchronization and communication (locks, conditions, events, semaphores, object + streams) +* Worker threads +* Subprocesses +* Subinterpreter support for code parallelization (on Python 3.13 and later) +* Asynchronous file I/O (using worker threads) +* Signal handling + +AnyIO also comes with its own pytest_ plugin which also supports asynchronous fixtures. +It even works with the popular Hypothesis_ library. + +.. _asyncio: https://docs.python.org/3/library/asyncio.html +.. _Trio: https://github.com/python-trio/trio +.. _structured concurrency: https://en.wikipedia.org/wiki/Structured_concurrency +.. _nurseries: https://trio.readthedocs.io/en/stable/reference-core.html#nurseries-and-spawning +.. _Happy eyeballs: https://en.wikipedia.org/wiki/Happy_Eyeballs +.. _pytest: https://docs.pytest.org/en/latest/ +.. _Hypothesis: https://hypothesis.works/ diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/RECORD b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/RECORD new file mode 100644 index 00000000..1a518bb1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/RECORD @@ -0,0 +1,90 @@ +anyio-4.11.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +anyio-4.11.0.dist-info/METADATA,sha256=yrQcStE3zgP4G-Zz-7qVaw99qb-DTM2gHgwP_1pABu4,4091 +anyio-4.11.0.dist-info/RECORD,, +anyio-4.11.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 +anyio-4.11.0.dist-info/entry_points.txt,sha256=_d6Yu6uiaZmNe0CydowirE9Cmg7zUL2g08tQpoS3Qvc,39 +anyio-4.11.0.dist-info/licenses/LICENSE,sha256=U2GsncWPLvX9LpsJxoKXwX8ElQkJu8gCO9uC6s8iwrA,1081 +anyio-4.11.0.dist-info/top_level.txt,sha256=QglSMiWX8_5dpoVAEIHdEYzvqFMdSYWmCj6tYw2ITkQ,6 +anyio/__init__.py,sha256=M21FJC_0BhRH7AdXvs4z3uayj4ytNAxuJ7UnshLD5RM,6091 +anyio/__pycache__/__init__.cpython-310.pyc,, +anyio/__pycache__/from_thread.cpython-310.pyc,, +anyio/__pycache__/lowlevel.cpython-310.pyc,, +anyio/__pycache__/pytest_plugin.cpython-310.pyc,, +anyio/__pycache__/to_interpreter.cpython-310.pyc,, +anyio/__pycache__/to_process.cpython-310.pyc,, +anyio/__pycache__/to_thread.cpython-310.pyc,, +anyio/_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +anyio/_backends/__pycache__/__init__.cpython-310.pyc,, +anyio/_backends/__pycache__/_asyncio.cpython-310.pyc,, +anyio/_backends/__pycache__/_trio.cpython-310.pyc,, +anyio/_backends/_asyncio.py,sha256=jTPlTu4WO9bTXUJkxFQ0P1GbG4I14nOWpD1FMzKmkvA,98052 +anyio/_backends/_trio.py,sha256=ScNVMQB0iiuJMAon1epQCVOVbIbf-Lxnfb5OxujzMok,42398 +anyio/_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +anyio/_core/__pycache__/__init__.cpython-310.pyc,, +anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc,, +anyio/_core/__pycache__/_contextmanagers.cpython-310.pyc,, +anyio/_core/__pycache__/_eventloop.cpython-310.pyc,, +anyio/_core/__pycache__/_exceptions.cpython-310.pyc,, +anyio/_core/__pycache__/_fileio.cpython-310.pyc,, +anyio/_core/__pycache__/_resources.cpython-310.pyc,, +anyio/_core/__pycache__/_signals.cpython-310.pyc,, +anyio/_core/__pycache__/_sockets.cpython-310.pyc,, +anyio/_core/__pycache__/_streams.cpython-310.pyc,, +anyio/_core/__pycache__/_subprocesses.cpython-310.pyc,, +anyio/_core/__pycache__/_synchronization.cpython-310.pyc,, +anyio/_core/__pycache__/_tasks.cpython-310.pyc,, +anyio/_core/__pycache__/_tempfile.cpython-310.pyc,, +anyio/_core/__pycache__/_testing.cpython-310.pyc,, +anyio/_core/__pycache__/_typedattr.cpython-310.pyc,, +anyio/_core/_asyncio_selector_thread.py,sha256=2PdxFM3cs02Kp6BSppbvmRT7q7asreTW5FgBxEsflBo,5626 +anyio/_core/_contextmanagers.py,sha256=YInBCabiEeS-UaP_Jdxa1CaFC71ETPW8HZTHIM8Rsc8,7215 +anyio/_core/_eventloop.py,sha256=mg_TuXTbfUiuWz2Evb19dxVSC2TVTOtypKpzHV7-tlI,4667 +anyio/_core/_exceptions.py,sha256=fR2SvRUBYVHvolNKbzWSLt8FC_5NFB2OAzGD738fD8Q,4257 +anyio/_core/_fileio.py,sha256=KATysDZP7bvwwjpUwEaGAc0xGouJgAPqNVpnBMTsToY,23332 +anyio/_core/_resources.py,sha256=NbmU5O5UX3xEyACnkmYX28Fmwdl-f-ny0tHym26e0w0,435 +anyio/_core/_signals.py,sha256=vulT1M1xdLYtAR-eY5TamIgaf1WTlOwOrMGwswlTTr8,905 +anyio/_core/_sockets.py,sha256=aTbgMr0qPmBPfrapxLykyajsmS7IAerhW9_Qk5r5E18,34311 +anyio/_core/_streams.py,sha256=OnaKgoDD-FcMSwLvkoAUGP51sG2ZdRvMpxt9q2w1gYA,1804 +anyio/_core/_subprocesses.py,sha256=EXm5igL7dj55iYkPlbYVAqtbqxJxjU-6OndSTIx9SRg,8047 +anyio/_core/_synchronization.py,sha256=pZ_9gl9g0bsb92-wnJ5HX-q9TgWf-SjK1Xo-DGZj2Ok,20858 +anyio/_core/_tasks.py,sha256=km6hVE1fsuIenya3MDud8KP6-J_bNzlgYC10wUxI7iA,4880 +anyio/_core/_tempfile.py,sha256=lHb7CW4FyIlpkf5ADAf4VmLHCKwEHF9nxqNyBCFFUiA,19697 +anyio/_core/_testing.py,sha256=YUGwA5cgFFbUTv4WFd7cv_BSVr4ryTtPp8owQA3JdWE,2118 +anyio/_core/_typedattr.py,sha256=P4ozZikn3-DbpoYcvyghS_FOYAgbmUxeoU8-L_07pZM,2508 +anyio/abc/__init__.py,sha256=6mWhcl_pGXhrgZVHP_TCfMvIXIOp9mroEFM90fYCU_U,2869 +anyio/abc/__pycache__/__init__.cpython-310.pyc,, +anyio/abc/__pycache__/_eventloop.cpython-310.pyc,, +anyio/abc/__pycache__/_resources.cpython-310.pyc,, +anyio/abc/__pycache__/_sockets.cpython-310.pyc,, +anyio/abc/__pycache__/_streams.cpython-310.pyc,, +anyio/abc/__pycache__/_subprocesses.cpython-310.pyc,, +anyio/abc/__pycache__/_tasks.cpython-310.pyc,, +anyio/abc/__pycache__/_testing.cpython-310.pyc,, +anyio/abc/_eventloop.py,sha256=GTZbdItBHcj_b-8K2XylET2-bBYLZ3XjW4snY7vK7LE,10900 +anyio/abc/_resources.py,sha256=DrYvkNN1hH6Uvv5_5uKySvDsnknGVDe8FCKfko0VtN8,783 +anyio/abc/_sockets.py,sha256=ECTY0jLEF18gryANHR3vFzXzGdZ-xPwELq1QdgOb0Jo,13258 +anyio/abc/_streams.py,sha256=005GKSCXGprxnhucILboSqc2JFovECZk9m3p-qqxXVc,7640 +anyio/abc/_subprocesses.py,sha256=cumAPJTktOQtw63IqG0lDpyZqu_l1EElvQHMiwJgL08,2067 +anyio/abc/_tasks.py,sha256=KC7wrciE48AINOI-AhPutnFhe1ewfP7QnamFlDzqesQ,3721 +anyio/abc/_testing.py,sha256=tBJUzkSfOXJw23fe8qSJ03kJlShOYjjaEyFB6k6MYT8,1821 +anyio/from_thread.py,sha256=MmzkWz7yq-d0G3aOoEyyG2nh_Dm7h8ggRWFsYteNVJs,18927 +anyio/lowlevel.py,sha256=2a3elbKSw59boeyHBzC9VT7vark3o-kBypXWKGQ3jqU,4405 +anyio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +anyio/pytest_plugin.py,sha256=cTvttH7R4e8Jh4C3mTOV8QVhOYEJtN1dCZFnRoH9lX4,10204 +anyio/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +anyio/streams/__pycache__/__init__.cpython-310.pyc,, +anyio/streams/__pycache__/buffered.cpython-310.pyc,, +anyio/streams/__pycache__/file.cpython-310.pyc,, +anyio/streams/__pycache__/memory.cpython-310.pyc,, +anyio/streams/__pycache__/stapled.cpython-310.pyc,, +anyio/streams/__pycache__/text.cpython-310.pyc,, +anyio/streams/__pycache__/tls.cpython-310.pyc,, +anyio/streams/buffered.py,sha256=joUPdz0OoRfKgGmMpHI9vZyMNm6ly9iFlofrZUPs9cQ,6162 +anyio/streams/file.py,sha256=6uoTNb5KbMoj-6gS3_xrrL8uZN8Q4iIvOS1WtGyFfKw,4383 +anyio/streams/memory.py,sha256=GcbF3cahdsdFZtcTZaIKpZXPDZKogj18wWPPmE0OmGU,10620 +anyio/streams/stapled.py,sha256=U09pCrmOw9kkNhe6tKopsm1QIMT1lFTFvtb-A7SIe4k,4302 +anyio/streams/text.py,sha256=tCJ8ljavGM-HY0aL-5Twxv-Kyw1BfR0B4OtVIB6kZ9w,5662 +anyio/streams/tls.py,sha256=siSaaRyX-XnfC7Jbn9VjtIdVzJkDsvIW_2pSEVheDFQ,15275 +anyio/to_interpreter.py,sha256=Z0-kLCxlITjFG_RM_TNdUlEnog94l48GXVDZ80w0URc,6986 +anyio/to_process.py,sha256=ZvruelRM-HNmqDaql4sdNODg2QD_uSlwSCxnV4OhsfQ,9595 +anyio/to_thread.py,sha256=WM2JQ2MbVsd5D5CM08bQiTwzZIvpsGjfH1Fy247KoDQ,2396 diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/WHEEL new file mode 100644 index 00000000..e7fa31b6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (80.9.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/entry_points.txt b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/entry_points.txt new file mode 100644 index 00000000..44dd9bdc --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[pytest11] +anyio = anyio.pytest_plugin diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/licenses/LICENSE new file mode 100644 index 00000000..104eebf5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/licenses/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2018 Alex Grönholm + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/top_level.txt b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/top_level.txt new file mode 100644 index 00000000..c77c069e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio-4.11.0.dist-info/top_level.txt @@ -0,0 +1 @@ +anyio diff --git a/ocr/.venv/Lib/site-packages/anyio/__init__.py b/ocr/.venv/Lib/site-packages/anyio/__init__.py new file mode 100644 index 00000000..8fe84428 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/__init__.py @@ -0,0 +1,110 @@ +from __future__ import annotations + +from ._core._contextmanagers import AsyncContextManagerMixin as AsyncContextManagerMixin +from ._core._contextmanagers import ContextManagerMixin as ContextManagerMixin +from ._core._eventloop import current_time as current_time +from ._core._eventloop import get_all_backends as get_all_backends +from ._core._eventloop import get_cancelled_exc_class as get_cancelled_exc_class +from ._core._eventloop import run as run +from ._core._eventloop import sleep as sleep +from ._core._eventloop import sleep_forever as sleep_forever +from ._core._eventloop import sleep_until as sleep_until +from ._core._exceptions import BrokenResourceError as BrokenResourceError +from ._core._exceptions import BrokenWorkerInterpreter as BrokenWorkerInterpreter +from ._core._exceptions import BrokenWorkerProcess as BrokenWorkerProcess +from ._core._exceptions import BusyResourceError as BusyResourceError +from ._core._exceptions import ClosedResourceError as ClosedResourceError +from ._core._exceptions import ConnectionFailed as ConnectionFailed +from ._core._exceptions import DelimiterNotFound as DelimiterNotFound +from ._core._exceptions import EndOfStream as EndOfStream +from ._core._exceptions import IncompleteRead as IncompleteRead +from ._core._exceptions import NoEventLoopError as NoEventLoopError +from ._core._exceptions import RunFinishedError as RunFinishedError +from ._core._exceptions import TypedAttributeLookupError as TypedAttributeLookupError +from ._core._exceptions import WouldBlock as WouldBlock +from ._core._fileio import AsyncFile as AsyncFile +from ._core._fileio import Path as Path +from ._core._fileio import open_file as open_file +from ._core._fileio import wrap_file as wrap_file +from ._core._resources import aclose_forcefully as aclose_forcefully +from ._core._signals import open_signal_receiver as open_signal_receiver +from ._core._sockets import TCPConnectable as TCPConnectable +from ._core._sockets import UNIXConnectable as UNIXConnectable +from ._core._sockets import as_connectable as as_connectable +from ._core._sockets import connect_tcp as connect_tcp +from ._core._sockets import connect_unix as connect_unix +from ._core._sockets import create_connected_udp_socket as create_connected_udp_socket +from ._core._sockets import ( + create_connected_unix_datagram_socket as create_connected_unix_datagram_socket, +) +from ._core._sockets import create_tcp_listener as create_tcp_listener +from ._core._sockets import create_udp_socket as create_udp_socket +from ._core._sockets import create_unix_datagram_socket as create_unix_datagram_socket +from ._core._sockets import create_unix_listener as create_unix_listener +from ._core._sockets import getaddrinfo as getaddrinfo +from ._core._sockets import getnameinfo as getnameinfo +from ._core._sockets import notify_closing as notify_closing +from ._core._sockets import wait_readable as wait_readable +from ._core._sockets import wait_socket_readable as wait_socket_readable +from ._core._sockets import wait_socket_writable as wait_socket_writable +from ._core._sockets import wait_writable as wait_writable +from ._core._streams import create_memory_object_stream as create_memory_object_stream +from ._core._subprocesses import open_process as open_process +from ._core._subprocesses import run_process as run_process +from ._core._synchronization import CapacityLimiter as CapacityLimiter +from ._core._synchronization import ( + CapacityLimiterStatistics as CapacityLimiterStatistics, +) +from ._core._synchronization import Condition as Condition +from ._core._synchronization import ConditionStatistics as ConditionStatistics +from ._core._synchronization import Event as Event +from ._core._synchronization import EventStatistics as EventStatistics +from ._core._synchronization import Lock as Lock +from ._core._synchronization import LockStatistics as LockStatistics +from ._core._synchronization import ResourceGuard as ResourceGuard +from ._core._synchronization import Semaphore as Semaphore +from ._core._synchronization import SemaphoreStatistics as SemaphoreStatistics +from ._core._tasks import TASK_STATUS_IGNORED as TASK_STATUS_IGNORED +from ._core._tasks import CancelScope as CancelScope +from ._core._tasks import create_task_group as create_task_group +from ._core._tasks import current_effective_deadline as current_effective_deadline +from ._core._tasks import fail_after as fail_after +from ._core._tasks import move_on_after as move_on_after +from ._core._tempfile import NamedTemporaryFile as NamedTemporaryFile +from ._core._tempfile import SpooledTemporaryFile as SpooledTemporaryFile +from ._core._tempfile import TemporaryDirectory as TemporaryDirectory +from ._core._tempfile import TemporaryFile as TemporaryFile +from ._core._tempfile import gettempdir as gettempdir +from ._core._tempfile import gettempdirb as gettempdirb +from ._core._tempfile import mkdtemp as mkdtemp +from ._core._tempfile import mkstemp as mkstemp +from ._core._testing import TaskInfo as TaskInfo +from ._core._testing import get_current_task as get_current_task +from ._core._testing import get_running_tasks as get_running_tasks +from ._core._testing import wait_all_tasks_blocked as wait_all_tasks_blocked +from ._core._typedattr import TypedAttributeProvider as TypedAttributeProvider +from ._core._typedattr import TypedAttributeSet as TypedAttributeSet +from ._core._typedattr import typed_attribute as typed_attribute + +# Re-export imports so they look like they live directly in this package +for __value in list(locals().values()): + if getattr(__value, "__module__", "").startswith("anyio."): + __value.__module__ = __name__ + + +del __value + + +def __getattr__(attr: str) -> type[BrokenWorkerInterpreter]: + """Support deprecated aliases.""" + if attr == "BrokenWorkerIntepreter": + import warnings + + warnings.warn( + "The 'BrokenWorkerIntepreter' alias is deprecated, use 'BrokenWorkerInterpreter' instead.", + DeprecationWarning, + stacklevel=2, + ) + return BrokenWorkerInterpreter + + raise AttributeError(f"module {__name__!r} has no attribute {attr!r}") diff --git a/ocr/.venv/Lib/site-packages/anyio/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..abcf84b96af2e7adf335457f62484d28164e5fad GIT binary patch literal 4246 zcmb`KNpBm;6~~(tMJ<%5)mpsLt1K__zOULXTbo77vY%=9w7QE@TfH#VP1zDAKoI8| zU{1LV0?Zt9%lF7P;58?oa~mK){_l~LEyt6&L<0W$)vH(4wY+*&3OhU74g9qKrPuw( zpke%z3t#>;qwv@;646k~FdV~4c!r;#M8a^APLr4Po2W@R1x`^)xY=v=)07rYgIlOY zxCPuwt-`I~Hfj@Y1GiJVa633d8Q~1LgF1veyiPw$S>aA_7j+3|!QIp?+y(BT9^r0q zFZBxdfcvOVxEI_{{lb0V19U*RA3Q(EG$=d(9-<-PLGUmQ3lD)0(m~;2?~s3( z4htUyAE6_{hrmbasPJL%F*+uE#LM}|>A3Jw?}UGnP6{9MPWh+lv~Ui5hRz5d2anK* z@Coo)IxBnCm+7+b zdGHmwB76aSm97e31Ye_T!eij;bY1uo_y*k&z6`!eH-)cwxBT05TllJX$G=N=g|C6{ z(LLeo-hKZ8JrKSDen=06Z-O7uBjH=%$MjhEHh7%Ih3|kTXhQfdc#7Ey!O!TK@C10C=7lH03$!3S1zw~@;c0Kl zU#4Z@8Sry@E<6ifp%vjL;5_Ap=fDLj2tNg{(yH(?@C$k&JP%%@HQ@#CrT>av2`_?) zNO%eSnqCVpgNsxYe(t^T-_l#*6|hOBa31^}eU~tlrPegUb zx?NFGSkbnc);eUb!J2t3)LTl=VfebN74&n9TGg@+Z6zP>nW#iNUw6|t>4lMUzBYGb z>VdL(sb(w}Q$V*pQ_6FF7vES6YmI#z6LXv_cX*jIPNS4_{1Vim}S_tee%I&FNDhwzQA`WtPy`is6Yh+NBY zv>TK{42_F{<*Rxziv#4Ab`Z>AuW>PyithT7bI)&5?)aoxYx!54fh=YS}7Z9a}| z*jmTsKu3X3e66t0r&%Hx^<4t{>QeKypv>~$eKnnpLp58mG#`bwyz;H`CJs7(YOk=b zQD0#^|IEx6#tW-?b8dEVX=Qo}-kC|sC3zc@N3pTtu@!BZ8#=6T&>d{#B~>c%(cM<2 zgKhELfSa_JaE?u@R7(+^eu(NY*faDlVw0VM^2?#N^iKV7_2K(f z*e86VbI)3D-j3jj(WT=`Ui(~Hhj)v=<#1&U5zB(D1x#tK7JHId8^W@I79xTS?t3 zuU6ytiSHBd5>6^kI?Yb{&v?PcO?e|uIW2MXk4dNXd*jFCUsE3we@u+F?Hk@G^(bUs=ZV7 z>EKwd)v9zBy;ie(7lhm!)mGEw>|~mwNxcRK{RZ+kL$Bk{FZs#4#nnjZsQB)k3WJT} zl!~_Euv}ciRk4O}K`4#S6+>GW$8be$7w6seVuTCsA~MJpUII~3HvE!l;{-5|EB+)YVJ>J2j<1mRBco*QP8hg2r~MP#{Mt(-()h>5&>St)UH8Cx2C;|RRHwPFg{76HjfMYV(ixTx2=z1? zeXvzo9zMF0D|s<>7fUxw4+~F3_p$V|9AFt>!M|RH9%31WP-neQzH8l3ALNQdEQeW+ zuuEgCy8dX1^ieiv>n&^7ZlsUxGs-9@SMfw`Ixz5#%ec@N)rVaylSKg2M27BCO zxy8cASl?l}%W{w9KFb4^hb)gE)KUMMHH}Pa zc~LdJZFvA2pm28n4(TvD fk{yZv!*A1X^zmEu|6>fjP5p^1(ld7hb_J-J#^6h+ClY>#YN*4olKlFu-XBU!c_CpPU`wB4+vE|)t)X{9}w zZ-%0|B^_CGYq_YC-dCDd>a89?FZ2Kkv_O9p{n-NjGk<%aK@0Rp3bbV$tIzX(GkbAG zr$vFbXqVX8Z@&4?_j~X69kzGu$Qk(Ler&S-PcItAU-PE_lfun$!!Z57F%82tT(e;` z&9Z5-Y&ER1h2KOY(X`8UGg(eHQ{|LAvm5DVrks&-vXO1(%DLuPd90Z)=cO*y*wHMM z3(fKJxZI~36V09Fol?#;CY!s;yP8wwspjtT?&frPTI#cnJ5#NqM4CY(7+esQGaDVY%PgINUr^J|gAGMydHo`4Q9btc#y;cU?-VAHdG1u!^JQ zqs?RGW2Vu{NX?_Y8gHMwd&4Y0hTmy-kGuB+tNgfk)V%|BPq@e3d)#~9waZVsmh1eq z>7H;Oa1XwlD&HU7KkFWHi@1O41;c&FefV9&eb~Fpd;AW=8{4qUpG56p_Xui_ct_E^?(Ph#{(G23(Qr`)ICP27;JpZB@j#XQ&c2EuK?Up}VOoZ7JE7f{XU1)e==47?ekW%&qujQ#~ z&{pV?I<*`uD-Uh&IwyNhn6;8(whw2M8-L9$I6|FGq zR)cD-QT6>WxmfoaE|*pJtMNjLc4)uUu3ZXKa~G6Xb;Ck!St+j-R04gUJ?{mTx{Dh0 z+%bn0c?;FrrMcB5ub2!ICt9mvT6R#cg=yBlQB|Q`tNKBhXOr=1+D z%KcP0hSze#J*=u#TQ#rI@Z5^`R;{8}o7eL<+O=xK$J7b6+``YqZ2S4kSjw41r*B^+4l_0|&B9A@S!uX(}cY9qAgDz)|;hRN32m#eB?ZDGr=w*3?8 zygwHv0}i>ldvFS8&6#btFq-mk&MmbcQ`HEa_``Ar-;?ARB^1`cCzef>S~E@?9Xl{C zns1_H8-cY7n&w}SaLo%3EM`8YhM+H!DGFTUcewACd~ zIU2Z!QSUmfw&M|`P6IG?WZBM2)pwRu`!f2vMO)p8g@il0n8BTeg%d%b>I=((C+DE{ zq0LQGJ;WbFeF8t5Z=9St`?~Kb|Lnz!Ub}Vv>~o%fDQGX9ePzjOy$J%q*`IjvY`dn; zmau}$XJ4u>ob~I0cZ8q@ru%2Bt<`$_kww*RMhID2S`Ei5vdT(ZRXpOr5lrS!H3ZWc=2Md=2>8-E3wGk9IFx_j*tyA?@-M`?u zz1fDLRmTJX;{3dLWB3spRJXJ(woN=J{DKG9o} z3xXC<^ad21@d8gpNHi;?0;(t3ggYWmt=V#UH)f1jcpp)Q`4*(yWiVTU?xw9CMOR@3 z>T#6H1@En;M!i;tRAB?*4*GJG4e!Eb2H$TKaLMe>m?=XwDCJlj0DEx~rl^tRNf zp2WbQuFep3by2L|5}<5B)Bgyuji8nPizGGx2KE1hbsNG`PXQ&%QzR!*i2A5WeG-op z31Wy)!c5%!4LAj&9sMj6^c*?Jvv#)HIp8ukW$ZTu$jo5F9p zY`YnhvnV@m!5xP#n{@ZPlkP5*Qto~3Zg(1`w0pmMw|fst8TVdjx(C92m1m)%T>{q} zp{I88TAhU;t+mgEJ1P(^o~kU0j@#K4JzQwF8~&Ky|lvKz;4bS%@Zp?pbdww!@58QESc3 z{jr`sVsp`^QcGJ>D5+Dp)iiR_UPLrwWovw4mb@gfw|&l>AcOIy33mfEW@7uPM* z=%mpic|Eme-7rn#Dq5{uZ(A$o3VNeHy=Jn$vm1Bj^-MgDX}rnj*2OHYxi80~C)S`Q zjjCTU6x1!FI3~EFPN1wli%XcRRH_=?D&dX+Y*3%!^Bq2vPna7Tal#yLmFF)vg3zXM zgwwzP#KnqwmNVGubL^KCg(6I#E46rb7(SAGPe#_7SJ2772N&y#WoFDNvmn}O=8E-E z-nOjC_}_5!HhjZQz`!d=kfiB&L5K3WH|^xY;*|aY>ZS>!};SI1RP5 zqIW_7qTstQ!f`*SDoAPCOn$rFQo?ACv(f9gK))vthBpjQMWFr(JoPzd#+)#Lh6lIZ zRkvHXZ96mrX_DGE@4P+DhYxNymmWjTZgXk?9U?aHaouT)i{-mHHHwSWNO|#xNub9AR=s3 zR^Fg7_-lA5$C6LUv3wkN(7k3c3sA~X&+#J6=M+jsOW1~bsjp0wEN1j_&akzt=^RV4 zunJ3LHo8}qY^zmmdX)+Zwb^!;8!YE5l`k$=8_|<-P+-r2649ahJVz0<`~pi0y!7@h zB~dD$;RAgADO_?uNd8%g+($V(m&)xeBo$lK@E!Q@?2gBD6pKzb??PZg>?PbC5RW-` z?A;_pW)dQBJiMcecbfJ0Tnu3^@YT2u1C|)u zTcxGyc&1*(C0-^+A6jOZ7OvvCzm8`ukHXMru+K=m=@^kK^?qlz!&~_Ycb=~LP$K$%F z<|X$D)|AJi`gu5%U;|e`!k)H}a(^!4=;quZA)V*vy*5{K{cd%w^lnYdSCms!LQ*itD zQ154O(L610cJ^%9s@4fdZu3ux)6?kw4s|$zyw>3;i(>v`De_MBGB2an!3TeYuTYV7 zWde@3&K+A;(bd2*u>@C?4q=+N5XOoUB23A{1w|nd+EhljNK?|HtotAeT=#XOr!k6F zV`&+CBcb;a?}Pd?z^`}n8al_4GeB7_^KzM&9;Xn-%9ekEZ?wHaYTE4V9kD&p4@W}z zB%%Beh9HdL!ZlPjfID!*yed#9YF)C_F4Q5oa8;}T7&o0e=ji&<%D;B?bbYyxXLIRodxZri@i|8-Xrm~6%%R+3kmbDEw_StGxFCGaYr3(Sg6!4c(qFv5I9}P ze@-yaF_VM*)Q(mAmVK*p_b@mHdX0q1Xv{M|3n#W~g8x{Z`%gDKZ^_|08_o>3Iy2An z6StRkx0PTjsV{Qz-*LMg?D9EEMMkNx`;zDW1-C)rZe5wOI`<7Nenf{;;e?J$z$|E1 zK~JsoBSoZaiqhyE9B)s-yMaxuneg(8qIW&%iW$Uh%2pHA614WNU+#4MyymT5eD?79 z`4^T0$8E2)BFCJAk4Ay2y5x()Dnb-^>w7-IYE6t9xKY9H#HH$sw~|U7ysGdXcc+aZ zycJyYeRD=$#!YT28gr-M>Ib)c`x!n!bXXiNBq(e@MqIcVISoZCT1NEh~i z*IIm`z-V}%Jx9B50d(!#WaHV+0pj;UBoAUpfnEqHILXfow2CP~ca0-e;s{w;IUlXx zm*`MR-^E(X8k-IAfVWWhSNQsQT&ydpu^gD(qzTmDHH%fSrgR6Zk!8l8EDF>zH^`I_ zswJ*w-ZS1a7cDpGrryo3Cp+(To+Jyc8*7PQFu!cBrx3M(VxgW1%njo!``$O!?CaJI zLmjwgTu-=ZDuS&f>g=_om@%oy5s-cp?9RsDMuHLDqlW*~3fl7T3;4FIwbVM=w2s-v zHS=O}^|XG5k>E@K&Dbn8D!ToL2kqH>sR46 z_yXo#&%B*!-K~Gc)u8)aMW3-XSunP2Oer2gz03J*nQsUt#k?Y!sC#(%9$vV%aA(zZD=w@H8J4S1KI`|1 zyG08ahVdZE>Wiz97Nlm`{}r~&)e(?^J%IRdn0-F>)@Xwxt9MGe6UtFnSQ3-r8cO9| zU?I>kID9wUErC}m9&>Cf1pmD(38Zqpz5gvL{pWCjYLm9p1u-5e{&H5{+P7(4u`~7+ z*5={Q$-vW*OIT+97Q8y&%w+Or#Fn7zT!YedQdRT(h?CM6#CHZnRHf$ea2!yGya z#X?8cu1ZH@Dsa;;>m`Y8=G71+Znt`}5@`v$kO$B^ZXIHTY!qk05Yc=E7^W#_PzHv3 zDn5}+8!UYx3ZxuqOWxkyIXKKgMt4zS;8(?X2pD@Kn4Enk)P;Z%536T&8H2#Fnurak&G39}0mH zP|=53avoCk=gilPFGFtLFgBPWWL6)=INf7DiRB4aXtMp-sAM1Iy%+_yBh-oT3JPCe z=76^44?FdM7KQLa;B~uSt?c4&tH#j&>ImA4LV5i*goMY5%_HpELg6Vk_ zp4;6zF`Rhitklu)Hc{9Sl9my8@c$_m0p#+z35+jHM&Q5ji8KQ+Dclx(Gx%$!D%=LN9rG5+#2Sy^| zrSTQyJAi`LL7*T(bz8S_N9#BN)y`V8ZzQQ?2@?LpfHa}!A9y2NFggi+t`EZ2pm>oa zsy^JCizPzLGU*bE6OM4uOzLt(CxHa1*DkP18>~^fm$N`blN&1f#07qO{1IrX8EN0F z1E|WTSU1y6Vyfv5^YKEbCvN8F*}cy=i8}w+3JJ~hhs8rA8GIpuzReG%uEZ2BB;|E? zDFEZ?)Y=s70n%9fWmtf|zqs6JtR5y6lD1^vEkYzZXC7~N#F_t2N*4scWkxa5GlN~V zqO`M;#st4~O2WszO_oSPcfnNq1VI&*AupSI_QSFMe=0Wu~DM_~EHsia zoL-u!--lsw%|K3BQb;_tmb#t*X`6K6!6E~(yXm!Lonfbx5PS+&Tk-}>5fFZ^`rdzn z@WqF~$Y|u9LBSWVg-#b^@+i{O{C>5t-(SUaHSM$TsdBAUSK%^_T|A}gLaj6hBz%E+ znkC_yBRmkKQJviNzmetz52$M%(wKZ$xGMZp%toa*blEFX)fQ#kgOW+A9C+NvpGYT= zrsRLpvrly%=%``oxrd7L^IHV1hGLgKIObL^8WEz#;%|c-HDdRu?qi5jtDV~z*g#d0 z)4Qlyy^0%PGU&iR2uw%NKoxKgzl1iaQ3oAM-Gw^R3(BMkYLh{d&ewHQo|thhpD<_k zD3K2_4&$Yp$E=lDzs_X_8Gg`E_)T@Rjp#NaS)64=1sFa*?*=Q z4K$|_12ij7IqG|4HB;zA7eDMtup7&Q)qbmxu>YlV__kU`&t~rq6^`}I$&jvC$b$ff zSf4=4otf zi)q~J6I!*VM4mVI#aTFm+3q?4r^`Vxx`b2{_&rHnp~H)rw`;M^{SH>qMfNvUbqOp@ z$E_%4m|yQiiSuMlRfl<5aYSpl!R0zMrJk$4Pd^c>oZSg_w1HVI`VkdhXQ2&AJU`#d zO%b|e7PhXGcmnGV!{mhDx?e4dWOcLdx(zR4!leK0mMK2pzQsjqO|3~Se=ue@w8Ji- zW_nu7HZyHU@5f3O9@RUgdy6?OGm1@pn3K^g0xgSmPjgqVX!P^miie(OMvmWG zlgvc^0q~8QX`7Zqb8ge}$GfW+I1IJ?3C?aSK^}VP^m$xo?c`8400YBryN2wMHXBNA zfJ8MJ;?rF3yIG>QUwxSu;d;|7&GSMNPyGxpH+bpkg;FA?lc@P`qTmyf8N-H`Fqc4* ziJi;lGI={Uk$cG61Fvfe{zKc^X(cBdSjMQK`@n~;kmKZK-;Y9^ zg1|gZBq3NxKuLH>oyUo^gA~f?rwuQSOirXC;7zHln?v20u0smT4%Fq`0_w)2x`_`= zBp>WV&16)Qlva6n7wV>v4Z5H2T_NRQ2Xa8~bsZ)jNZQN&;ZS(}RsFVzs(u>eDa_+U zmz(l+g6eSGrsUw&5IFC&uVR4xmJsHGH@vRkp490EaGS}P;<(g|cZgp>TI1aV4z@59 zAJR@i5iF5##{giPOJ1$MSg*;r-5hvCs>qGm0547TO)ttpJP991K96YhZm14RU-q>J z53Qif#m2Gs7GCCRtitcIHG~y~TA4~ALM7fCfWt(80a73fZFpQ2$A|!P0c`{-*xNwg zh+{^~e~v5W%OOnk2b3ZuQ*?2Rz!RDg^?LqodF7^rCB+(eBs8KI0S0}hQKhVHuwA7s zDYVC6s9~6><0Y z&XL<_B7>4B&O%0Nn?{lfG#PTuErFv9Do>KWT@;uo@RbK>!7*@zgn>PQqzU5Q-jGyb zKDiDn4pC;j4`v$|)2{g>l%5JxZBuWe)Qh~GHV}DxxIgk1>AGqU<^t>f4g9Fz!X@0T zm9Cg>qD8A;VS``gMH1~^WQkmERMLPn`7;XVNwi=VoeIZV>c?$`2625lle&W1mCJ1SQKgFWLU2z5~!K*LsRT zBXBMM0NbwHE`f^H^NB6t%ThlO*KG9+f{AF)zZ;2OBoEmef>Rp4$sT+)&;)!7SZC~X z5Y0oBj?1VmXM3p96EPxP*y%3`TDq0(6oFg7UrPS)zT1_3|7K?;E`9Iqfh>xp`Z>=3 zZ7Ds3cX513ma1Pst;UN*mIOJ*SR!HR9SerYW{F!Gb-06(g7X*g;5WFny(r`i+scpU zks>`sa|iyF!mXTL7*lMeeu#5FxPI4{v25eQtzjHQ|2f~KD11)zN}j!E`Ha_h*m4$2WT}Pw_1_W7%RWQ@pFuK_us{3 z#JKa->i~f8-qVp2n3*HJBtA*;(_uzQC=wA#XYW>F3kk+76DG`v0rWpm{LsyDd-rbd z?ZiIACzi*tc_>!hDqp7_p>Pb#x8BQm^hR=aeqQ(Se(Ol>N2h(QAe5tDjEq3ovpH%& z&hCe(o5dF)5Ywj-|Bgw7d@Oo%;-?O+8`tnJ1|UxExMqA6sw2ZvcwN}~s{OSDvlA)_ zWF~-fM$W@zFR!l03FG`gijbqx$o>=kd{Kl8^4Bs)G#@(>ns31pp~V$iNQE3nL8w$> z_lhca(JZGUrU%cgQ1yjwE8&4;e_;-Y7Kx+}$tp;rOgPM#d!c7fn5A!aiX#PB&ll1g zVGHPT7)?A&oEmfr&yqUU$pz*$Bx_tlM%M>m@dQNl&h=4bqkx_|do)e^2k{#LFUmkM z-j>#bcMwjfXGTgSg`s)Kj>*Cx5xx&U;SR1-sE&E0It$__@j$#uP)6q1*6#Jww&m}$ zMGsuNILMGFx2=f9A^{$Mc)JpQB*L%2jD=hFH#^6^4G0bmI)`_YQrd$UrrfI6#M>fd z!>4A|&vT(!?Puq4Av1-1MO;aGTl1*ZCKsJ#p?$GkZxz#hTjNOT5BV&m6){t@F*24<$UQE#~(jE%u@;LN_DgHn+;ek8W9qNO+F z-(bLsiqjZkyGW-qMC;f#_7txuvV8bI3YY>b=>}ZTYL~f2rc5bl$Nx2eR6+OEyyniG zXCyWed%L+t7*(*&dik_*Aamq@PM8I6yAvlY|9U``SfX|&FLj3FIulj{4#94DpSn-~ z5oG*hG{28@Ifa6iC+bE2v%n(y;q?@@0J%TJaUbS|CWPA0+R-kWp_bwd8ttMP)zT6b zYZhY*6^&4^)bDgx@w+SunSX{a@Mupqd@R_I0kdt@2N2o_^vi!N@EP7w33j0duc*3* zlaQ%Hkv(A;VJ;H3jrxM3PNqmwiXtu?>;5wn&sRBCQ~3oNBF< z3`mQg2{ukLuIQ_sET>RrJK8J?Qov9=44q*>2T*we@2x7Y)W?*ms7lVhKK{FS`v+{g zGj19qxGxw{o{s8c-)X%ggdpz*l=IO;60xsy=kDcTImW{x{^qbE(`c_WAQ~ES{$W0P z&tKkGRR_>QJ-}u=^@i}iT!6GLBn0_7Q{q9kDDpzKB<~E17gk<;(e|w<*}~U|cYWB} z6D^si^^021kkR?C;gUBp))X*z%A82%Ay4w=K65IQM>&u8|9H(=ljek#u^7WZj@(4y iTh_gWZ%yx;c%qOozGS^UVOmcyvH_g8Cq68E>fZsja$aEo literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7575213294174abd2eb096cee052988dcd8d732b GIT binary patch literal 5342 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..776ca83a4d383b7b7885a80a831cd1c25741f1ab GIT binary patch literal 9466 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82fa708f804c282b602dc4d64edfff472fe957bf GIT binary patch literal 7010 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 P1|Az2jJ<*Xvbp~UM10{F literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_backends/_asyncio.py b/ocr/.venv/Lib/site-packages/anyio/_backends/_asyncio.py new file mode 100644 index 00000000..cfebad5c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_backends/_asyncio.py @@ -0,0 +1,2967 @@ +from __future__ import annotations + +import array +import asyncio +import concurrent.futures +import contextvars +import math +import os +import socket +import sys +import threading +import weakref +from asyncio import ( + AbstractEventLoop, + CancelledError, + all_tasks, + create_task, + current_task, + get_running_loop, + sleep, +) +from asyncio.base_events import _run_until_complete_cb # type: ignore[attr-defined] +from collections import OrderedDict, deque +from collections.abc import ( + AsyncGenerator, + AsyncIterator, + Awaitable, + Callable, + Collection, + Coroutine, + Iterable, + Sequence, +) +from concurrent.futures import Future +from contextlib import AbstractContextManager, suppress +from contextvars import Context, copy_context +from dataclasses import dataclass +from functools import partial, wraps +from inspect import ( + CORO_RUNNING, + CORO_SUSPENDED, + getcoroutinestate, + iscoroutine, +) +from io import IOBase +from os import PathLike +from queue import Queue +from signal import Signals +from socket import AddressFamily, SocketKind +from threading import Thread +from types import CodeType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Optional, + TypeVar, + cast, +) +from weakref import WeakKeyDictionary + +import sniffio + +from .. import ( + CapacityLimiterStatistics, + EventStatistics, + LockStatistics, + TaskInfo, + abc, +) +from .._core._eventloop import claim_worker_thread, threadlocals +from .._core._exceptions import ( + BrokenResourceError, + BusyResourceError, + ClosedResourceError, + EndOfStream, + RunFinishedError, + WouldBlock, + iterate_exceptions, +) +from .._core._sockets import convert_ipv6_sockaddr +from .._core._streams import create_memory_object_stream +from .._core._synchronization import ( + CapacityLimiter as BaseCapacityLimiter, +) +from .._core._synchronization import Event as BaseEvent +from .._core._synchronization import Lock as BaseLock +from .._core._synchronization import ( + ResourceGuard, + SemaphoreStatistics, +) +from .._core._synchronization import Semaphore as BaseSemaphore +from .._core._tasks import CancelScope as BaseCancelScope +from ..abc import ( + AsyncBackend, + IPSockAddrType, + SocketListener, + UDPPacketType, + UNIXDatagramPacketType, +) +from ..abc._eventloop import StrOrBytesPath +from ..lowlevel import RunVar +from ..streams.memory import MemoryObjectReceiveStream, MemoryObjectSendStream + +if TYPE_CHECKING: + from _typeshed import FileDescriptorLike +else: + FileDescriptorLike = object + +if sys.version_info >= (3, 10): + from typing import ParamSpec +else: + from typing_extensions import ParamSpec + +if sys.version_info >= (3, 11): + from asyncio import Runner + from typing import TypeVarTuple, Unpack +else: + import contextvars + import enum + import signal + from asyncio import coroutines, events, exceptions, tasks + + from exceptiongroup import BaseExceptionGroup + from typing_extensions import TypeVarTuple, Unpack + + class _State(enum.Enum): + CREATED = "created" + INITIALIZED = "initialized" + CLOSED = "closed" + + class Runner: + # Copied from CPython 3.11 + def __init__( + self, + *, + debug: bool | None = None, + loop_factory: Callable[[], AbstractEventLoop] | None = None, + ): + self._state = _State.CREATED + self._debug = debug + self._loop_factory = loop_factory + self._loop: AbstractEventLoop | None = None + self._context = None + self._interrupt_count = 0 + self._set_event_loop = False + + def __enter__(self) -> Runner: + self._lazy_init() + return self + + def __exit__( + self, + exc_type: type[BaseException], + exc_val: BaseException, + exc_tb: TracebackType, + ) -> None: + self.close() + + def close(self) -> None: + """Shutdown and close event loop.""" + if self._state is not _State.INITIALIZED: + return + try: + loop = self._loop + _cancel_all_tasks(loop) + loop.run_until_complete(loop.shutdown_asyncgens()) + if hasattr(loop, "shutdown_default_executor"): + loop.run_until_complete(loop.shutdown_default_executor()) + else: + loop.run_until_complete(_shutdown_default_executor(loop)) + finally: + if self._set_event_loop: + events.set_event_loop(None) + loop.close() + self._loop = None + self._state = _State.CLOSED + + def get_loop(self) -> AbstractEventLoop: + """Return embedded event loop.""" + self._lazy_init() + return self._loop + + def run(self, coro: Coroutine[T_Retval], *, context=None) -> T_Retval: + """Run a coroutine inside the embedded event loop.""" + if not coroutines.iscoroutine(coro): + raise ValueError(f"a coroutine was expected, got {coro!r}") + + if events._get_running_loop() is not None: + # fail fast with short traceback + raise RuntimeError( + "Runner.run() cannot be called from a running event loop" + ) + + self._lazy_init() + + if context is None: + context = self._context + task = context.run(self._loop.create_task, coro) + + if ( + threading.current_thread() is threading.main_thread() + and signal.getsignal(signal.SIGINT) is signal.default_int_handler + ): + sigint_handler = partial(self._on_sigint, main_task=task) + try: + signal.signal(signal.SIGINT, sigint_handler) + except ValueError: + # `signal.signal` may throw if `threading.main_thread` does + # not support signals (e.g. embedded interpreter with signals + # not registered - see gh-91880) + sigint_handler = None + else: + sigint_handler = None + + self._interrupt_count = 0 + try: + return self._loop.run_until_complete(task) + except exceptions.CancelledError: + if self._interrupt_count > 0: + uncancel = getattr(task, "uncancel", None) + if uncancel is not None and uncancel() == 0: + raise KeyboardInterrupt # noqa: B904 + raise # CancelledError + finally: + if ( + sigint_handler is not None + and signal.getsignal(signal.SIGINT) is sigint_handler + ): + signal.signal(signal.SIGINT, signal.default_int_handler) + + def _lazy_init(self) -> None: + if self._state is _State.CLOSED: + raise RuntimeError("Runner is closed") + if self._state is _State.INITIALIZED: + return + if self._loop_factory is None: + self._loop = events.new_event_loop() + if not self._set_event_loop: + # Call set_event_loop only once to avoid calling + # attach_loop multiple times on child watchers + events.set_event_loop(self._loop) + self._set_event_loop = True + else: + self._loop = self._loop_factory() + if self._debug is not None: + self._loop.set_debug(self._debug) + self._context = contextvars.copy_context() + self._state = _State.INITIALIZED + + def _on_sigint(self, signum, frame, main_task: asyncio.Task) -> None: + self._interrupt_count += 1 + if self._interrupt_count == 1 and not main_task.done(): + main_task.cancel() + # wakeup loop if it is blocked by select() with long timeout + self._loop.call_soon_threadsafe(lambda: None) + return + raise KeyboardInterrupt() + + def _cancel_all_tasks(loop: AbstractEventLoop) -> None: + to_cancel = tasks.all_tasks(loop) + if not to_cancel: + return + + for task in to_cancel: + task.cancel() + + loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True)) + + for task in to_cancel: + if task.cancelled(): + continue + if task.exception() is not None: + loop.call_exception_handler( + { + "message": "unhandled exception during asyncio.run() shutdown", + "exception": task.exception(), + "task": task, + } + ) + + async def _shutdown_default_executor(loop: AbstractEventLoop) -> None: + """Schedule the shutdown of the default executor.""" + + def _do_shutdown(future: asyncio.futures.Future) -> None: + try: + loop._default_executor.shutdown(wait=True) # type: ignore[attr-defined] + loop.call_soon_threadsafe(future.set_result, None) + except Exception as ex: + loop.call_soon_threadsafe(future.set_exception, ex) + + loop._executor_shutdown_called = True + if loop._default_executor is None: + return + future = loop.create_future() + thread = threading.Thread(target=_do_shutdown, args=(future,)) + thread.start() + try: + await future + finally: + thread.join() + + +T_Retval = TypeVar("T_Retval") +T_contra = TypeVar("T_contra", contravariant=True) +PosArgsT = TypeVarTuple("PosArgsT") +P = ParamSpec("P") + +_root_task: RunVar[asyncio.Task | None] = RunVar("_root_task") + + +def find_root_task() -> asyncio.Task: + root_task = _root_task.get(None) + if root_task is not None and not root_task.done(): + return root_task + + # Look for a task that has been started via run_until_complete() + for task in all_tasks(): + if task._callbacks and not task.done(): + callbacks = [cb for cb, context in task._callbacks] + for cb in callbacks: + if ( + cb is _run_until_complete_cb + or getattr(cb, "__module__", None) == "uvloop.loop" + ): + _root_task.set(task) + return task + + # Look up the topmost task in the AnyIO task tree, if possible + task = cast(asyncio.Task, current_task()) + state = _task_states.get(task) + if state: + cancel_scope = state.cancel_scope + while cancel_scope and cancel_scope._parent_scope is not None: + cancel_scope = cancel_scope._parent_scope + + if cancel_scope is not None: + return cast(asyncio.Task, cancel_scope._host_task) + + return task + + +def get_callable_name(func: Callable) -> str: + module = getattr(func, "__module__", None) + qualname = getattr(func, "__qualname__", None) + return ".".join([x for x in (module, qualname) if x]) + + +# +# Event loop +# + +_run_vars: WeakKeyDictionary[asyncio.AbstractEventLoop, Any] = WeakKeyDictionary() + + +def _task_started(task: asyncio.Task) -> bool: + """Return ``True`` if the task has been started and has not finished.""" + # The task coro should never be None here, as we never add finished tasks to the + # task list + coro = task.get_coro() + assert coro is not None + try: + return getcoroutinestate(coro) in (CORO_RUNNING, CORO_SUSPENDED) + except AttributeError: + # task coro is async_genenerator_asend https://bugs.python.org/issue37771 + raise Exception(f"Cannot determine if task {task} has started or not") from None + + +# +# Timeouts and cancellation +# + + +def is_anyio_cancellation(exc: CancelledError) -> bool: + # Sometimes third party frameworks catch a CancelledError and raise a new one, so as + # a workaround we have to look at the previous ones in __context__ too for a + # matching cancel message + while True: + if ( + exc.args + and isinstance(exc.args[0], str) + and exc.args[0].startswith("Cancelled via cancel scope ") + ): + return True + + if isinstance(exc.__context__, CancelledError): + exc = exc.__context__ + continue + + return False + + +class CancelScope(BaseCancelScope): + def __new__( + cls, *, deadline: float = math.inf, shield: bool = False + ) -> CancelScope: + return object.__new__(cls) + + def __init__(self, deadline: float = math.inf, shield: bool = False): + self._deadline = deadline + self._shield = shield + self._parent_scope: CancelScope | None = None + self._child_scopes: set[CancelScope] = set() + self._cancel_called = False + self._cancel_reason: str | None = None + self._cancelled_caught = False + self._active = False + self._timeout_handle: asyncio.TimerHandle | None = None + self._cancel_handle: asyncio.Handle | None = None + self._tasks: set[asyncio.Task] = set() + self._host_task: asyncio.Task | None = None + if sys.version_info >= (3, 11): + self._pending_uncancellations: int | None = 0 + else: + self._pending_uncancellations = None + + def __enter__(self) -> CancelScope: + if self._active: + raise RuntimeError( + "Each CancelScope may only be used for a single 'with' block" + ) + + self._host_task = host_task = cast(asyncio.Task, current_task()) + self._tasks.add(host_task) + try: + task_state = _task_states[host_task] + except KeyError: + task_state = TaskState(None, self) + _task_states[host_task] = task_state + else: + self._parent_scope = task_state.cancel_scope + task_state.cancel_scope = self + if self._parent_scope is not None: + # If using an eager task factory, the parent scope may not even contain + # the host task + self._parent_scope._child_scopes.add(self) + self._parent_scope._tasks.discard(host_task) + + self._timeout() + self._active = True + + # Start cancelling the host task if the scope was cancelled before entering + if self._cancel_called: + self._deliver_cancellation(self) + + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + del exc_tb + + if not self._active: + raise RuntimeError("This cancel scope is not active") + if current_task() is not self._host_task: + raise RuntimeError( + "Attempted to exit cancel scope in a different task than it was " + "entered in" + ) + + assert self._host_task is not None + host_task_state = _task_states.get(self._host_task) + if host_task_state is None or host_task_state.cancel_scope is not self: + raise RuntimeError( + "Attempted to exit a cancel scope that isn't the current tasks's " + "current cancel scope" + ) + + try: + self._active = False + if self._timeout_handle: + self._timeout_handle.cancel() + self._timeout_handle = None + + self._tasks.remove(self._host_task) + if self._parent_scope is not None: + self._parent_scope._child_scopes.remove(self) + self._parent_scope._tasks.add(self._host_task) + + host_task_state.cancel_scope = self._parent_scope + + # Restart the cancellation effort in the closest visible, cancelled parent + # scope if necessary + self._restart_cancellation_in_parent() + + # We only swallow the exception iff it was an AnyIO CancelledError, either + # directly as exc_val or inside an exception group and there are no cancelled + # parent cancel scopes visible to us here + if self._cancel_called and not self._parent_cancellation_is_visible_to_us: + # For each level-cancel() call made on the host task, call uncancel() + while self._pending_uncancellations: + self._host_task.uncancel() + self._pending_uncancellations -= 1 + + # Update cancelled_caught and check for exceptions we must not swallow + cannot_swallow_exc_val = False + if exc_val is not None: + for exc in iterate_exceptions(exc_val): + if isinstance(exc, CancelledError) and is_anyio_cancellation( + exc + ): + self._cancelled_caught = True + else: + cannot_swallow_exc_val = True + + return self._cancelled_caught and not cannot_swallow_exc_val + else: + if self._pending_uncancellations: + assert self._parent_scope is not None + assert self._parent_scope._pending_uncancellations is not None + self._parent_scope._pending_uncancellations += ( + self._pending_uncancellations + ) + self._pending_uncancellations = 0 + + return False + finally: + self._host_task = None + del exc_val + + @property + def _effectively_cancelled(self) -> bool: + cancel_scope: CancelScope | None = self + while cancel_scope is not None: + if cancel_scope._cancel_called: + return True + + if cancel_scope.shield: + return False + + cancel_scope = cancel_scope._parent_scope + + return False + + @property + def _parent_cancellation_is_visible_to_us(self) -> bool: + return ( + self._parent_scope is not None + and not self.shield + and self._parent_scope._effectively_cancelled + ) + + def _timeout(self) -> None: + if self._deadline != math.inf: + loop = get_running_loop() + if loop.time() >= self._deadline: + self.cancel("deadline exceeded") + else: + self._timeout_handle = loop.call_at(self._deadline, self._timeout) + + def _deliver_cancellation(self, origin: CancelScope) -> bool: + """ + Deliver cancellation to directly contained tasks and nested cancel scopes. + + Schedule another run at the end if we still have tasks eligible for + cancellation. + + :param origin: the cancel scope that originated the cancellation + :return: ``True`` if the delivery needs to be retried on the next cycle + + """ + should_retry = False + current = current_task() + for task in self._tasks: + should_retry = True + if task._must_cancel: # type: ignore[attr-defined] + continue + + # The task is eligible for cancellation if it has started + if task is not current and (task is self._host_task or _task_started(task)): + waiter = task._fut_waiter # type: ignore[attr-defined] + if not isinstance(waiter, asyncio.Future) or not waiter.done(): + task.cancel(origin._cancel_reason) + if ( + task is origin._host_task + and origin._pending_uncancellations is not None + ): + origin._pending_uncancellations += 1 + + # Deliver cancellation to child scopes that aren't shielded or running their own + # cancellation callbacks + for scope in self._child_scopes: + if not scope._shield and not scope.cancel_called: + should_retry = scope._deliver_cancellation(origin) or should_retry + + # Schedule another callback if there are still tasks left + if origin is self: + if should_retry: + self._cancel_handle = get_running_loop().call_soon( + self._deliver_cancellation, origin + ) + else: + self._cancel_handle = None + + return should_retry + + def _restart_cancellation_in_parent(self) -> None: + """ + Restart the cancellation effort in the closest directly cancelled parent scope. + + """ + scope = self._parent_scope + while scope is not None: + if scope._cancel_called: + if scope._cancel_handle is None: + scope._deliver_cancellation(scope) + + break + + # No point in looking beyond any shielded scope + if scope._shield: + break + + scope = scope._parent_scope + + def cancel(self, reason: str | None = None) -> None: + if not self._cancel_called: + if self._timeout_handle: + self._timeout_handle.cancel() + self._timeout_handle = None + + self._cancel_called = True + self._cancel_reason = f"Cancelled via cancel scope {id(self):x}" + if task := current_task(): + self._cancel_reason += f" by {task}" + + if reason: + self._cancel_reason += f"; reason: {reason}" + + if self._host_task is not None: + self._deliver_cancellation(self) + + @property + def deadline(self) -> float: + return self._deadline + + @deadline.setter + def deadline(self, value: float) -> None: + self._deadline = float(value) + if self._timeout_handle is not None: + self._timeout_handle.cancel() + self._timeout_handle = None + + if self._active and not self._cancel_called: + self._timeout() + + @property + def cancel_called(self) -> bool: + return self._cancel_called + + @property + def cancelled_caught(self) -> bool: + return self._cancelled_caught + + @property + def shield(self) -> bool: + return self._shield + + @shield.setter + def shield(self, value: bool) -> None: + if self._shield != value: + self._shield = value + if not value: + self._restart_cancellation_in_parent() + + +# +# Task states +# + + +class TaskState: + """ + Encapsulates auxiliary task information that cannot be added to the Task instance + itself because there are no guarantees about its implementation. + """ + + __slots__ = "parent_id", "cancel_scope", "__weakref__" + + def __init__(self, parent_id: int | None, cancel_scope: CancelScope | None): + self.parent_id = parent_id + self.cancel_scope = cancel_scope + + +_task_states: WeakKeyDictionary[asyncio.Task, TaskState] = WeakKeyDictionary() + + +# +# Task groups +# + + +class _AsyncioTaskStatus(abc.TaskStatus): + def __init__(self, future: asyncio.Future, parent_id: int): + self._future = future + self._parent_id = parent_id + + def started(self, value: T_contra | None = None) -> None: + try: + self._future.set_result(value) + except asyncio.InvalidStateError: + if not self._future.cancelled(): + raise RuntimeError( + "called 'started' twice on the same task status" + ) from None + + task = cast(asyncio.Task, current_task()) + _task_states[task].parent_id = self._parent_id + + +if sys.version_info >= (3, 12): + _eager_task_factory_code: CodeType | None = asyncio.eager_task_factory.__code__ +else: + _eager_task_factory_code = None + + +class TaskGroup(abc.TaskGroup): + def __init__(self) -> None: + self.cancel_scope: CancelScope = CancelScope() + self._active = False + self._exceptions: list[BaseException] = [] + self._tasks: set[asyncio.Task] = set() + self._on_completed_fut: asyncio.Future[None] | None = None + + async def __aenter__(self) -> TaskGroup: + self.cancel_scope.__enter__() + self._active = True + return self + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + try: + if exc_val is not None: + self.cancel_scope.cancel() + if not isinstance(exc_val, CancelledError): + self._exceptions.append(exc_val) + + loop = get_running_loop() + try: + if self._tasks: + with CancelScope() as wait_scope: + while self._tasks: + self._on_completed_fut = loop.create_future() + + try: + await self._on_completed_fut + except CancelledError as exc: + # Shield the scope against further cancellation attempts, + # as they're not productive (#695) + wait_scope.shield = True + self.cancel_scope.cancel() + + # Set exc_val from the cancellation exception if it was + # previously unset. However, we should not replace a native + # cancellation exception with one raise by a cancel scope. + if exc_val is None or ( + isinstance(exc_val, CancelledError) + and not is_anyio_cancellation(exc) + ): + exc_val = exc + + self._on_completed_fut = None + else: + # If there are no child tasks to wait on, run at least one checkpoint + # anyway + await AsyncIOBackend.cancel_shielded_checkpoint() + + self._active = False + if self._exceptions: + # The exception that got us here should already have been + # added to self._exceptions so it's ok to break exception + # chaining and avoid adding a "During handling of above..." + # for each nesting level. + raise BaseExceptionGroup( + "unhandled errors in a TaskGroup", self._exceptions + ) from None + elif exc_val: + raise exc_val + except BaseException as exc: + if self.cancel_scope.__exit__(type(exc), exc, exc.__traceback__): + return True + + raise + + return self.cancel_scope.__exit__(exc_type, exc_val, exc_tb) + finally: + del exc_val, exc_tb, self._exceptions + + def _spawn( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[Any]], + args: tuple[Unpack[PosArgsT]], + name: object, + task_status_future: asyncio.Future | None = None, + ) -> asyncio.Task: + def task_done(_task: asyncio.Task) -> None: + task_state = _task_states[_task] + assert task_state.cancel_scope is not None + assert _task in task_state.cancel_scope._tasks + task_state.cancel_scope._tasks.remove(_task) + self._tasks.remove(task) + del _task_states[_task] + + if self._on_completed_fut is not None and not self._tasks: + try: + self._on_completed_fut.set_result(None) + except asyncio.InvalidStateError: + pass + + try: + exc = _task.exception() + except CancelledError as e: + while isinstance(e.__context__, CancelledError): + e = e.__context__ + + exc = e + + if exc is not None: + # The future can only be in the cancelled state if the host task was + # cancelled, so return immediately instead of adding one more + # CancelledError to the exceptions list + if task_status_future is not None and task_status_future.cancelled(): + return + + if task_status_future is None or task_status_future.done(): + if not isinstance(exc, CancelledError): + self._exceptions.append(exc) + + if not self.cancel_scope._effectively_cancelled: + self.cancel_scope.cancel() + else: + task_status_future.set_exception(exc) + elif task_status_future is not None and not task_status_future.done(): + task_status_future.set_exception( + RuntimeError("Child exited without calling task_status.started()") + ) + + if not self._active: + raise RuntimeError( + "This task group is not active; no new tasks can be started." + ) + + kwargs = {} + if task_status_future: + parent_id = id(current_task()) + kwargs["task_status"] = _AsyncioTaskStatus( + task_status_future, id(self.cancel_scope._host_task) + ) + else: + parent_id = id(self.cancel_scope._host_task) + + coro = func(*args, **kwargs) + if not iscoroutine(coro): + prefix = f"{func.__module__}." if hasattr(func, "__module__") else "" + raise TypeError( + f"Expected {prefix}{func.__qualname__}() to return a coroutine, but " + f"the return value ({coro!r}) is not a coroutine object" + ) + + name = get_callable_name(func) if name is None else str(name) + loop = asyncio.get_running_loop() + if ( + (factory := loop.get_task_factory()) + and getattr(factory, "__code__", None) is _eager_task_factory_code + and (closure := getattr(factory, "__closure__", None)) + ): + custom_task_constructor = closure[0].cell_contents + task = custom_task_constructor(coro, loop=loop, name=name) + else: + task = create_task(coro, name=name) + + # Make the spawned task inherit the task group's cancel scope + _task_states[task] = TaskState( + parent_id=parent_id, cancel_scope=self.cancel_scope + ) + self.cancel_scope._tasks.add(task) + self._tasks.add(task) + task.add_done_callback(task_done) + return task + + def start_soon( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[Any]], + *args: Unpack[PosArgsT], + name: object = None, + ) -> None: + self._spawn(func, args, name) + + async def start( + self, func: Callable[..., Awaitable[Any]], *args: object, name: object = None + ) -> Any: + future: asyncio.Future = asyncio.Future() + task = self._spawn(func, args, name, future) + + # If the task raises an exception after sending a start value without a switch + # point between, the task group is cancelled and this method never proceeds to + # process the completed future. That's why we have to have a shielded cancel + # scope here. + try: + return await future + except CancelledError: + # Cancel the task and wait for it to exit before returning + task.cancel() + with CancelScope(shield=True), suppress(CancelledError): + await task + + raise + + +# +# Threads +# + +_Retval_Queue_Type = tuple[Optional[T_Retval], Optional[BaseException]] + + +class WorkerThread(Thread): + MAX_IDLE_TIME = 10 # seconds + + def __init__( + self, + root_task: asyncio.Task, + workers: set[WorkerThread], + idle_workers: deque[WorkerThread], + ): + super().__init__(name="AnyIO worker thread") + self.root_task = root_task + self.workers = workers + self.idle_workers = idle_workers + self.loop = root_task._loop + self.queue: Queue[ + tuple[Context, Callable, tuple, asyncio.Future, CancelScope] | None + ] = Queue(2) + self.idle_since = AsyncIOBackend.current_time() + self.stopping = False + + def _report_result( + self, future: asyncio.Future, result: Any, exc: BaseException | None + ) -> None: + self.idle_since = AsyncIOBackend.current_time() + if not self.stopping: + self.idle_workers.append(self) + + if not future.cancelled(): + if exc is not None: + if isinstance(exc, StopIteration): + new_exc = RuntimeError("coroutine raised StopIteration") + new_exc.__cause__ = exc + exc = new_exc + + future.set_exception(exc) + else: + future.set_result(result) + + def run(self) -> None: + with claim_worker_thread(AsyncIOBackend, self.loop): + while True: + item = self.queue.get() + if item is None: + # Shutdown command received + return + + context, func, args, future, cancel_scope = item + if not future.cancelled(): + result = None + exception: BaseException | None = None + threadlocals.current_cancel_scope = cancel_scope + try: + result = context.run(func, *args) + except BaseException as exc: + exception = exc + finally: + del threadlocals.current_cancel_scope + + if not self.loop.is_closed(): + self.loop.call_soon_threadsafe( + self._report_result, future, result, exception + ) + + del result, exception + + self.queue.task_done() + del item, context, func, args, future, cancel_scope + + def stop(self, f: asyncio.Task | None = None) -> None: + self.stopping = True + self.queue.put_nowait(None) + self.workers.discard(self) + try: + self.idle_workers.remove(self) + except ValueError: + pass + + +_threadpool_idle_workers: RunVar[deque[WorkerThread]] = RunVar( + "_threadpool_idle_workers" +) +_threadpool_workers: RunVar[set[WorkerThread]] = RunVar("_threadpool_workers") + + +class BlockingPortal(abc.BlockingPortal): + def __new__(cls) -> BlockingPortal: + return object.__new__(cls) + + def __init__(self) -> None: + super().__init__() + self._loop = get_running_loop() + + def _spawn_task_from_thread( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + name: object, + future: Future[T_Retval], + ) -> None: + AsyncIOBackend.run_sync_from_thread( + partial(self._task_group.start_soon, name=name), + (self._call_func, func, args, kwargs, future), + self._loop, + ) + + +# +# Subprocesses +# + + +@dataclass(eq=False) +class StreamReaderWrapper(abc.ByteReceiveStream): + _stream: asyncio.StreamReader + + async def receive(self, max_bytes: int = 65536) -> bytes: + data = await self._stream.read(max_bytes) + if data: + return data + else: + raise EndOfStream + + async def aclose(self) -> None: + self._stream.set_exception(ClosedResourceError()) + await AsyncIOBackend.checkpoint() + + +@dataclass(eq=False) +class StreamWriterWrapper(abc.ByteSendStream): + _stream: asyncio.StreamWriter + + async def send(self, item: bytes) -> None: + self._stream.write(item) + await self._stream.drain() + + async def aclose(self) -> None: + self._stream.close() + await AsyncIOBackend.checkpoint() + + +@dataclass(eq=False) +class Process(abc.Process): + _process: asyncio.subprocess.Process + _stdin: StreamWriterWrapper | None + _stdout: StreamReaderWrapper | None + _stderr: StreamReaderWrapper | None + + async def aclose(self) -> None: + with CancelScope(shield=True) as scope: + if self._stdin: + await self._stdin.aclose() + if self._stdout: + await self._stdout.aclose() + if self._stderr: + await self._stderr.aclose() + + scope.shield = False + try: + await self.wait() + except BaseException: + scope.shield = True + self.kill() + await self.wait() + raise + + async def wait(self) -> int: + return await self._process.wait() + + def terminate(self) -> None: + self._process.terminate() + + def kill(self) -> None: + self._process.kill() + + def send_signal(self, signal: int) -> None: + self._process.send_signal(signal) + + @property + def pid(self) -> int: + return self._process.pid + + @property + def returncode(self) -> int | None: + return self._process.returncode + + @property + def stdin(self) -> abc.ByteSendStream | None: + return self._stdin + + @property + def stdout(self) -> abc.ByteReceiveStream | None: + return self._stdout + + @property + def stderr(self) -> abc.ByteReceiveStream | None: + return self._stderr + + +def _forcibly_shutdown_process_pool_on_exit( + workers: set[Process], _task: object +) -> None: + """ + Forcibly shuts down worker processes belonging to this event loop.""" + child_watcher: asyncio.AbstractChildWatcher | None = None + if sys.version_info < (3, 12): + try: + child_watcher = asyncio.get_event_loop_policy().get_child_watcher() + except NotImplementedError: + pass + + # Close as much as possible (w/o async/await) to avoid warnings + for process in workers: + if process.returncode is None: + continue + + process._stdin._stream._transport.close() # type: ignore[union-attr] + process._stdout._stream._transport.close() # type: ignore[union-attr] + process._stderr._stream._transport.close() # type: ignore[union-attr] + process.kill() + if child_watcher: + child_watcher.remove_child_handler(process.pid) + + +async def _shutdown_process_pool_on_exit(workers: set[abc.Process]) -> None: + """ + Shuts down worker processes belonging to this event loop. + + NOTE: this only works when the event loop was started using asyncio.run() or + anyio.run(). + + """ + process: abc.Process + try: + await sleep(math.inf) + except asyncio.CancelledError: + for process in workers: + if process.returncode is None: + process.kill() + + for process in workers: + await process.aclose() + + +# +# Sockets and networking +# + + +class StreamProtocol(asyncio.Protocol): + read_queue: deque[bytes] + read_event: asyncio.Event + write_event: asyncio.Event + exception: Exception | None = None + is_at_eof: bool = False + + def connection_made(self, transport: asyncio.BaseTransport) -> None: + self.read_queue = deque() + self.read_event = asyncio.Event() + self.write_event = asyncio.Event() + self.write_event.set() + cast(asyncio.Transport, transport).set_write_buffer_limits(0) + + def connection_lost(self, exc: Exception | None) -> None: + if exc: + self.exception = BrokenResourceError() + self.exception.__cause__ = exc + + self.read_event.set() + self.write_event.set() + + def data_received(self, data: bytes) -> None: + # ProactorEventloop sometimes sends bytearray instead of bytes + self.read_queue.append(bytes(data)) + self.read_event.set() + + def eof_received(self) -> bool | None: + self.is_at_eof = True + self.read_event.set() + return True + + def pause_writing(self) -> None: + self.write_event = asyncio.Event() + + def resume_writing(self) -> None: + self.write_event.set() + + +class DatagramProtocol(asyncio.DatagramProtocol): + read_queue: deque[tuple[bytes, IPSockAddrType]] + read_event: asyncio.Event + write_event: asyncio.Event + exception: Exception | None = None + + def connection_made(self, transport: asyncio.BaseTransport) -> None: + self.read_queue = deque(maxlen=100) # arbitrary value + self.read_event = asyncio.Event() + self.write_event = asyncio.Event() + self.write_event.set() + + def connection_lost(self, exc: Exception | None) -> None: + self.read_event.set() + self.write_event.set() + + def datagram_received(self, data: bytes, addr: IPSockAddrType) -> None: + addr = convert_ipv6_sockaddr(addr) + self.read_queue.append((data, addr)) + self.read_event.set() + + def error_received(self, exc: Exception) -> None: + self.exception = exc + + def pause_writing(self) -> None: + self.write_event.clear() + + def resume_writing(self) -> None: + self.write_event.set() + + +class SocketStream(abc.SocketStream): + def __init__(self, transport: asyncio.Transport, protocol: StreamProtocol): + self._transport = transport + self._protocol = protocol + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + self._closed = False + + @property + def _raw_socket(self) -> socket.socket: + return self._transport.get_extra_info("socket") + + async def receive(self, max_bytes: int = 65536) -> bytes: + with self._receive_guard: + if ( + not self._protocol.read_event.is_set() + and not self._transport.is_closing() + and not self._protocol.is_at_eof + ): + self._transport.resume_reading() + await self._protocol.read_event.wait() + self._transport.pause_reading() + else: + await AsyncIOBackend.checkpoint() + + try: + chunk = self._protocol.read_queue.popleft() + except IndexError: + if self._closed: + raise ClosedResourceError from None + elif self._protocol.exception: + raise self._protocol.exception from None + else: + raise EndOfStream from None + + if len(chunk) > max_bytes: + # Split the oversized chunk + chunk, leftover = chunk[:max_bytes], chunk[max_bytes:] + self._protocol.read_queue.appendleft(leftover) + + # If the read queue is empty, clear the flag so that the next call will + # block until data is available + if not self._protocol.read_queue: + self._protocol.read_event.clear() + + return chunk + + async def send(self, item: bytes) -> None: + with self._send_guard: + await AsyncIOBackend.checkpoint() + + if self._closed: + raise ClosedResourceError + elif self._protocol.exception is not None: + raise self._protocol.exception + + try: + self._transport.write(item) + except RuntimeError as exc: + if self._transport.is_closing(): + raise BrokenResourceError from exc + else: + raise + + await self._protocol.write_event.wait() + + async def send_eof(self) -> None: + try: + self._transport.write_eof() + except OSError: + pass + + async def aclose(self) -> None: + self._closed = True + if not self._transport.is_closing(): + try: + self._transport.write_eof() + except OSError: + pass + + self._transport.close() + await sleep(0) + self._transport.abort() + + +class _RawSocketMixin: + _receive_future: asyncio.Future | None = None + _send_future: asyncio.Future | None = None + _closing = False + + def __init__(self, raw_socket: socket.socket): + self.__raw_socket = raw_socket + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + @property + def _raw_socket(self) -> socket.socket: + return self.__raw_socket + + def _wait_until_readable(self, loop: asyncio.AbstractEventLoop) -> asyncio.Future: + def callback(f: object) -> None: + del self._receive_future + loop.remove_reader(self.__raw_socket) + + f = self._receive_future = asyncio.Future() + loop.add_reader(self.__raw_socket, f.set_result, None) + f.add_done_callback(callback) + return f + + def _wait_until_writable(self, loop: asyncio.AbstractEventLoop) -> asyncio.Future: + def callback(f: object) -> None: + del self._send_future + loop.remove_writer(self.__raw_socket) + + f = self._send_future = asyncio.Future() + loop.add_writer(self.__raw_socket, f.set_result, None) + f.add_done_callback(callback) + return f + + async def aclose(self) -> None: + if not self._closing: + self._closing = True + if self.__raw_socket.fileno() != -1: + self.__raw_socket.close() + + if self._receive_future: + self._receive_future.set_result(None) + if self._send_future: + self._send_future.set_result(None) + + +class UNIXSocketStream(_RawSocketMixin, abc.UNIXSocketStream): + async def send_eof(self) -> None: + with self._send_guard: + self._raw_socket.shutdown(socket.SHUT_WR) + + async def receive(self, max_bytes: int = 65536) -> bytes: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._receive_guard: + while True: + try: + data = self._raw_socket.recv(max_bytes) + except BlockingIOError: + await self._wait_until_readable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + if not data: + raise EndOfStream + + return data + + async def send(self, item: bytes) -> None: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._send_guard: + view = memoryview(item) + while view: + try: + bytes_sent = self._raw_socket.send(view) + except BlockingIOError: + await self._wait_until_writable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + view = view[bytes_sent:] + + async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: + if not isinstance(msglen, int) or msglen < 0: + raise ValueError("msglen must be a non-negative integer") + if not isinstance(maxfds, int) or maxfds < 1: + raise ValueError("maxfds must be a positive integer") + + loop = get_running_loop() + fds = array.array("i") + await AsyncIOBackend.checkpoint() + with self._receive_guard: + while True: + try: + message, ancdata, flags, addr = self._raw_socket.recvmsg( + msglen, socket.CMSG_LEN(maxfds * fds.itemsize) + ) + except BlockingIOError: + await self._wait_until_readable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + if not message and not ancdata: + raise EndOfStream + + break + + for cmsg_level, cmsg_type, cmsg_data in ancdata: + if cmsg_level != socket.SOL_SOCKET or cmsg_type != socket.SCM_RIGHTS: + raise RuntimeError( + f"Received unexpected ancillary data; message = {message!r}, " + f"cmsg_level = {cmsg_level}, cmsg_type = {cmsg_type}" + ) + + fds.frombytes(cmsg_data[: len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) + + return message, list(fds) + + async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: + if not message: + raise ValueError("message must not be empty") + if not fds: + raise ValueError("fds must not be empty") + + loop = get_running_loop() + filenos: list[int] = [] + for fd in fds: + if isinstance(fd, int): + filenos.append(fd) + elif isinstance(fd, IOBase): + filenos.append(fd.fileno()) + + fdarray = array.array("i", filenos) + await AsyncIOBackend.checkpoint() + with self._send_guard: + while True: + try: + # The ignore can be removed after mypy picks up + # https://github.com/python/typeshed/pull/5545 + self._raw_socket.sendmsg( + [message], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, fdarray)] + ) + break + except BlockingIOError: + await self._wait_until_writable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + + +class TCPSocketListener(abc.SocketListener): + _accept_scope: CancelScope | None = None + _closed = False + + def __init__(self, raw_socket: socket.socket): + self.__raw_socket = raw_socket + self._loop = cast(asyncio.BaseEventLoop, get_running_loop()) + self._accept_guard = ResourceGuard("accepting connections from") + + @property + def _raw_socket(self) -> socket.socket: + return self.__raw_socket + + async def accept(self) -> abc.SocketStream: + if self._closed: + raise ClosedResourceError + + with self._accept_guard: + await AsyncIOBackend.checkpoint() + with CancelScope() as self._accept_scope: + try: + client_sock, _addr = await self._loop.sock_accept(self._raw_socket) + except asyncio.CancelledError: + # Workaround for https://bugs.python.org/issue41317 + try: + self._loop.remove_reader(self._raw_socket) + except (ValueError, NotImplementedError): + pass + + if self._closed: + raise ClosedResourceError from None + + raise + finally: + self._accept_scope = None + + client_sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) + transport, protocol = await self._loop.connect_accepted_socket( + StreamProtocol, client_sock + ) + return SocketStream(transport, protocol) + + async def aclose(self) -> None: + if self._closed: + return + + self._closed = True + if self._accept_scope: + # Workaround for https://bugs.python.org/issue41317 + try: + self._loop.remove_reader(self._raw_socket) + except (ValueError, NotImplementedError): + pass + + self._accept_scope.cancel() + await sleep(0) + + self._raw_socket.close() + + +class UNIXSocketListener(abc.SocketListener): + def __init__(self, raw_socket: socket.socket): + self.__raw_socket = raw_socket + self._loop = get_running_loop() + self._accept_guard = ResourceGuard("accepting connections from") + self._closed = False + + async def accept(self) -> abc.SocketStream: + await AsyncIOBackend.checkpoint() + with self._accept_guard: + while True: + try: + client_sock, _ = self.__raw_socket.accept() + client_sock.setblocking(False) + return UNIXSocketStream(client_sock) + except BlockingIOError: + f: asyncio.Future = asyncio.Future() + self._loop.add_reader(self.__raw_socket, f.set_result, None) + f.add_done_callback( + lambda _: self._loop.remove_reader(self.__raw_socket) + ) + await f + except OSError as exc: + if self._closed: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + + async def aclose(self) -> None: + self._closed = True + self.__raw_socket.close() + + @property + def _raw_socket(self) -> socket.socket: + return self.__raw_socket + + +class UDPSocket(abc.UDPSocket): + def __init__( + self, transport: asyncio.DatagramTransport, protocol: DatagramProtocol + ): + self._transport = transport + self._protocol = protocol + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + self._closed = False + + @property + def _raw_socket(self) -> socket.socket: + return self._transport.get_extra_info("socket") + + async def aclose(self) -> None: + if not self._transport.is_closing(): + self._closed = True + self._transport.close() + + async def receive(self) -> tuple[bytes, IPSockAddrType]: + with self._receive_guard: + await AsyncIOBackend.checkpoint() + + # If the buffer is empty, ask for more data + if not self._protocol.read_queue and not self._transport.is_closing(): + self._protocol.read_event.clear() + await self._protocol.read_event.wait() + + try: + return self._protocol.read_queue.popleft() + except IndexError: + if self._closed: + raise ClosedResourceError from None + else: + raise BrokenResourceError from None + + async def send(self, item: UDPPacketType) -> None: + with self._send_guard: + await AsyncIOBackend.checkpoint() + await self._protocol.write_event.wait() + if self._closed: + raise ClosedResourceError + elif self._transport.is_closing(): + raise BrokenResourceError + else: + self._transport.sendto(*item) + + +class ConnectedUDPSocket(abc.ConnectedUDPSocket): + def __init__( + self, transport: asyncio.DatagramTransport, protocol: DatagramProtocol + ): + self._transport = transport + self._protocol = protocol + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + self._closed = False + + @property + def _raw_socket(self) -> socket.socket: + return self._transport.get_extra_info("socket") + + async def aclose(self) -> None: + if not self._transport.is_closing(): + self._closed = True + self._transport.close() + + async def receive(self) -> bytes: + with self._receive_guard: + await AsyncIOBackend.checkpoint() + + # If the buffer is empty, ask for more data + if not self._protocol.read_queue and not self._transport.is_closing(): + self._protocol.read_event.clear() + await self._protocol.read_event.wait() + + try: + packet = self._protocol.read_queue.popleft() + except IndexError: + if self._closed: + raise ClosedResourceError from None + else: + raise BrokenResourceError from None + + return packet[0] + + async def send(self, item: bytes) -> None: + with self._send_guard: + await AsyncIOBackend.checkpoint() + await self._protocol.write_event.wait() + if self._closed: + raise ClosedResourceError + elif self._transport.is_closing(): + raise BrokenResourceError + else: + self._transport.sendto(item) + + +class UNIXDatagramSocket(_RawSocketMixin, abc.UNIXDatagramSocket): + async def receive(self) -> UNIXDatagramPacketType: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._receive_guard: + while True: + try: + data = self._raw_socket.recvfrom(65536) + except BlockingIOError: + await self._wait_until_readable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + return data + + async def send(self, item: UNIXDatagramPacketType) -> None: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._send_guard: + while True: + try: + self._raw_socket.sendto(*item) + except BlockingIOError: + await self._wait_until_writable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + return + + +class ConnectedUNIXDatagramSocket(_RawSocketMixin, abc.ConnectedUNIXDatagramSocket): + async def receive(self) -> bytes: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._receive_guard: + while True: + try: + data = self._raw_socket.recv(65536) + except BlockingIOError: + await self._wait_until_readable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + return data + + async def send(self, item: bytes) -> None: + loop = get_running_loop() + await AsyncIOBackend.checkpoint() + with self._send_guard: + while True: + try: + self._raw_socket.send(item) + except BlockingIOError: + await self._wait_until_writable(loop) + except OSError as exc: + if self._closing: + raise ClosedResourceError from None + else: + raise BrokenResourceError from exc + else: + return + + +_read_events: RunVar[dict[int, asyncio.Future[bool]]] = RunVar("read_events") +_write_events: RunVar[dict[int, asyncio.Future[bool]]] = RunVar("write_events") + + +# +# Synchronization +# + + +class Event(BaseEvent): + def __new__(cls) -> Event: + return object.__new__(cls) + + def __init__(self) -> None: + self._event = asyncio.Event() + + def set(self) -> None: + self._event.set() + + def is_set(self) -> bool: + return self._event.is_set() + + async def wait(self) -> None: + if self.is_set(): + await AsyncIOBackend.checkpoint() + else: + await self._event.wait() + + def statistics(self) -> EventStatistics: + return EventStatistics(len(self._event._waiters)) + + +class Lock(BaseLock): + def __new__(cls, *, fast_acquire: bool = False) -> Lock: + return object.__new__(cls) + + def __init__(self, *, fast_acquire: bool = False) -> None: + self._fast_acquire = fast_acquire + self._owner_task: asyncio.Task | None = None + self._waiters: deque[tuple[asyncio.Task, asyncio.Future]] = deque() + + async def acquire(self) -> None: + task = cast(asyncio.Task, current_task()) + if self._owner_task is None and not self._waiters: + await AsyncIOBackend.checkpoint_if_cancelled() + self._owner_task = task + + # Unless on the "fast path", yield control of the event loop so that other + # tasks can run too + if not self._fast_acquire: + try: + await AsyncIOBackend.cancel_shielded_checkpoint() + except CancelledError: + self.release() + raise + + return + + if self._owner_task == task: + raise RuntimeError("Attempted to acquire an already held Lock") + + fut: asyncio.Future[None] = asyncio.Future() + item = task, fut + self._waiters.append(item) + try: + await fut + except CancelledError: + self._waiters.remove(item) + if self._owner_task is task: + self.release() + + raise + + self._waiters.remove(item) + + def acquire_nowait(self) -> None: + task = cast(asyncio.Task, current_task()) + if self._owner_task is None and not self._waiters: + self._owner_task = task + return + + if self._owner_task is task: + raise RuntimeError("Attempted to acquire an already held Lock") + + raise WouldBlock + + def locked(self) -> bool: + return self._owner_task is not None + + def release(self) -> None: + if self._owner_task != current_task(): + raise RuntimeError("The current task is not holding this lock") + + for task, fut in self._waiters: + if not fut.cancelled(): + self._owner_task = task + fut.set_result(None) + return + + self._owner_task = None + + def statistics(self) -> LockStatistics: + task_info = AsyncIOTaskInfo(self._owner_task) if self._owner_task else None + return LockStatistics(self.locked(), task_info, len(self._waiters)) + + +class Semaphore(BaseSemaphore): + def __new__( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> Semaphore: + return object.__new__(cls) + + def __init__( + self, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ): + super().__init__(initial_value, max_value=max_value) + self._value = initial_value + self._max_value = max_value + self._fast_acquire = fast_acquire + self._waiters: deque[asyncio.Future[None]] = deque() + + async def acquire(self) -> None: + if self._value > 0 and not self._waiters: + await AsyncIOBackend.checkpoint_if_cancelled() + self._value -= 1 + + # Unless on the "fast path", yield control of the event loop so that other + # tasks can run too + if not self._fast_acquire: + try: + await AsyncIOBackend.cancel_shielded_checkpoint() + except CancelledError: + self.release() + raise + + return + + fut: asyncio.Future[None] = asyncio.Future() + self._waiters.append(fut) + try: + await fut + except CancelledError: + try: + self._waiters.remove(fut) + except ValueError: + self.release() + + raise + + def acquire_nowait(self) -> None: + if self._value == 0: + raise WouldBlock + + self._value -= 1 + + def release(self) -> None: + if self._max_value is not None and self._value == self._max_value: + raise ValueError("semaphore released too many times") + + for fut in self._waiters: + if not fut.cancelled(): + fut.set_result(None) + self._waiters.remove(fut) + return + + self._value += 1 + + @property + def value(self) -> int: + return self._value + + @property + def max_value(self) -> int | None: + return self._max_value + + def statistics(self) -> SemaphoreStatistics: + return SemaphoreStatistics(len(self._waiters)) + + +class CapacityLimiter(BaseCapacityLimiter): + _total_tokens: float = 0 + + def __new__(cls, total_tokens: float) -> CapacityLimiter: + return object.__new__(cls) + + def __init__(self, total_tokens: float): + self._borrowers: set[Any] = set() + self._wait_queue: OrderedDict[Any, asyncio.Event] = OrderedDict() + self.total_tokens = total_tokens + + async def __aenter__(self) -> None: + await self.acquire() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.release() + + @property + def total_tokens(self) -> float: + return self._total_tokens + + @total_tokens.setter + def total_tokens(self, value: float) -> None: + if not isinstance(value, int) and not math.isinf(value): + raise TypeError("total_tokens must be an int or math.inf") + if value < 1: + raise ValueError("total_tokens must be >= 1") + + waiters_to_notify = max(value - self._total_tokens, 0) + self._total_tokens = value + + # Notify waiting tasks that they have acquired the limiter + while self._wait_queue and waiters_to_notify: + event = self._wait_queue.popitem(last=False)[1] + event.set() + waiters_to_notify -= 1 + + @property + def borrowed_tokens(self) -> int: + return len(self._borrowers) + + @property + def available_tokens(self) -> float: + return self._total_tokens - len(self._borrowers) + + def _notify_next_waiter(self) -> None: + """Notify the next task in line if this limiter has free capacity now.""" + if self._wait_queue and len(self._borrowers) < self._total_tokens: + event = self._wait_queue.popitem(last=False)[1] + event.set() + + def acquire_nowait(self) -> None: + self.acquire_on_behalf_of_nowait(current_task()) + + def acquire_on_behalf_of_nowait(self, borrower: object) -> None: + if borrower in self._borrowers: + raise RuntimeError( + "this borrower is already holding one of this CapacityLimiter's tokens" + ) + + if self._wait_queue or len(self._borrowers) >= self._total_tokens: + raise WouldBlock + + self._borrowers.add(borrower) + + async def acquire(self) -> None: + return await self.acquire_on_behalf_of(current_task()) + + async def acquire_on_behalf_of(self, borrower: object) -> None: + await AsyncIOBackend.checkpoint_if_cancelled() + try: + self.acquire_on_behalf_of_nowait(borrower) + except WouldBlock: + event = asyncio.Event() + self._wait_queue[borrower] = event + try: + await event.wait() + except BaseException: + self._wait_queue.pop(borrower, None) + if event.is_set(): + self._notify_next_waiter() + + raise + + self._borrowers.add(borrower) + else: + try: + await AsyncIOBackend.cancel_shielded_checkpoint() + except BaseException: + self.release() + raise + + def release(self) -> None: + self.release_on_behalf_of(current_task()) + + def release_on_behalf_of(self, borrower: object) -> None: + try: + self._borrowers.remove(borrower) + except KeyError: + raise RuntimeError( + "this borrower isn't holding any of this CapacityLimiter's tokens" + ) from None + + self._notify_next_waiter() + + def statistics(self) -> CapacityLimiterStatistics: + return CapacityLimiterStatistics( + self.borrowed_tokens, + self.total_tokens, + tuple(self._borrowers), + len(self._wait_queue), + ) + + +_default_thread_limiter: RunVar[CapacityLimiter] = RunVar("_default_thread_limiter") + + +# +# Operating system signals +# + + +class _SignalReceiver: + def __init__(self, signals: tuple[Signals, ...]): + self._signals = signals + self._loop = get_running_loop() + self._signal_queue: deque[Signals] = deque() + self._future: asyncio.Future = asyncio.Future() + self._handled_signals: set[Signals] = set() + + def _deliver(self, signum: Signals) -> None: + self._signal_queue.append(signum) + if not self._future.done(): + self._future.set_result(None) + + def __enter__(self) -> _SignalReceiver: + for sig in set(self._signals): + self._loop.add_signal_handler(sig, self._deliver, sig) + self._handled_signals.add(sig) + + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + for sig in self._handled_signals: + self._loop.remove_signal_handler(sig) + + def __aiter__(self) -> _SignalReceiver: + return self + + async def __anext__(self) -> Signals: + await AsyncIOBackend.checkpoint() + if not self._signal_queue: + self._future = asyncio.Future() + await self._future + + return self._signal_queue.popleft() + + +# +# Testing and debugging +# + + +class AsyncIOTaskInfo(TaskInfo): + def __init__(self, task: asyncio.Task): + task_state = _task_states.get(task) + if task_state is None: + parent_id = None + else: + parent_id = task_state.parent_id + + coro = task.get_coro() + assert coro is not None, "created TaskInfo from a completed Task" + super().__init__(id(task), parent_id, task.get_name(), coro) + self._task = weakref.ref(task) + + def has_pending_cancellation(self) -> bool: + if not (task := self._task()): + # If the task isn't around anymore, it won't have a pending cancellation + return False + + if task._must_cancel: # type: ignore[attr-defined] + return True + elif ( + isinstance(task._fut_waiter, asyncio.Future) # type: ignore[attr-defined] + and task._fut_waiter.cancelled() # type: ignore[attr-defined] + ): + return True + + if task_state := _task_states.get(task): + if cancel_scope := task_state.cancel_scope: + return cancel_scope._effectively_cancelled + + return False + + +class TestRunner(abc.TestRunner): + _send_stream: MemoryObjectSendStream[tuple[Awaitable[Any], asyncio.Future[Any]]] + + def __init__( + self, + *, + debug: bool | None = None, + use_uvloop: bool = False, + loop_factory: Callable[[], AbstractEventLoop] | None = None, + ) -> None: + if use_uvloop and loop_factory is None: + import uvloop + + loop_factory = uvloop.new_event_loop + + self._runner = Runner(debug=debug, loop_factory=loop_factory) + self._exceptions: list[BaseException] = [] + self._runner_task: asyncio.Task | None = None + + def __enter__(self) -> TestRunner: + self._runner.__enter__() + self.get_loop().set_exception_handler(self._exception_handler) + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self._runner.__exit__(exc_type, exc_val, exc_tb) + + def get_loop(self) -> AbstractEventLoop: + return self._runner.get_loop() + + def _exception_handler( + self, loop: asyncio.AbstractEventLoop, context: dict[str, Any] + ) -> None: + if isinstance(context.get("exception"), Exception): + self._exceptions.append(context["exception"]) + else: + loop.default_exception_handler(context) + + def _raise_async_exceptions(self) -> None: + # Re-raise any exceptions raised in asynchronous callbacks + if self._exceptions: + exceptions, self._exceptions = self._exceptions, [] + if len(exceptions) == 1: + raise exceptions[0] + elif exceptions: + raise BaseExceptionGroup( + "Multiple exceptions occurred in asynchronous callbacks", exceptions + ) + + async def _run_tests_and_fixtures( + self, + receive_stream: MemoryObjectReceiveStream[ + tuple[Awaitable[T_Retval], asyncio.Future[T_Retval]] + ], + ) -> None: + from _pytest.outcomes import OutcomeException + + with receive_stream, self._send_stream: + async for coro, future in receive_stream: + try: + retval = await coro + except CancelledError as exc: + if not future.cancelled(): + future.cancel(*exc.args) + + raise + except BaseException as exc: + if not future.cancelled(): + future.set_exception(exc) + + if not isinstance(exc, (Exception, OutcomeException)): + raise + else: + if not future.cancelled(): + future.set_result(retval) + + async def _call_in_runner_task( + self, + func: Callable[P, Awaitable[T_Retval]], + *args: P.args, + **kwargs: P.kwargs, + ) -> T_Retval: + if not self._runner_task: + self._send_stream, receive_stream = create_memory_object_stream[ + tuple[Awaitable[Any], asyncio.Future] + ](1) + self._runner_task = self.get_loop().create_task( + self._run_tests_and_fixtures(receive_stream) + ) + + coro = func(*args, **kwargs) + future: asyncio.Future[T_Retval] = self.get_loop().create_future() + self._send_stream.send_nowait((coro, future)) + return await future + + def run_asyncgen_fixture( + self, + fixture_func: Callable[..., AsyncGenerator[T_Retval, Any]], + kwargs: dict[str, Any], + ) -> Iterable[T_Retval]: + asyncgen = fixture_func(**kwargs) + fixturevalue: T_Retval = self.get_loop().run_until_complete( + self._call_in_runner_task(asyncgen.asend, None) + ) + self._raise_async_exceptions() + + yield fixturevalue + + try: + self.get_loop().run_until_complete( + self._call_in_runner_task(asyncgen.asend, None) + ) + except StopAsyncIteration: + self._raise_async_exceptions() + else: + self.get_loop().run_until_complete(asyncgen.aclose()) + raise RuntimeError("Async generator fixture did not stop") + + def run_fixture( + self, + fixture_func: Callable[..., Coroutine[Any, Any, T_Retval]], + kwargs: dict[str, Any], + ) -> T_Retval: + retval = self.get_loop().run_until_complete( + self._call_in_runner_task(fixture_func, **kwargs) + ) + self._raise_async_exceptions() + return retval + + def run_test( + self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] + ) -> None: + try: + self.get_loop().run_until_complete( + self._call_in_runner_task(test_func, **kwargs) + ) + except Exception as exc: + self._exceptions.append(exc) + + self._raise_async_exceptions() + + +class AsyncIOBackend(AsyncBackend): + @classmethod + def run( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + options: dict[str, Any], + ) -> T_Retval: + @wraps(func) + async def wrapper() -> T_Retval: + task = cast(asyncio.Task, current_task()) + task.set_name(get_callable_name(func)) + _task_states[task] = TaskState(None, None) + + try: + return await func(*args) + finally: + del _task_states[task] + + debug = options.get("debug", None) + loop_factory = options.get("loop_factory", None) + if loop_factory is None and options.get("use_uvloop", False): + import uvloop + + loop_factory = uvloop.new_event_loop + + with Runner(debug=debug, loop_factory=loop_factory) as runner: + return runner.run(wrapper()) + + @classmethod + def current_token(cls) -> object: + return get_running_loop() + + @classmethod + def current_time(cls) -> float: + return get_running_loop().time() + + @classmethod + def cancelled_exception_class(cls) -> type[BaseException]: + return CancelledError + + @classmethod + async def checkpoint(cls) -> None: + await sleep(0) + + @classmethod + async def checkpoint_if_cancelled(cls) -> None: + task = current_task() + if task is None: + return + + try: + cancel_scope = _task_states[task].cancel_scope + except KeyError: + return + + while cancel_scope: + if cancel_scope.cancel_called: + await sleep(0) + elif cancel_scope.shield: + break + else: + cancel_scope = cancel_scope._parent_scope + + @classmethod + async def cancel_shielded_checkpoint(cls) -> None: + with CancelScope(shield=True): + await sleep(0) + + @classmethod + async def sleep(cls, delay: float) -> None: + await sleep(delay) + + @classmethod + def create_cancel_scope( + cls, *, deadline: float = math.inf, shield: bool = False + ) -> CancelScope: + return CancelScope(deadline=deadline, shield=shield) + + @classmethod + def current_effective_deadline(cls) -> float: + if (task := current_task()) is None: + return math.inf + + try: + cancel_scope = _task_states[task].cancel_scope + except KeyError: + return math.inf + + deadline = math.inf + while cancel_scope: + deadline = min(deadline, cancel_scope.deadline) + if cancel_scope._cancel_called: + deadline = -math.inf + break + elif cancel_scope.shield: + break + else: + cancel_scope = cancel_scope._parent_scope + + return deadline + + @classmethod + def create_task_group(cls) -> abc.TaskGroup: + return TaskGroup() + + @classmethod + def create_event(cls) -> abc.Event: + return Event() + + @classmethod + def create_lock(cls, *, fast_acquire: bool) -> abc.Lock: + return Lock(fast_acquire=fast_acquire) + + @classmethod + def create_semaphore( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> abc.Semaphore: + return Semaphore(initial_value, max_value=max_value, fast_acquire=fast_acquire) + + @classmethod + def create_capacity_limiter(cls, total_tokens: float) -> abc.CapacityLimiter: + return CapacityLimiter(total_tokens) + + @classmethod + async def run_sync_in_worker_thread( # type: ignore[return] + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + abandon_on_cancel: bool = False, + limiter: abc.CapacityLimiter | None = None, + ) -> T_Retval: + await cls.checkpoint() + + # If this is the first run in this event loop thread, set up the necessary + # variables + try: + idle_workers = _threadpool_idle_workers.get() + workers = _threadpool_workers.get() + except LookupError: + idle_workers = deque() + workers = set() + _threadpool_idle_workers.set(idle_workers) + _threadpool_workers.set(workers) + + async with limiter or cls.current_default_thread_limiter(): + with CancelScope(shield=not abandon_on_cancel) as scope: + future = asyncio.Future[T_Retval]() + root_task = find_root_task() + if not idle_workers: + worker = WorkerThread(root_task, workers, idle_workers) + worker.start() + workers.add(worker) + root_task.add_done_callback( + worker.stop, context=contextvars.Context() + ) + else: + worker = idle_workers.pop() + + # Prune any other workers that have been idle for MAX_IDLE_TIME + # seconds or longer + now = cls.current_time() + while idle_workers: + if ( + now - idle_workers[0].idle_since + < WorkerThread.MAX_IDLE_TIME + ): + break + + expired_worker = idle_workers.popleft() + expired_worker.root_task.remove_done_callback( + expired_worker.stop + ) + expired_worker.stop() + + context = copy_context() + context.run(sniffio.current_async_library_cvar.set, None) + if abandon_on_cancel or scope._parent_scope is None: + worker_scope = scope + else: + worker_scope = scope._parent_scope + + worker.queue.put_nowait((context, func, args, future, worker_scope)) + return await future + + @classmethod + def check_cancelled(cls) -> None: + scope: CancelScope | None = threadlocals.current_cancel_scope + while scope is not None: + if scope.cancel_called: + raise CancelledError(f"Cancelled by cancel scope {id(scope):x}") + + if scope.shield: + return + + scope = scope._parent_scope + + @classmethod + def run_async_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + async def task_wrapper() -> T_Retval: + __tracebackhide__ = True + if scope is not None: + task = cast(asyncio.Task, current_task()) + _task_states[task] = TaskState(None, scope) + scope._tasks.add(task) + try: + return await func(*args) + except CancelledError as exc: + raise concurrent.futures.CancelledError(str(exc)) from None + finally: + if scope is not None: + scope._tasks.discard(task) + + loop = cast( + "AbstractEventLoop", token or threadlocals.current_token.native_token + ) + if loop.is_closed(): + raise RunFinishedError + + context = copy_context() + context.run(sniffio.current_async_library_cvar.set, "asyncio") + scope = getattr(threadlocals, "current_cancel_scope", None) + f: concurrent.futures.Future[T_Retval] = context.run( + asyncio.run_coroutine_threadsafe, task_wrapper(), loop=loop + ) + return f.result() + + @classmethod + def run_sync_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + @wraps(func) + def wrapper() -> None: + try: + sniffio.current_async_library_cvar.set("asyncio") + f.set_result(func(*args)) + except BaseException as exc: + f.set_exception(exc) + if not isinstance(exc, Exception): + raise + + loop = cast( + "AbstractEventLoop", token or threadlocals.current_token.native_token + ) + if loop.is_closed(): + raise RunFinishedError + + f: concurrent.futures.Future[T_Retval] = Future() + loop.call_soon_threadsafe(wrapper) + return f.result() + + @classmethod + def create_blocking_portal(cls) -> abc.BlockingPortal: + return BlockingPortal() + + @classmethod + async def open_process( + cls, + command: StrOrBytesPath | Sequence[StrOrBytesPath], + *, + stdin: int | IO[Any] | None, + stdout: int | IO[Any] | None, + stderr: int | IO[Any] | None, + **kwargs: Any, + ) -> Process: + await cls.checkpoint() + if isinstance(command, PathLike): + command = os.fspath(command) + + if isinstance(command, (str, bytes)): + process = await asyncio.create_subprocess_shell( + command, + stdin=stdin, + stdout=stdout, + stderr=stderr, + **kwargs, + ) + else: + process = await asyncio.create_subprocess_exec( + *command, + stdin=stdin, + stdout=stdout, + stderr=stderr, + **kwargs, + ) + + stdin_stream = StreamWriterWrapper(process.stdin) if process.stdin else None + stdout_stream = StreamReaderWrapper(process.stdout) if process.stdout else None + stderr_stream = StreamReaderWrapper(process.stderr) if process.stderr else None + return Process(process, stdin_stream, stdout_stream, stderr_stream) + + @classmethod + def setup_process_pool_exit_at_shutdown(cls, workers: set[abc.Process]) -> None: + create_task( + _shutdown_process_pool_on_exit(workers), + name="AnyIO process pool shutdown task", + ) + find_root_task().add_done_callback( + partial(_forcibly_shutdown_process_pool_on_exit, workers) # type:ignore[arg-type] + ) + + @classmethod + async def connect_tcp( + cls, host: str, port: int, local_address: IPSockAddrType | None = None + ) -> abc.SocketStream: + transport, protocol = cast( + tuple[asyncio.Transport, StreamProtocol], + await get_running_loop().create_connection( + StreamProtocol, host, port, local_addr=local_address + ), + ) + transport.pause_reading() + return SocketStream(transport, protocol) + + @classmethod + async def connect_unix(cls, path: str | bytes) -> abc.UNIXSocketStream: + await cls.checkpoint() + loop = get_running_loop() + raw_socket = socket.socket(socket.AF_UNIX) + raw_socket.setblocking(False) + while True: + try: + raw_socket.connect(path) + except BlockingIOError: + f: asyncio.Future = asyncio.Future() + loop.add_writer(raw_socket, f.set_result, None) + f.add_done_callback(lambda _: loop.remove_writer(raw_socket)) + await f + except BaseException: + raw_socket.close() + raise + else: + return UNIXSocketStream(raw_socket) + + @classmethod + def create_tcp_listener(cls, sock: socket.socket) -> SocketListener: + return TCPSocketListener(sock) + + @classmethod + def create_unix_listener(cls, sock: socket.socket) -> SocketListener: + return UNIXSocketListener(sock) + + @classmethod + async def create_udp_socket( + cls, + family: AddressFamily, + local_address: IPSockAddrType | None, + remote_address: IPSockAddrType | None, + reuse_port: bool, + ) -> UDPSocket | ConnectedUDPSocket: + transport, protocol = await get_running_loop().create_datagram_endpoint( + DatagramProtocol, + local_addr=local_address, + remote_addr=remote_address, + family=family, + reuse_port=reuse_port, + ) + if protocol.exception: + transport.close() + raise protocol.exception + + if not remote_address: + return UDPSocket(transport, protocol) + else: + return ConnectedUDPSocket(transport, protocol) + + @classmethod + async def create_unix_datagram_socket( # type: ignore[override] + cls, raw_socket: socket.socket, remote_path: str | bytes | None + ) -> abc.UNIXDatagramSocket | abc.ConnectedUNIXDatagramSocket: + await cls.checkpoint() + loop = get_running_loop() + + if remote_path: + while True: + try: + raw_socket.connect(remote_path) + except BlockingIOError: + f: asyncio.Future = asyncio.Future() + loop.add_writer(raw_socket, f.set_result, None) + f.add_done_callback(lambda _: loop.remove_writer(raw_socket)) + await f + except BaseException: + raw_socket.close() + raise + else: + return ConnectedUNIXDatagramSocket(raw_socket) + else: + return UNIXDatagramSocket(raw_socket) + + @classmethod + async def getaddrinfo( + cls, + host: bytes | str | None, + port: str | int | None, + *, + family: int | AddressFamily = 0, + type: int | SocketKind = 0, + proto: int = 0, + flags: int = 0, + ) -> Sequence[ + tuple[ + AddressFamily, + SocketKind, + int, + str, + tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], + ] + ]: + return await get_running_loop().getaddrinfo( + host, port, family=family, type=type, proto=proto, flags=flags + ) + + @classmethod + async def getnameinfo( + cls, sockaddr: IPSockAddrType, flags: int = 0 + ) -> tuple[str, str]: + return await get_running_loop().getnameinfo(sockaddr, flags) + + @classmethod + async def wait_readable(cls, obj: FileDescriptorLike) -> None: + try: + read_events = _read_events.get() + except LookupError: + read_events = {} + _read_events.set(read_events) + + fd = obj if isinstance(obj, int) else obj.fileno() + if read_events.get(fd): + raise BusyResourceError("reading from") + + loop = get_running_loop() + fut: asyncio.Future[bool] = loop.create_future() + + def cb() -> None: + try: + del read_events[fd] + except KeyError: + pass + else: + remove_reader(fd) + + try: + fut.set_result(True) + except asyncio.InvalidStateError: + pass + + try: + loop.add_reader(fd, cb) + except NotImplementedError: + from anyio._core._asyncio_selector_thread import get_selector + + selector = get_selector() + selector.add_reader(fd, cb) + remove_reader = selector.remove_reader + else: + remove_reader = loop.remove_reader + + read_events[fd] = fut + try: + success = await fut + finally: + try: + del read_events[fd] + except KeyError: + pass + else: + remove_reader(fd) + + if not success: + raise ClosedResourceError + + @classmethod + async def wait_writable(cls, obj: FileDescriptorLike) -> None: + try: + write_events = _write_events.get() + except LookupError: + write_events = {} + _write_events.set(write_events) + + fd = obj if isinstance(obj, int) else obj.fileno() + if write_events.get(fd): + raise BusyResourceError("writing to") + + loop = get_running_loop() + fut: asyncio.Future[bool] = loop.create_future() + + def cb() -> None: + try: + del write_events[fd] + except KeyError: + pass + else: + remove_writer(fd) + + try: + fut.set_result(True) + except asyncio.InvalidStateError: + pass + + try: + loop.add_writer(fd, cb) + except NotImplementedError: + from anyio._core._asyncio_selector_thread import get_selector + + selector = get_selector() + selector.add_writer(fd, cb) + remove_writer = selector.remove_writer + else: + remove_writer = loop.remove_writer + + write_events[fd] = fut + try: + success = await fut + finally: + try: + del write_events[fd] + except KeyError: + pass + else: + remove_writer(fd) + + if not success: + raise ClosedResourceError + + @classmethod + def notify_closing(cls, obj: FileDescriptorLike) -> None: + fd = obj if isinstance(obj, int) else obj.fileno() + loop = get_running_loop() + + try: + write_events = _write_events.get() + except LookupError: + pass + else: + try: + fut = write_events.pop(fd) + except KeyError: + pass + else: + try: + fut.set_result(False) + except asyncio.InvalidStateError: + pass + + try: + loop.remove_writer(fd) + except NotImplementedError: + from anyio._core._asyncio_selector_thread import get_selector + + get_selector().remove_writer(fd) + + try: + read_events = _read_events.get() + except LookupError: + pass + else: + try: + fut = read_events.pop(fd) + except KeyError: + pass + else: + try: + fut.set_result(False) + except asyncio.InvalidStateError: + pass + + try: + loop.remove_reader(fd) + except NotImplementedError: + from anyio._core._asyncio_selector_thread import get_selector + + get_selector().remove_reader(fd) + + @classmethod + async def wrap_listener_socket(cls, sock: socket.socket) -> SocketListener: + return TCPSocketListener(sock) + + @classmethod + async def wrap_stream_socket(cls, sock: socket.socket) -> SocketStream: + transport, protocol = await get_running_loop().create_connection( + StreamProtocol, sock=sock + ) + return SocketStream(transport, protocol) + + @classmethod + async def wrap_unix_stream_socket(cls, sock: socket.socket) -> UNIXSocketStream: + return UNIXSocketStream(sock) + + @classmethod + async def wrap_udp_socket(cls, sock: socket.socket) -> UDPSocket: + transport, protocol = await get_running_loop().create_datagram_endpoint( + DatagramProtocol, sock=sock + ) + return UDPSocket(transport, protocol) + + @classmethod + async def wrap_connected_udp_socket(cls, sock: socket.socket) -> ConnectedUDPSocket: + transport, protocol = await get_running_loop().create_datagram_endpoint( + DatagramProtocol, sock=sock + ) + return ConnectedUDPSocket(transport, protocol) + + @classmethod + async def wrap_unix_datagram_socket(cls, sock: socket.socket) -> UNIXDatagramSocket: + return UNIXDatagramSocket(sock) + + @classmethod + async def wrap_connected_unix_datagram_socket( + cls, sock: socket.socket + ) -> ConnectedUNIXDatagramSocket: + return ConnectedUNIXDatagramSocket(sock) + + @classmethod + def current_default_thread_limiter(cls) -> CapacityLimiter: + try: + return _default_thread_limiter.get() + except LookupError: + limiter = CapacityLimiter(40) + _default_thread_limiter.set(limiter) + return limiter + + @classmethod + def open_signal_receiver( + cls, *signals: Signals + ) -> AbstractContextManager[AsyncIterator[Signals]]: + return _SignalReceiver(signals) + + @classmethod + def get_current_task(cls) -> TaskInfo: + return AsyncIOTaskInfo(current_task()) # type: ignore[arg-type] + + @classmethod + def get_running_tasks(cls) -> Sequence[TaskInfo]: + return [AsyncIOTaskInfo(task) for task in all_tasks() if not task.done()] + + @classmethod + async def wait_all_tasks_blocked(cls) -> None: + await cls.checkpoint() + this_task = current_task() + while True: + for task in all_tasks(): + if task is this_task: + continue + + waiter = task._fut_waiter # type: ignore[attr-defined] + if waiter is None or waiter.done(): + await sleep(0.1) + break + else: + return + + @classmethod + def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: + return TestRunner(**options) + + +backend_class = AsyncIOBackend diff --git a/ocr/.venv/Lib/site-packages/anyio/_backends/_trio.py b/ocr/.venv/Lib/site-packages/anyio/_backends/_trio.py new file mode 100644 index 00000000..36941f0e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_backends/_trio.py @@ -0,0 +1,1384 @@ +from __future__ import annotations + +import array +import math +import os +import socket +import sys +import types +import weakref +from collections.abc import ( + AsyncGenerator, + AsyncIterator, + Awaitable, + Callable, + Collection, + Coroutine, + Iterable, + Sequence, +) +from concurrent.futures import Future +from contextlib import AbstractContextManager +from dataclasses import dataclass +from functools import partial +from io import IOBase +from os import PathLike +from signal import Signals +from socket import AddressFamily, SocketKind +from types import TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Generic, + NoReturn, + TypeVar, + cast, + overload, +) + +import trio.from_thread +import trio.lowlevel +from outcome import Error, Outcome, Value +from trio.lowlevel import ( + current_root_task, + current_task, + notify_closing, + wait_readable, + wait_writable, +) +from trio.socket import SocketType as TrioSocketType +from trio.to_thread import run_sync + +from .. import ( + CapacityLimiterStatistics, + EventStatistics, + LockStatistics, + RunFinishedError, + TaskInfo, + WouldBlock, + abc, +) +from .._core._eventloop import claim_worker_thread +from .._core._exceptions import ( + BrokenResourceError, + BusyResourceError, + ClosedResourceError, + EndOfStream, +) +from .._core._sockets import convert_ipv6_sockaddr +from .._core._streams import create_memory_object_stream +from .._core._synchronization import ( + CapacityLimiter as BaseCapacityLimiter, +) +from .._core._synchronization import Event as BaseEvent +from .._core._synchronization import Lock as BaseLock +from .._core._synchronization import ( + ResourceGuard, + SemaphoreStatistics, +) +from .._core._synchronization import Semaphore as BaseSemaphore +from .._core._tasks import CancelScope as BaseCancelScope +from ..abc import IPSockAddrType, UDPPacketType, UNIXDatagramPacketType +from ..abc._eventloop import AsyncBackend, StrOrBytesPath +from ..streams.memory import MemoryObjectSendStream + +if TYPE_CHECKING: + from _typeshed import FileDescriptorLike + +if sys.version_info >= (3, 10): + from typing import ParamSpec +else: + from typing_extensions import ParamSpec + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from exceptiongroup import BaseExceptionGroup + from typing_extensions import TypeVarTuple, Unpack + +T = TypeVar("T") +T_Retval = TypeVar("T_Retval") +T_SockAddr = TypeVar("T_SockAddr", str, IPSockAddrType) +PosArgsT = TypeVarTuple("PosArgsT") +P = ParamSpec("P") + + +# +# Event loop +# + +RunVar = trio.lowlevel.RunVar + + +# +# Timeouts and cancellation +# + + +class CancelScope(BaseCancelScope): + def __new__( + cls, original: trio.CancelScope | None = None, **kwargs: object + ) -> CancelScope: + return object.__new__(cls) + + def __init__(self, original: trio.CancelScope | None = None, **kwargs: Any) -> None: + self.__original = original or trio.CancelScope(**kwargs) + + def __enter__(self) -> CancelScope: + self.__original.__enter__() + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + return self.__original.__exit__(exc_type, exc_val, exc_tb) + + def cancel(self, reason: str | None = None) -> None: + self.__original.cancel(reason) + + @property + def deadline(self) -> float: + return self.__original.deadline + + @deadline.setter + def deadline(self, value: float) -> None: + self.__original.deadline = value + + @property + def cancel_called(self) -> bool: + return self.__original.cancel_called + + @property + def cancelled_caught(self) -> bool: + return self.__original.cancelled_caught + + @property + def shield(self) -> bool: + return self.__original.shield + + @shield.setter + def shield(self, value: bool) -> None: + self.__original.shield = value + + +# +# Task groups +# + + +class TaskGroup(abc.TaskGroup): + def __init__(self) -> None: + self._active = False + self._nursery_manager = trio.open_nursery(strict_exception_groups=True) + self.cancel_scope = None # type: ignore[assignment] + + async def __aenter__(self) -> TaskGroup: + self._active = True + self._nursery = await self._nursery_manager.__aenter__() + self.cancel_scope = CancelScope(self._nursery.cancel_scope) + return self + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + try: + # trio.Nursery.__exit__ returns bool; .open_nursery has wrong type + return await self._nursery_manager.__aexit__(exc_type, exc_val, exc_tb) # type: ignore[return-value] + except BaseExceptionGroup as exc: + if not exc.split(trio.Cancelled)[1]: + raise trio.Cancelled._create() from exc + + raise + finally: + del exc_val, exc_tb + self._active = False + + def start_soon( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[Any]], + *args: Unpack[PosArgsT], + name: object = None, + ) -> None: + if not self._active: + raise RuntimeError( + "This task group is not active; no new tasks can be started." + ) + + self._nursery.start_soon(func, *args, name=name) + + async def start( + self, func: Callable[..., Awaitable[Any]], *args: object, name: object = None + ) -> Any: + if not self._active: + raise RuntimeError( + "This task group is not active; no new tasks can be started." + ) + + return await self._nursery.start(func, *args, name=name) + + +# +# Threads +# + + +class BlockingPortal(abc.BlockingPortal): + def __new__(cls) -> BlockingPortal: + return object.__new__(cls) + + def __init__(self) -> None: + super().__init__() + self._token = trio.lowlevel.current_trio_token() + + def _spawn_task_from_thread( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + name: object, + future: Future[T_Retval], + ) -> None: + trio.from_thread.run_sync( + partial(self._task_group.start_soon, name=name), + self._call_func, + func, + args, + kwargs, + future, + trio_token=self._token, + ) + + +# +# Subprocesses +# + + +@dataclass(eq=False) +class ReceiveStreamWrapper(abc.ByteReceiveStream): + _stream: trio.abc.ReceiveStream + + async def receive(self, max_bytes: int | None = None) -> bytes: + try: + data = await self._stream.receive_some(max_bytes) + except trio.ClosedResourceError as exc: + raise ClosedResourceError from exc.__cause__ + except trio.BrokenResourceError as exc: + raise BrokenResourceError from exc.__cause__ + + if data: + return bytes(data) + else: + raise EndOfStream + + async def aclose(self) -> None: + await self._stream.aclose() + + +@dataclass(eq=False) +class SendStreamWrapper(abc.ByteSendStream): + _stream: trio.abc.SendStream + + async def send(self, item: bytes) -> None: + try: + await self._stream.send_all(item) + except trio.ClosedResourceError as exc: + raise ClosedResourceError from exc.__cause__ + except trio.BrokenResourceError as exc: + raise BrokenResourceError from exc.__cause__ + + async def aclose(self) -> None: + await self._stream.aclose() + + +@dataclass(eq=False) +class Process(abc.Process): + _process: trio.Process + _stdin: abc.ByteSendStream | None + _stdout: abc.ByteReceiveStream | None + _stderr: abc.ByteReceiveStream | None + + async def aclose(self) -> None: + with CancelScope(shield=True): + if self._stdin: + await self._stdin.aclose() + if self._stdout: + await self._stdout.aclose() + if self._stderr: + await self._stderr.aclose() + + try: + await self.wait() + except BaseException: + self.kill() + with CancelScope(shield=True): + await self.wait() + raise + + async def wait(self) -> int: + return await self._process.wait() + + def terminate(self) -> None: + self._process.terminate() + + def kill(self) -> None: + self._process.kill() + + def send_signal(self, signal: Signals) -> None: + self._process.send_signal(signal) + + @property + def pid(self) -> int: + return self._process.pid + + @property + def returncode(self) -> int | None: + return self._process.returncode + + @property + def stdin(self) -> abc.ByteSendStream | None: + return self._stdin + + @property + def stdout(self) -> abc.ByteReceiveStream | None: + return self._stdout + + @property + def stderr(self) -> abc.ByteReceiveStream | None: + return self._stderr + + +class _ProcessPoolShutdownInstrument(trio.abc.Instrument): + def after_run(self) -> None: + super().after_run() + + +current_default_worker_process_limiter: trio.lowlevel.RunVar = RunVar( + "current_default_worker_process_limiter" +) + + +async def _shutdown_process_pool(workers: set[abc.Process]) -> None: + try: + await trio.sleep(math.inf) + except trio.Cancelled: + for process in workers: + if process.returncode is None: + process.kill() + + with CancelScope(shield=True): + for process in workers: + await process.aclose() + + +# +# Sockets and networking +# + + +class _TrioSocketMixin(Generic[T_SockAddr]): + def __init__(self, trio_socket: TrioSocketType) -> None: + self._trio_socket = trio_socket + self._closed = False + + def _check_closed(self) -> None: + if self._closed: + raise ClosedResourceError + if self._trio_socket.fileno() < 0: + raise BrokenResourceError + + @property + def _raw_socket(self) -> socket.socket: + return self._trio_socket._sock # type: ignore[attr-defined] + + async def aclose(self) -> None: + if self._trio_socket.fileno() >= 0: + self._closed = True + self._trio_socket.close() + + def _convert_socket_error(self, exc: BaseException) -> NoReturn: + if isinstance(exc, trio.ClosedResourceError): + raise ClosedResourceError from exc + elif self._trio_socket.fileno() < 0 and self._closed: + raise ClosedResourceError from None + elif isinstance(exc, OSError): + raise BrokenResourceError from exc + else: + raise exc + + +class SocketStream(_TrioSocketMixin, abc.SocketStream): + def __init__(self, trio_socket: TrioSocketType) -> None: + super().__init__(trio_socket) + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + async def receive(self, max_bytes: int = 65536) -> bytes: + with self._receive_guard: + try: + data = await self._trio_socket.recv(max_bytes) + except BaseException as exc: + self._convert_socket_error(exc) + + if data: + return data + else: + raise EndOfStream + + async def send(self, item: bytes) -> None: + with self._send_guard: + view = memoryview(item) + while view: + try: + bytes_sent = await self._trio_socket.send(view) + except BaseException as exc: + self._convert_socket_error(exc) + + view = view[bytes_sent:] + + async def send_eof(self) -> None: + self._trio_socket.shutdown(socket.SHUT_WR) + + +class UNIXSocketStream(SocketStream, abc.UNIXSocketStream): + async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: + if not isinstance(msglen, int) or msglen < 0: + raise ValueError("msglen must be a non-negative integer") + if not isinstance(maxfds, int) or maxfds < 1: + raise ValueError("maxfds must be a positive integer") + + fds = array.array("i") + await trio.lowlevel.checkpoint() + with self._receive_guard: + while True: + try: + message, ancdata, flags, addr = await self._trio_socket.recvmsg( + msglen, socket.CMSG_LEN(maxfds * fds.itemsize) + ) + except BaseException as exc: + self._convert_socket_error(exc) + else: + if not message and not ancdata: + raise EndOfStream + + break + + for cmsg_level, cmsg_type, cmsg_data in ancdata: + if cmsg_level != socket.SOL_SOCKET or cmsg_type != socket.SCM_RIGHTS: + raise RuntimeError( + f"Received unexpected ancillary data; message = {message!r}, " + f"cmsg_level = {cmsg_level}, cmsg_type = {cmsg_type}" + ) + + fds.frombytes(cmsg_data[: len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) + + return message, list(fds) + + async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: + if not message: + raise ValueError("message must not be empty") + if not fds: + raise ValueError("fds must not be empty") + + filenos: list[int] = [] + for fd in fds: + if isinstance(fd, int): + filenos.append(fd) + elif isinstance(fd, IOBase): + filenos.append(fd.fileno()) + + fdarray = array.array("i", filenos) + await trio.lowlevel.checkpoint() + with self._send_guard: + while True: + try: + await self._trio_socket.sendmsg( + [message], + [ + ( + socket.SOL_SOCKET, + socket.SCM_RIGHTS, + fdarray, + ) + ], + ) + break + except BaseException as exc: + self._convert_socket_error(exc) + + +class TCPSocketListener(_TrioSocketMixin, abc.SocketListener): + def __init__(self, raw_socket: socket.socket): + super().__init__(trio.socket.from_stdlib_socket(raw_socket)) + self._accept_guard = ResourceGuard("accepting connections from") + + async def accept(self) -> SocketStream: + with self._accept_guard: + try: + trio_socket, _addr = await self._trio_socket.accept() + except BaseException as exc: + self._convert_socket_error(exc) + + trio_socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) + return SocketStream(trio_socket) + + +class UNIXSocketListener(_TrioSocketMixin, abc.SocketListener): + def __init__(self, raw_socket: socket.socket): + super().__init__(trio.socket.from_stdlib_socket(raw_socket)) + self._accept_guard = ResourceGuard("accepting connections from") + + async def accept(self) -> UNIXSocketStream: + with self._accept_guard: + try: + trio_socket, _addr = await self._trio_socket.accept() + except BaseException as exc: + self._convert_socket_error(exc) + + return UNIXSocketStream(trio_socket) + + +class UDPSocket(_TrioSocketMixin[IPSockAddrType], abc.UDPSocket): + def __init__(self, trio_socket: TrioSocketType) -> None: + super().__init__(trio_socket) + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + async def receive(self) -> tuple[bytes, IPSockAddrType]: + with self._receive_guard: + try: + data, addr = await self._trio_socket.recvfrom(65536) + return data, convert_ipv6_sockaddr(addr) + except BaseException as exc: + self._convert_socket_error(exc) + + async def send(self, item: UDPPacketType) -> None: + with self._send_guard: + try: + await self._trio_socket.sendto(*item) + except BaseException as exc: + self._convert_socket_error(exc) + + +class ConnectedUDPSocket(_TrioSocketMixin[IPSockAddrType], abc.ConnectedUDPSocket): + def __init__(self, trio_socket: TrioSocketType) -> None: + super().__init__(trio_socket) + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + async def receive(self) -> bytes: + with self._receive_guard: + try: + return await self._trio_socket.recv(65536) + except BaseException as exc: + self._convert_socket_error(exc) + + async def send(self, item: bytes) -> None: + with self._send_guard: + try: + await self._trio_socket.send(item) + except BaseException as exc: + self._convert_socket_error(exc) + + +class UNIXDatagramSocket(_TrioSocketMixin[str], abc.UNIXDatagramSocket): + def __init__(self, trio_socket: TrioSocketType) -> None: + super().__init__(trio_socket) + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + async def receive(self) -> UNIXDatagramPacketType: + with self._receive_guard: + try: + data, addr = await self._trio_socket.recvfrom(65536) + return data, addr + except BaseException as exc: + self._convert_socket_error(exc) + + async def send(self, item: UNIXDatagramPacketType) -> None: + with self._send_guard: + try: + await self._trio_socket.sendto(*item) + except BaseException as exc: + self._convert_socket_error(exc) + + +class ConnectedUNIXDatagramSocket( + _TrioSocketMixin[str], abc.ConnectedUNIXDatagramSocket +): + def __init__(self, trio_socket: TrioSocketType) -> None: + super().__init__(trio_socket) + self._receive_guard = ResourceGuard("reading from") + self._send_guard = ResourceGuard("writing to") + + async def receive(self) -> bytes: + with self._receive_guard: + try: + return await self._trio_socket.recv(65536) + except BaseException as exc: + self._convert_socket_error(exc) + + async def send(self, item: bytes) -> None: + with self._send_guard: + try: + await self._trio_socket.send(item) + except BaseException as exc: + self._convert_socket_error(exc) + + +# +# Synchronization +# + + +class Event(BaseEvent): + def __new__(cls) -> Event: + return object.__new__(cls) + + def __init__(self) -> None: + self.__original = trio.Event() + + def is_set(self) -> bool: + return self.__original.is_set() + + async def wait(self) -> None: + return await self.__original.wait() + + def statistics(self) -> EventStatistics: + orig_statistics = self.__original.statistics() + return EventStatistics(tasks_waiting=orig_statistics.tasks_waiting) + + def set(self) -> None: + self.__original.set() + + +class Lock(BaseLock): + def __new__(cls, *, fast_acquire: bool = False) -> Lock: + return object.__new__(cls) + + def __init__(self, *, fast_acquire: bool = False) -> None: + self._fast_acquire = fast_acquire + self.__original = trio.Lock() + + @staticmethod + def _convert_runtime_error_msg(exc: RuntimeError) -> None: + if exc.args == ("attempt to re-acquire an already held Lock",): + exc.args = ("Attempted to acquire an already held Lock",) + + async def acquire(self) -> None: + if not self._fast_acquire: + try: + await self.__original.acquire() + except RuntimeError as exc: + self._convert_runtime_error_msg(exc) + raise + + return + + # This is the "fast path" where we don't let other tasks run + await trio.lowlevel.checkpoint_if_cancelled() + try: + self.__original.acquire_nowait() + except trio.WouldBlock: + await self.__original._lot.park() + except RuntimeError as exc: + self._convert_runtime_error_msg(exc) + raise + + def acquire_nowait(self) -> None: + try: + self.__original.acquire_nowait() + except trio.WouldBlock: + raise WouldBlock from None + except RuntimeError as exc: + self._convert_runtime_error_msg(exc) + raise + + def locked(self) -> bool: + return self.__original.locked() + + def release(self) -> None: + self.__original.release() + + def statistics(self) -> LockStatistics: + orig_statistics = self.__original.statistics() + owner = TrioTaskInfo(orig_statistics.owner) if orig_statistics.owner else None + return LockStatistics( + orig_statistics.locked, owner, orig_statistics.tasks_waiting + ) + + +class Semaphore(BaseSemaphore): + def __new__( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> Semaphore: + return object.__new__(cls) + + def __init__( + self, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> None: + super().__init__(initial_value, max_value=max_value, fast_acquire=fast_acquire) + self.__original = trio.Semaphore(initial_value, max_value=max_value) + + async def acquire(self) -> None: + if not self._fast_acquire: + await self.__original.acquire() + return + + # This is the "fast path" where we don't let other tasks run + await trio.lowlevel.checkpoint_if_cancelled() + try: + self.__original.acquire_nowait() + except trio.WouldBlock: + await self.__original._lot.park() + + def acquire_nowait(self) -> None: + try: + self.__original.acquire_nowait() + except trio.WouldBlock: + raise WouldBlock from None + + @property + def max_value(self) -> int | None: + return self.__original.max_value + + @property + def value(self) -> int: + return self.__original.value + + def release(self) -> None: + self.__original.release() + + def statistics(self) -> SemaphoreStatistics: + orig_statistics = self.__original.statistics() + return SemaphoreStatistics(orig_statistics.tasks_waiting) + + +class CapacityLimiter(BaseCapacityLimiter): + def __new__( + cls, + total_tokens: float | None = None, + *, + original: trio.CapacityLimiter | None = None, + ) -> CapacityLimiter: + return object.__new__(cls) + + def __init__( + self, + total_tokens: float | None = None, + *, + original: trio.CapacityLimiter | None = None, + ) -> None: + if original is not None: + self.__original = original + else: + assert total_tokens is not None + self.__original = trio.CapacityLimiter(total_tokens) + + async def __aenter__(self) -> None: + return await self.__original.__aenter__() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + await self.__original.__aexit__(exc_type, exc_val, exc_tb) + + @property + def total_tokens(self) -> float: + return self.__original.total_tokens + + @total_tokens.setter + def total_tokens(self, value: float) -> None: + self.__original.total_tokens = value + + @property + def borrowed_tokens(self) -> int: + return self.__original.borrowed_tokens + + @property + def available_tokens(self) -> float: + return self.__original.available_tokens + + def acquire_nowait(self) -> None: + self.__original.acquire_nowait() + + def acquire_on_behalf_of_nowait(self, borrower: object) -> None: + self.__original.acquire_on_behalf_of_nowait(borrower) + + async def acquire(self) -> None: + await self.__original.acquire() + + async def acquire_on_behalf_of(self, borrower: object) -> None: + await self.__original.acquire_on_behalf_of(borrower) + + def release(self) -> None: + return self.__original.release() + + def release_on_behalf_of(self, borrower: object) -> None: + return self.__original.release_on_behalf_of(borrower) + + def statistics(self) -> CapacityLimiterStatistics: + orig = self.__original.statistics() + return CapacityLimiterStatistics( + borrowed_tokens=orig.borrowed_tokens, + total_tokens=orig.total_tokens, + borrowers=tuple(orig.borrowers), + tasks_waiting=orig.tasks_waiting, + ) + + +_capacity_limiter_wrapper: trio.lowlevel.RunVar = RunVar("_capacity_limiter_wrapper") + + +# +# Signal handling +# + + +class _SignalReceiver: + _iterator: AsyncIterator[int] + + def __init__(self, signals: tuple[Signals, ...]): + self._signals = signals + + def __enter__(self) -> _SignalReceiver: + self._cm = trio.open_signal_receiver(*self._signals) + self._iterator = self._cm.__enter__() + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool | None: + return self._cm.__exit__(exc_type, exc_val, exc_tb) + + def __aiter__(self) -> _SignalReceiver: + return self + + async def __anext__(self) -> Signals: + signum = await self._iterator.__anext__() + return Signals(signum) + + +# +# Testing and debugging +# + + +class TestRunner(abc.TestRunner): + def __init__(self, **options: Any) -> None: + from queue import Queue + + self._call_queue: Queue[Callable[[], object]] = Queue() + self._send_stream: MemoryObjectSendStream | None = None + self._options = options + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: types.TracebackType | None, + ) -> None: + if self._send_stream: + self._send_stream.close() + while self._send_stream is not None: + self._call_queue.get()() + + async def _run_tests_and_fixtures(self) -> None: + self._send_stream, receive_stream = create_memory_object_stream(1) + with receive_stream: + async for coro, outcome_holder in receive_stream: + try: + retval = await coro + except BaseException as exc: + outcome_holder.append(Error(exc)) + else: + outcome_holder.append(Value(retval)) + + def _main_task_finished(self, outcome: object) -> None: + self._send_stream = None + + def _call_in_runner_task( + self, + func: Callable[P, Awaitable[T_Retval]], + *args: P.args, + **kwargs: P.kwargs, + ) -> T_Retval: + if self._send_stream is None: + trio.lowlevel.start_guest_run( + self._run_tests_and_fixtures, + run_sync_soon_threadsafe=self._call_queue.put, + done_callback=self._main_task_finished, + **self._options, + ) + while self._send_stream is None: + self._call_queue.get()() + + outcome_holder: list[Outcome] = [] + self._send_stream.send_nowait((func(*args, **kwargs), outcome_holder)) + while not outcome_holder: + self._call_queue.get()() + + return outcome_holder[0].unwrap() + + def run_asyncgen_fixture( + self, + fixture_func: Callable[..., AsyncGenerator[T_Retval, Any]], + kwargs: dict[str, Any], + ) -> Iterable[T_Retval]: + asyncgen = fixture_func(**kwargs) + fixturevalue: T_Retval = self._call_in_runner_task(asyncgen.asend, None) + + yield fixturevalue + + try: + self._call_in_runner_task(asyncgen.asend, None) + except StopAsyncIteration: + pass + else: + self._call_in_runner_task(asyncgen.aclose) + raise RuntimeError("Async generator fixture did not stop") + + def run_fixture( + self, + fixture_func: Callable[..., Coroutine[Any, Any, T_Retval]], + kwargs: dict[str, Any], + ) -> T_Retval: + return self._call_in_runner_task(fixture_func, **kwargs) + + def run_test( + self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] + ) -> None: + self._call_in_runner_task(test_func, **kwargs) + + +class TrioTaskInfo(TaskInfo): + def __init__(self, task: trio.lowlevel.Task): + parent_id = None + if task.parent_nursery and task.parent_nursery.parent_task: + parent_id = id(task.parent_nursery.parent_task) + + super().__init__(id(task), parent_id, task.name, task.coro) + self._task = weakref.proxy(task) + + def has_pending_cancellation(self) -> bool: + try: + return self._task._cancel_status.effectively_cancelled + except ReferenceError: + # If the task is no longer around, it surely doesn't have a cancellation + # pending + return False + + +class TrioBackend(AsyncBackend): + @classmethod + def run( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + options: dict[str, Any], + ) -> T_Retval: + return trio.run(func, *args) + + @classmethod + def current_token(cls) -> object: + return trio.lowlevel.current_trio_token() + + @classmethod + def current_time(cls) -> float: + return trio.current_time() + + @classmethod + def cancelled_exception_class(cls) -> type[BaseException]: + return trio.Cancelled + + @classmethod + async def checkpoint(cls) -> None: + await trio.lowlevel.checkpoint() + + @classmethod + async def checkpoint_if_cancelled(cls) -> None: + await trio.lowlevel.checkpoint_if_cancelled() + + @classmethod + async def cancel_shielded_checkpoint(cls) -> None: + await trio.lowlevel.cancel_shielded_checkpoint() + + @classmethod + async def sleep(cls, delay: float) -> None: + await trio.sleep(delay) + + @classmethod + def create_cancel_scope( + cls, *, deadline: float = math.inf, shield: bool = False + ) -> abc.CancelScope: + return CancelScope(deadline=deadline, shield=shield) + + @classmethod + def current_effective_deadline(cls) -> float: + return trio.current_effective_deadline() + + @classmethod + def create_task_group(cls) -> abc.TaskGroup: + return TaskGroup() + + @classmethod + def create_event(cls) -> abc.Event: + return Event() + + @classmethod + def create_lock(cls, *, fast_acquire: bool) -> Lock: + return Lock(fast_acquire=fast_acquire) + + @classmethod + def create_semaphore( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> abc.Semaphore: + return Semaphore(initial_value, max_value=max_value, fast_acquire=fast_acquire) + + @classmethod + def create_capacity_limiter(cls, total_tokens: float) -> CapacityLimiter: + return CapacityLimiter(total_tokens) + + @classmethod + async def run_sync_in_worker_thread( + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + abandon_on_cancel: bool = False, + limiter: abc.CapacityLimiter | None = None, + ) -> T_Retval: + def wrapper() -> T_Retval: + with claim_worker_thread(TrioBackend, token): + return func(*args) + + token = TrioBackend.current_token() + return await run_sync( + wrapper, + abandon_on_cancel=abandon_on_cancel, + limiter=cast(trio.CapacityLimiter, limiter), + ) + + @classmethod + def check_cancelled(cls) -> None: + trio.from_thread.check_cancelled() + + @classmethod + def run_async_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + trio_token = cast("trio.lowlevel.TrioToken | None", token) + try: + return trio.from_thread.run(func, *args, trio_token=trio_token) + except trio.RunFinishedError: + raise RunFinishedError from None + + @classmethod + def run_sync_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + trio_token = cast("trio.lowlevel.TrioToken | None", token) + try: + return trio.from_thread.run_sync(func, *args, trio_token=trio_token) + except trio.RunFinishedError: + raise RunFinishedError from None + + @classmethod + def create_blocking_portal(cls) -> abc.BlockingPortal: + return BlockingPortal() + + @classmethod + async def open_process( + cls, + command: StrOrBytesPath | Sequence[StrOrBytesPath], + *, + stdin: int | IO[Any] | None, + stdout: int | IO[Any] | None, + stderr: int | IO[Any] | None, + **kwargs: Any, + ) -> Process: + def convert_item(item: StrOrBytesPath) -> str: + str_or_bytes = os.fspath(item) + if isinstance(str_or_bytes, str): + return str_or_bytes + else: + return os.fsdecode(str_or_bytes) + + if isinstance(command, (str, bytes, PathLike)): + process = await trio.lowlevel.open_process( + convert_item(command), + stdin=stdin, + stdout=stdout, + stderr=stderr, + shell=True, + **kwargs, + ) + else: + process = await trio.lowlevel.open_process( + [convert_item(item) for item in command], + stdin=stdin, + stdout=stdout, + stderr=stderr, + shell=False, + **kwargs, + ) + + stdin_stream = SendStreamWrapper(process.stdin) if process.stdin else None + stdout_stream = ReceiveStreamWrapper(process.stdout) if process.stdout else None + stderr_stream = ReceiveStreamWrapper(process.stderr) if process.stderr else None + return Process(process, stdin_stream, stdout_stream, stderr_stream) + + @classmethod + def setup_process_pool_exit_at_shutdown(cls, workers: set[abc.Process]) -> None: + trio.lowlevel.spawn_system_task(_shutdown_process_pool, workers) + + @classmethod + async def connect_tcp( + cls, host: str, port: int, local_address: IPSockAddrType | None = None + ) -> SocketStream: + family = socket.AF_INET6 if ":" in host else socket.AF_INET + trio_socket = trio.socket.socket(family) + trio_socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) + if local_address: + await trio_socket.bind(local_address) + + try: + await trio_socket.connect((host, port)) + except BaseException: + trio_socket.close() + raise + + return SocketStream(trio_socket) + + @classmethod + async def connect_unix(cls, path: str | bytes) -> abc.UNIXSocketStream: + trio_socket = trio.socket.socket(socket.AF_UNIX) + try: + await trio_socket.connect(path) + except BaseException: + trio_socket.close() + raise + + return UNIXSocketStream(trio_socket) + + @classmethod + def create_tcp_listener(cls, sock: socket.socket) -> abc.SocketListener: + return TCPSocketListener(sock) + + @classmethod + def create_unix_listener(cls, sock: socket.socket) -> abc.SocketListener: + return UNIXSocketListener(sock) + + @classmethod + async def create_udp_socket( + cls, + family: socket.AddressFamily, + local_address: IPSockAddrType | None, + remote_address: IPSockAddrType | None, + reuse_port: bool, + ) -> UDPSocket | ConnectedUDPSocket: + trio_socket = trio.socket.socket(family=family, type=socket.SOCK_DGRAM) + + if reuse_port: + trio_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) + + if local_address: + await trio_socket.bind(local_address) + + if remote_address: + await trio_socket.connect(remote_address) + return ConnectedUDPSocket(trio_socket) + else: + return UDPSocket(trio_socket) + + @classmethod + @overload + async def create_unix_datagram_socket( + cls, raw_socket: socket.socket, remote_path: None + ) -> abc.UNIXDatagramSocket: ... + + @classmethod + @overload + async def create_unix_datagram_socket( + cls, raw_socket: socket.socket, remote_path: str | bytes + ) -> abc.ConnectedUNIXDatagramSocket: ... + + @classmethod + async def create_unix_datagram_socket( + cls, raw_socket: socket.socket, remote_path: str | bytes | None + ) -> abc.UNIXDatagramSocket | abc.ConnectedUNIXDatagramSocket: + trio_socket = trio.socket.from_stdlib_socket(raw_socket) + + if remote_path: + await trio_socket.connect(remote_path) + return ConnectedUNIXDatagramSocket(trio_socket) + else: + return UNIXDatagramSocket(trio_socket) + + @classmethod + async def getaddrinfo( + cls, + host: bytes | str | None, + port: str | int | None, + *, + family: int | AddressFamily = 0, + type: int | SocketKind = 0, + proto: int = 0, + flags: int = 0, + ) -> Sequence[ + tuple[ + AddressFamily, + SocketKind, + int, + str, + tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], + ] + ]: + return await trio.socket.getaddrinfo(host, port, family, type, proto, flags) + + @classmethod + async def getnameinfo( + cls, sockaddr: IPSockAddrType, flags: int = 0 + ) -> tuple[str, str]: + return await trio.socket.getnameinfo(sockaddr, flags) + + @classmethod + async def wait_readable(cls, obj: FileDescriptorLike) -> None: + try: + await wait_readable(obj) + except trio.ClosedResourceError as exc: + raise ClosedResourceError().with_traceback(exc.__traceback__) from None + except trio.BusyResourceError: + raise BusyResourceError("reading from") from None + + @classmethod + async def wait_writable(cls, obj: FileDescriptorLike) -> None: + try: + await wait_writable(obj) + except trio.ClosedResourceError as exc: + raise ClosedResourceError().with_traceback(exc.__traceback__) from None + except trio.BusyResourceError: + raise BusyResourceError("writing to") from None + + @classmethod + def notify_closing(cls, obj: FileDescriptorLike) -> None: + notify_closing(obj) + + @classmethod + async def wrap_listener_socket(cls, sock: socket.socket) -> abc.SocketListener: + return TCPSocketListener(sock) + + @classmethod + async def wrap_stream_socket(cls, sock: socket.socket) -> SocketStream: + trio_sock = trio.socket.from_stdlib_socket(sock) + return SocketStream(trio_sock) + + @classmethod + async def wrap_unix_stream_socket(cls, sock: socket.socket) -> UNIXSocketStream: + trio_sock = trio.socket.from_stdlib_socket(sock) + return UNIXSocketStream(trio_sock) + + @classmethod + async def wrap_udp_socket(cls, sock: socket.socket) -> UDPSocket: + trio_sock = trio.socket.from_stdlib_socket(sock) + return UDPSocket(trio_sock) + + @classmethod + async def wrap_connected_udp_socket(cls, sock: socket.socket) -> ConnectedUDPSocket: + trio_sock = trio.socket.from_stdlib_socket(sock) + return ConnectedUDPSocket(trio_sock) + + @classmethod + async def wrap_unix_datagram_socket(cls, sock: socket.socket) -> UNIXDatagramSocket: + trio_sock = trio.socket.from_stdlib_socket(sock) + return UNIXDatagramSocket(trio_sock) + + @classmethod + async def wrap_connected_unix_datagram_socket( + cls, sock: socket.socket + ) -> ConnectedUNIXDatagramSocket: + trio_sock = trio.socket.from_stdlib_socket(sock) + return ConnectedUNIXDatagramSocket(trio_sock) + + @classmethod + def current_default_thread_limiter(cls) -> CapacityLimiter: + try: + return _capacity_limiter_wrapper.get() + except LookupError: + limiter = CapacityLimiter( + original=trio.to_thread.current_default_thread_limiter() + ) + _capacity_limiter_wrapper.set(limiter) + return limiter + + @classmethod + def open_signal_receiver( + cls, *signals: Signals + ) -> AbstractContextManager[AsyncIterator[Signals]]: + return _SignalReceiver(signals) + + @classmethod + def get_current_task(cls) -> TaskInfo: + task = current_task() + return TrioTaskInfo(task) + + @classmethod + def get_running_tasks(cls) -> Sequence[TaskInfo]: + root_task = current_root_task() + assert root_task + task_infos = [TrioTaskInfo(root_task)] + nurseries = root_task.child_nurseries + while nurseries: + new_nurseries: list[trio.Nursery] = [] + for nursery in nurseries: + for task in nursery.child_tasks: + task_infos.append(TrioTaskInfo(task)) + new_nurseries.extend(task.child_nurseries) + + nurseries = new_nurseries + + return task_infos + + @classmethod + async def wait_all_tasks_blocked(cls) -> None: + from trio.testing import wait_all_tasks_blocked + + await wait_all_tasks_blocked() + + @classmethod + def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: + return TestRunner(**options) + + +backend_class = TrioBackend diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__init__.py b/ocr/.venv/Lib/site-packages/anyio/_core/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6cac59848f041d177adfd1c708a4149fcc26c13 GIT binary patch literal 182 zcmd1j<>g`k0Gw;(Y& zJ25@AI3_W#GBaO4J~_WARX;vHGcU6wK3=b&@)n0pZhlH>PO2Tq%3>xU!NLFlWNI#E literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86f3281c1d605d04fd6bfc68920aeb0798d42488 GIT binary patch literal 4112 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 bMp-Fqlj;myK+LISt)k9l=JZN#>Vy9P^c<)w literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..388d80254052f02928db20d65d00b00e9b11a2b2 GIT binary patch literal 4806 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 QRH~I4+JaH3>h0mje?!T0)2sB1btDQ#{3!3 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97b0eae2ddbadae92041ae8c4f095102a66ba532 GIT binary patch literal 26956 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 BVSoSt literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c58f0980888fd66b12ea9e5810ec1edb997505fe GIT binary patch literal 28936 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..652604c7aee617e7c61e65add25eedd8b64e3702 GIT binary patch literal 1993 zcmb7FUvJz*5ck^m$LCzqD5_dQ5n7-UIjOjPC@&|3TBQggK_Zb*RQH18c<1h%*z03= zoscNJkiPQDci=1em8X7%3aQN4&gqheNcfb=?s#_QH#5H-=gZ5Ug^%~wTGH=Y)<3ja zd{AdSvn-}lTnJ0B)XG@E7_IHp4s87Iq)yffT9vMqwzE#q!F5}7(r)GkZq^HWnHPA> zf|lrBvS8_3OSq!<#u7c~Ll2hLEpSPW?RD$Y36_PuYYn`&gk!+UrAW%$L?+3l-o|}* z?`#GyBZbS>X{6*^o9vu&{RhZ$b+&VO1hM%MVn|M4*C>dx^4{XBU67*D-@m4>Y(r!SsC$&*JivnquHtGwg;elFa)Xd+ zLtaRer2ODOV`Vo62L}i>Qbt!mD8s`vkB<{Msgc!jD2b4g81ft)oXB&Z~=3oy>rJPHOiwVpg|h#WLW;!J6mOa5G*ZSC- zxItBFn)!%hbmD2VZ@?*r?Ak8x+~`Hw9;bO^%HF(oWv3=f*{K7)`>qP}`Wmh0bieBO zBfj|l+D*AK*^eEBaP<)D+xWLh%>M-!7tB~k?ATE&#>TaCY3mi!66})w!7iAvk1cf% z_fECP5m7MpiD`?L>CjmC(_xnB8h0K2T(aLC)4M=RL+qs74H1gn`iNwAQ9-agb9-51kMfJsCgZEq$WiM((q}d(GKJS zGl=XBdHg4S#f$&Pia93~6%oglhg6M^Q#gTiuvE4Ped!?l(n~b)Cz3Ic!j#_2C@tU{ zrE;aH3+392hOsyef5zd5#x*qVir9Q;nyH}gT z5fWVK(a{m)ax!`W`q<>N(asFeZ<>M$pKp!wSdIJ>kSC+>lf#k5dVMiNM^cyb&yS@yA zPMu319aagc6yLWTxrC1OT zXiJ|%a;T}QuGMnvwbl2P76&>y9v66{(Xpbhj#@)ec5sYQALz=IE`5@4r>lMiE6o)1 y>)~ECr*6}{Yh}B-v{j4+G!;04RJvc)*?di7K~u=S<=TDLXLoJ4<2h^0eg7Xf{zLEp literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2100e2bae6ed105496a28d289b93980b41cdef7 GIT binary patch literal 7656 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 OuPtx1X16r;&;I~SAgpTu literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23d3c6ee734debcdfebf4beee05ff2763db66cb1 GIT binary patch literal 24503 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 IV|sG(zt8#D3;+NC literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..200026c42b178f0825a971c5e454ffb5c1a431e6 GIT binary patch literal 19360 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 I7#}MB58(eU82|tP literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4e0605757286dd69e103ccd21b0204a42fb2f34 GIT binary patch literal 2917 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 F=YMdzSj+$b literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py b/ocr/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py new file mode 100644 index 00000000..9f35bae5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py @@ -0,0 +1,167 @@ +from __future__ import annotations + +import asyncio +import socket +import threading +from collections.abc import Callable +from selectors import EVENT_READ, EVENT_WRITE, DefaultSelector +from typing import TYPE_CHECKING, Any + +if TYPE_CHECKING: + from _typeshed import FileDescriptorLike + +_selector_lock = threading.Lock() +_selector: Selector | None = None + + +class Selector: + def __init__(self) -> None: + self._thread = threading.Thread(target=self.run, name="AnyIO socket selector") + self._selector = DefaultSelector() + self._send, self._receive = socket.socketpair() + self._send.setblocking(False) + self._receive.setblocking(False) + # This somewhat reduces the amount of memory wasted queueing up data + # for wakeups. With these settings, maximum number of 1-byte sends + # before getting BlockingIOError: + # Linux 4.8: 6 + # macOS (darwin 15.5): 1 + # Windows 10: 525347 + # Windows you're weird. (And on Windows setting SNDBUF to 0 makes send + # blocking, even on non-blocking sockets, so don't do that.) + self._receive.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 1) + self._send.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 1) + # On Windows this is a TCP socket so this might matter. On other + # platforms this fails b/c AF_UNIX sockets aren't actually TCP. + try: + self._send.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) + except OSError: + pass + + self._selector.register(self._receive, EVENT_READ) + self._closed = False + + def start(self) -> None: + self._thread.start() + threading._register_atexit(self._stop) # type: ignore[attr-defined] + + def _stop(self) -> None: + global _selector + self._closed = True + self._notify_self() + self._send.close() + self._thread.join() + self._selector.unregister(self._receive) + self._receive.close() + self._selector.close() + _selector = None + assert not self._selector.get_map(), ( + "selector still has registered file descriptors after shutdown" + ) + + def _notify_self(self) -> None: + try: + self._send.send(b"\x00") + except BlockingIOError: + pass + + def add_reader(self, fd: FileDescriptorLike, callback: Callable[[], Any]) -> None: + loop = asyncio.get_running_loop() + try: + key = self._selector.get_key(fd) + except KeyError: + self._selector.register(fd, EVENT_READ, {EVENT_READ: (loop, callback)}) + else: + if EVENT_READ in key.data: + raise ValueError( + "this file descriptor is already registered for reading" + ) + + key.data[EVENT_READ] = loop, callback + self._selector.modify(fd, key.events | EVENT_READ, key.data) + + self._notify_self() + + def add_writer(self, fd: FileDescriptorLike, callback: Callable[[], Any]) -> None: + loop = asyncio.get_running_loop() + try: + key = self._selector.get_key(fd) + except KeyError: + self._selector.register(fd, EVENT_WRITE, {EVENT_WRITE: (loop, callback)}) + else: + if EVENT_WRITE in key.data: + raise ValueError( + "this file descriptor is already registered for writing" + ) + + key.data[EVENT_WRITE] = loop, callback + self._selector.modify(fd, key.events | EVENT_WRITE, key.data) + + self._notify_self() + + def remove_reader(self, fd: FileDescriptorLike) -> bool: + try: + key = self._selector.get_key(fd) + except KeyError: + return False + + if new_events := key.events ^ EVENT_READ: + del key.data[EVENT_READ] + self._selector.modify(fd, new_events, key.data) + else: + self._selector.unregister(fd) + + return True + + def remove_writer(self, fd: FileDescriptorLike) -> bool: + try: + key = self._selector.get_key(fd) + except KeyError: + return False + + if new_events := key.events ^ EVENT_WRITE: + del key.data[EVENT_WRITE] + self._selector.modify(fd, new_events, key.data) + else: + self._selector.unregister(fd) + + return True + + def run(self) -> None: + while not self._closed: + for key, events in self._selector.select(): + if key.fileobj is self._receive: + try: + while self._receive.recv(4096): + pass + except BlockingIOError: + pass + + continue + + if events & EVENT_READ: + loop, callback = key.data[EVENT_READ] + self.remove_reader(key.fd) + try: + loop.call_soon_threadsafe(callback) + except RuntimeError: + pass # the loop was already closed + + if events & EVENT_WRITE: + loop, callback = key.data[EVENT_WRITE] + self.remove_writer(key.fd) + try: + loop.call_soon_threadsafe(callback) + except RuntimeError: + pass # the loop was already closed + + +def get_selector() -> Selector: + global _selector + + with _selector_lock: + if _selector is None: + _selector = Selector() + _selector.start() + + return _selector diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py b/ocr/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py new file mode 100644 index 00000000..302f32b0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py @@ -0,0 +1,200 @@ +from __future__ import annotations + +from abc import abstractmethod +from contextlib import AbstractAsyncContextManager, AbstractContextManager +from inspect import isasyncgen, iscoroutine, isgenerator +from types import TracebackType +from typing import Protocol, TypeVar, cast, final + +_T_co = TypeVar("_T_co", covariant=True) +_ExitT_co = TypeVar("_ExitT_co", covariant=True, bound="bool | None") + + +class _SupportsCtxMgr(Protocol[_T_co, _ExitT_co]): + def __contextmanager__(self) -> AbstractContextManager[_T_co, _ExitT_co]: ... + + +class _SupportsAsyncCtxMgr(Protocol[_T_co, _ExitT_co]): + def __asynccontextmanager__( + self, + ) -> AbstractAsyncContextManager[_T_co, _ExitT_co]: ... + + +class ContextManagerMixin: + """ + Mixin class providing context manager functionality via a generator-based + implementation. + + This class allows you to implement a context manager via :meth:`__contextmanager__` + which should return a generator. The mechanics are meant to mirror those of + :func:`@contextmanager `. + + .. note:: Classes using this mix-in are not reentrant as context managers, meaning + that once you enter it, you can't re-enter before first exiting it. + + .. seealso:: :doc:`contextmanagers` + """ + + __cm: AbstractContextManager[object, bool | None] | None = None + + @final + def __enter__(self: _SupportsCtxMgr[_T_co, bool | None]) -> _T_co: + # Needed for mypy to assume self still has the __cm member + assert isinstance(self, ContextManagerMixin) + if self.__cm is not None: + raise RuntimeError( + f"this {self.__class__.__qualname__} has already been entered" + ) + + cm = self.__contextmanager__() + if not isinstance(cm, AbstractContextManager): + if isgenerator(cm): + raise TypeError( + "__contextmanager__() returned a generator object instead of " + "a context manager. Did you forget to add the @contextmanager " + "decorator?" + ) + + raise TypeError( + f"__contextmanager__() did not return a context manager object, " + f"but {cm.__class__!r}" + ) + + if cm is self: + raise TypeError( + f"{self.__class__.__qualname__}.__contextmanager__() returned " + f"self. Did you forget to add the @contextmanager decorator and a " + f"'yield' statement?" + ) + + value = cm.__enter__() + self.__cm = cm + return value + + @final + def __exit__( + self: _SupportsCtxMgr[object, _ExitT_co], + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> _ExitT_co: + # Needed for mypy to assume self still has the __cm member + assert isinstance(self, ContextManagerMixin) + if self.__cm is None: + raise RuntimeError( + f"this {self.__class__.__qualname__} has not been entered yet" + ) + + # Prevent circular references + cm = self.__cm + del self.__cm + + return cast(_ExitT_co, cm.__exit__(exc_type, exc_val, exc_tb)) + + @abstractmethod + def __contextmanager__(self) -> AbstractContextManager[object, bool | None]: + """ + Implement your context manager logic here. + + This method **must** be decorated with + :func:`@contextmanager `. + + .. note:: Remember that the ``yield`` will raise any exception raised in the + enclosed context block, so use a ``finally:`` block to clean up resources! + + :return: a context manager object + """ + + +class AsyncContextManagerMixin: + """ + Mixin class providing async context manager functionality via a generator-based + implementation. + + This class allows you to implement a context manager via + :meth:`__asynccontextmanager__`. The mechanics are meant to mirror those of + :func:`@asynccontextmanager `. + + .. note:: Classes using this mix-in are not reentrant as context managers, meaning + that once you enter it, you can't re-enter before first exiting it. + + .. seealso:: :doc:`contextmanagers` + """ + + __cm: AbstractAsyncContextManager[object, bool | None] | None = None + + @final + async def __aenter__(self: _SupportsAsyncCtxMgr[_T_co, bool | None]) -> _T_co: + # Needed for mypy to assume self still has the __cm member + assert isinstance(self, AsyncContextManagerMixin) + if self.__cm is not None: + raise RuntimeError( + f"this {self.__class__.__qualname__} has already been entered" + ) + + cm = self.__asynccontextmanager__() + if not isinstance(cm, AbstractAsyncContextManager): + if isasyncgen(cm): + raise TypeError( + "__asynccontextmanager__() returned an async generator instead of " + "an async context manager. Did you forget to add the " + "@asynccontextmanager decorator?" + ) + elif iscoroutine(cm): + cm.close() + raise TypeError( + "__asynccontextmanager__() returned a coroutine object instead of " + "an async context manager. Did you forget to add the " + "@asynccontextmanager decorator and a 'yield' statement?" + ) + + raise TypeError( + f"__asynccontextmanager__() did not return an async context manager, " + f"but {cm.__class__!r}" + ) + + if cm is self: + raise TypeError( + f"{self.__class__.__qualname__}.__asynccontextmanager__() returned " + f"self. Did you forget to add the @asynccontextmanager decorator and a " + f"'yield' statement?" + ) + + value = await cm.__aenter__() + self.__cm = cm + return value + + @final + async def __aexit__( + self: _SupportsAsyncCtxMgr[object, _ExitT_co], + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> _ExitT_co: + assert isinstance(self, AsyncContextManagerMixin) + if self.__cm is None: + raise RuntimeError( + f"this {self.__class__.__qualname__} has not been entered yet" + ) + + # Prevent circular references + cm = self.__cm + del self.__cm + + return cast(_ExitT_co, await cm.__aexit__(exc_type, exc_val, exc_tb)) + + @abstractmethod + def __asynccontextmanager__( + self, + ) -> AbstractAsyncContextManager[object, bool | None]: + """ + Implement your async context manager logic here. + + This method **must** be decorated with + :func:`@asynccontextmanager `. + + .. note:: Remember that the ``yield`` will raise any exception raised in the + enclosed context block, so use a ``finally:`` block to clean up resources! + + :return: an async context manager object + """ diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_eventloop.py b/ocr/.venv/Lib/site-packages/anyio/_core/_eventloop.py new file mode 100644 index 00000000..7ffdc8af --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_eventloop.py @@ -0,0 +1,166 @@ +from __future__ import annotations + +import math +import sys +import threading +from collections.abc import Awaitable, Callable, Generator +from contextlib import contextmanager +from importlib import import_module +from typing import TYPE_CHECKING, Any, TypeVar + +import sniffio + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +if TYPE_CHECKING: + from ..abc import AsyncBackend + +# This must be updated when new backends are introduced +BACKENDS = "asyncio", "trio" + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") + +threadlocals = threading.local() +loaded_backends: dict[str, type[AsyncBackend]] = {} + + +def run( + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + *args: Unpack[PosArgsT], + backend: str = "asyncio", + backend_options: dict[str, Any] | None = None, +) -> T_Retval: + """ + Run the given coroutine function in an asynchronous event loop. + + The current thread must not be already running an event loop. + + :param func: a coroutine function + :param args: positional arguments to ``func`` + :param backend: name of the asynchronous event loop implementation – currently + either ``asyncio`` or ``trio`` + :param backend_options: keyword arguments to call the backend ``run()`` + implementation with (documented :ref:`here `) + :return: the return value of the coroutine function + :raises RuntimeError: if an asynchronous event loop is already running in this + thread + :raises LookupError: if the named backend is not found + + """ + try: + asynclib_name = sniffio.current_async_library() + except sniffio.AsyncLibraryNotFoundError: + pass + else: + raise RuntimeError(f"Already running {asynclib_name} in this thread") + + try: + async_backend = get_async_backend(backend) + except ImportError as exc: + raise LookupError(f"No such backend: {backend}") from exc + + token = None + if sniffio.current_async_library_cvar.get(None) is None: + # Since we're in control of the event loop, we can cache the name of the async + # library + token = sniffio.current_async_library_cvar.set(backend) + + try: + backend_options = backend_options or {} + return async_backend.run(func, args, {}, backend_options) + finally: + if token: + sniffio.current_async_library_cvar.reset(token) + + +async def sleep(delay: float) -> None: + """ + Pause the current task for the specified duration. + + :param delay: the duration, in seconds + + """ + return await get_async_backend().sleep(delay) + + +async def sleep_forever() -> None: + """ + Pause the current task until it's cancelled. + + This is a shortcut for ``sleep(math.inf)``. + + .. versionadded:: 3.1 + + """ + await sleep(math.inf) + + +async def sleep_until(deadline: float) -> None: + """ + Pause the current task until the given time. + + :param deadline: the absolute time to wake up at (according to the internal + monotonic clock of the event loop) + + .. versionadded:: 3.1 + + """ + now = current_time() + await sleep(max(deadline - now, 0)) + + +def current_time() -> float: + """ + Return the current value of the event loop's internal clock. + + :return: the clock value (seconds) + + """ + return get_async_backend().current_time() + + +def get_all_backends() -> tuple[str, ...]: + """Return a tuple of the names of all built-in backends.""" + return BACKENDS + + +def get_cancelled_exc_class() -> type[BaseException]: + """Return the current async library's cancellation exception class.""" + return get_async_backend().cancelled_exception_class() + + +# +# Private API +# + + +@contextmanager +def claim_worker_thread( + backend_class: type[AsyncBackend], token: object +) -> Generator[Any, None, None]: + from ..lowlevel import EventLoopToken + + threadlocals.current_token = EventLoopToken(backend_class, token) + try: + yield + finally: + del threadlocals.current_token + + +def get_async_backend(asynclib_name: str | None = None) -> type[AsyncBackend]: + if asynclib_name is None: + asynclib_name = sniffio.current_async_library() + + # We use our own dict instead of sys.modules to get the already imported back-end + # class because the appropriate modules in sys.modules could potentially be only + # partially initialized + try: + return loaded_backends[asynclib_name] + except KeyError: + module = import_module(f"anyio._backends._{asynclib_name}") + loaded_backends[asynclib_name] = module.backend_class + return module.backend_class diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_exceptions.py b/ocr/.venv/Lib/site-packages/anyio/_core/_exceptions.py new file mode 100644 index 00000000..5f123d7e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_exceptions.py @@ -0,0 +1,153 @@ +from __future__ import annotations + +import sys +from collections.abc import Generator +from textwrap import dedent +from typing import Any + +if sys.version_info < (3, 11): + from exceptiongroup import BaseExceptionGroup + + +class BrokenResourceError(Exception): + """ + Raised when trying to use a resource that has been rendered unusable due to external + causes (e.g. a send stream whose peer has disconnected). + """ + + +class BrokenWorkerProcess(Exception): + """ + Raised by :meth:`~anyio.to_process.run_sync` if the worker process terminates abruptly or + otherwise misbehaves. + """ + + +class BrokenWorkerInterpreter(Exception): + """ + Raised by :meth:`~anyio.to_interpreter.run_sync` if an unexpected exception is + raised in the subinterpreter. + """ + + def __init__(self, excinfo: Any): + # This was adapted from concurrent.futures.interpreter.ExecutionFailed + msg = excinfo.formatted + if not msg: + if excinfo.type and excinfo.msg: + msg = f"{excinfo.type.__name__}: {excinfo.msg}" + else: + msg = excinfo.type.__name__ or excinfo.msg + + super().__init__(msg) + self.excinfo = excinfo + + def __str__(self) -> str: + try: + formatted = self.excinfo.errdisplay + except Exception: + return super().__str__() + else: + return dedent( + f""" + {super().__str__()} + + Uncaught in the interpreter: + + {formatted} + """.strip() + ) + + +class BusyResourceError(Exception): + """ + Raised when two tasks are trying to read from or write to the same resource + concurrently. + """ + + def __init__(self, action: str): + super().__init__(f"Another task is already {action} this resource") + + +class ClosedResourceError(Exception): + """Raised when trying to use a resource that has been closed.""" + + +class ConnectionFailed(OSError): + """ + Raised when a connection attempt fails. + + .. note:: This class inherits from :exc:`OSError` for backwards compatibility. + """ + + +def iterate_exceptions( + exception: BaseException, +) -> Generator[BaseException, None, None]: + if isinstance(exception, BaseExceptionGroup): + for exc in exception.exceptions: + yield from iterate_exceptions(exc) + else: + yield exception + + +class DelimiterNotFound(Exception): + """ + Raised during + :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the + maximum number of bytes has been read without the delimiter being found. + """ + + def __init__(self, max_bytes: int) -> None: + super().__init__( + f"The delimiter was not found among the first {max_bytes} bytes" + ) + + +class EndOfStream(Exception): + """ + Raised when trying to read from a stream that has been closed from the other end. + """ + + +class IncompleteRead(Exception): + """ + Raised during + :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_exactly` or + :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the + connection is closed before the requested amount of bytes has been read. + """ + + def __init__(self) -> None: + super().__init__( + "The stream was closed before the read operation could be completed" + ) + + +class TypedAttributeLookupError(LookupError): + """ + Raised by :meth:`~anyio.TypedAttributeProvider.extra` when the given typed attribute + is not found and no default value has been given. + """ + + +class WouldBlock(Exception): + """Raised by ``X_nowait`` functions if ``X()`` would block.""" + + +class NoEventLoopError(RuntimeError): + """ + Raised by :func:`.from_thread.run` and :func:`.from_thread.run_sync` if + not calling from an AnyIO worker thread, and no ``token`` was passed. + """ + + +class RunFinishedError(RuntimeError): + """ + Raised by :func:`.from_thread.run` and :func:`.from_thread.run_sync` if the event + loop associated with the explicitly passed token has already finished. + """ + + def __init__(self) -> None: + super().__init__( + "The event loop associated with the given token has already finished" + ) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_fileio.py b/ocr/.venv/Lib/site-packages/anyio/_core/_fileio.py new file mode 100644 index 00000000..2eae029e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_fileio.py @@ -0,0 +1,740 @@ +from __future__ import annotations + +import os +import pathlib +import sys +from collections.abc import ( + AsyncIterator, + Callable, + Iterable, + Iterator, + Sequence, +) +from dataclasses import dataclass +from functools import partial +from os import PathLike +from typing import ( + IO, + TYPE_CHECKING, + Any, + AnyStr, + ClassVar, + Final, + Generic, + overload, +) + +from .. import to_thread +from ..abc import AsyncResource + +if TYPE_CHECKING: + from types import ModuleType + + from _typeshed import OpenBinaryMode, OpenTextMode, ReadableBuffer, WriteableBuffer +else: + ReadableBuffer = OpenBinaryMode = OpenTextMode = WriteableBuffer = object + + +class AsyncFile(AsyncResource, Generic[AnyStr]): + """ + An asynchronous file object. + + This class wraps a standard file object and provides async friendly versions of the + following blocking methods (where available on the original file object): + + * read + * read1 + * readline + * readlines + * readinto + * readinto1 + * write + * writelines + * truncate + * seek + * tell + * flush + + All other methods are directly passed through. + + This class supports the asynchronous context manager protocol which closes the + underlying file at the end of the context block. + + This class also supports asynchronous iteration:: + + async with await open_file(...) as f: + async for line in f: + print(line) + """ + + def __init__(self, fp: IO[AnyStr]) -> None: + self._fp: Any = fp + + def __getattr__(self, name: str) -> object: + return getattr(self._fp, name) + + @property + def wrapped(self) -> IO[AnyStr]: + """The wrapped file object.""" + return self._fp + + async def __aiter__(self) -> AsyncIterator[AnyStr]: + while True: + line = await self.readline() + if line: + yield line + else: + break + + async def aclose(self) -> None: + return await to_thread.run_sync(self._fp.close) + + async def read(self, size: int = -1) -> AnyStr: + return await to_thread.run_sync(self._fp.read, size) + + async def read1(self: AsyncFile[bytes], size: int = -1) -> bytes: + return await to_thread.run_sync(self._fp.read1, size) + + async def readline(self) -> AnyStr: + return await to_thread.run_sync(self._fp.readline) + + async def readlines(self) -> list[AnyStr]: + return await to_thread.run_sync(self._fp.readlines) + + async def readinto(self: AsyncFile[bytes], b: WriteableBuffer) -> int: + return await to_thread.run_sync(self._fp.readinto, b) + + async def readinto1(self: AsyncFile[bytes], b: WriteableBuffer) -> int: + return await to_thread.run_sync(self._fp.readinto1, b) + + @overload + async def write(self: AsyncFile[bytes], b: ReadableBuffer) -> int: ... + + @overload + async def write(self: AsyncFile[str], b: str) -> int: ... + + async def write(self, b: ReadableBuffer | str) -> int: + return await to_thread.run_sync(self._fp.write, b) + + @overload + async def writelines( + self: AsyncFile[bytes], lines: Iterable[ReadableBuffer] + ) -> None: ... + + @overload + async def writelines(self: AsyncFile[str], lines: Iterable[str]) -> None: ... + + async def writelines(self, lines: Iterable[ReadableBuffer] | Iterable[str]) -> None: + return await to_thread.run_sync(self._fp.writelines, lines) + + async def truncate(self, size: int | None = None) -> int: + return await to_thread.run_sync(self._fp.truncate, size) + + async def seek(self, offset: int, whence: int | None = os.SEEK_SET) -> int: + return await to_thread.run_sync(self._fp.seek, offset, whence) + + async def tell(self) -> int: + return await to_thread.run_sync(self._fp.tell) + + async def flush(self) -> None: + return await to_thread.run_sync(self._fp.flush) + + +@overload +async def open_file( + file: str | PathLike[str] | int, + mode: OpenBinaryMode, + buffering: int = ..., + encoding: str | None = ..., + errors: str | None = ..., + newline: str | None = ..., + closefd: bool = ..., + opener: Callable[[str, int], int] | None = ..., +) -> AsyncFile[bytes]: ... + + +@overload +async def open_file( + file: str | PathLike[str] | int, + mode: OpenTextMode = ..., + buffering: int = ..., + encoding: str | None = ..., + errors: str | None = ..., + newline: str | None = ..., + closefd: bool = ..., + opener: Callable[[str, int], int] | None = ..., +) -> AsyncFile[str]: ... + + +async def open_file( + file: str | PathLike[str] | int, + mode: str = "r", + buffering: int = -1, + encoding: str | None = None, + errors: str | None = None, + newline: str | None = None, + closefd: bool = True, + opener: Callable[[str, int], int] | None = None, +) -> AsyncFile[Any]: + """ + Open a file asynchronously. + + The arguments are exactly the same as for the builtin :func:`open`. + + :return: an asynchronous file object + + """ + fp = await to_thread.run_sync( + open, file, mode, buffering, encoding, errors, newline, closefd, opener + ) + return AsyncFile(fp) + + +def wrap_file(file: IO[AnyStr]) -> AsyncFile[AnyStr]: + """ + Wrap an existing file as an asynchronous file. + + :param file: an existing file-like object + :return: an asynchronous file object + + """ + return AsyncFile(file) + + +@dataclass(eq=False) +class _PathIterator(AsyncIterator["Path"]): + iterator: Iterator[PathLike[str]] + + async def __anext__(self) -> Path: + nextval = await to_thread.run_sync( + next, self.iterator, None, abandon_on_cancel=True + ) + if nextval is None: + raise StopAsyncIteration from None + + return Path(nextval) + + +class Path: + """ + An asynchronous version of :class:`pathlib.Path`. + + This class cannot be substituted for :class:`pathlib.Path` or + :class:`pathlib.PurePath`, but it is compatible with the :class:`os.PathLike` + interface. + + It implements the Python 3.10 version of :class:`pathlib.Path` interface, except for + the deprecated :meth:`~pathlib.Path.link_to` method. + + Some methods may be unavailable or have limited functionality, based on the Python + version: + + * :meth:`~pathlib.Path.copy` (available on Python 3.14 or later) + * :meth:`~pathlib.Path.copy_into` (available on Python 3.14 or later) + * :meth:`~pathlib.Path.from_uri` (available on Python 3.13 or later) + * :meth:`~pathlib.PurePath.full_match` (available on Python 3.13 or later) + * :attr:`~pathlib.Path.info` (available on Python 3.14 or later) + * :meth:`~pathlib.Path.is_junction` (available on Python 3.12 or later) + * :meth:`~pathlib.PurePath.match` (the ``case_sensitive`` parameter is only + available on Python 3.13 or later) + * :meth:`~pathlib.Path.move` (available on Python 3.14 or later) + * :meth:`~pathlib.Path.move_into` (available on Python 3.14 or later) + * :meth:`~pathlib.PurePath.relative_to` (the ``walk_up`` parameter is only available + on Python 3.12 or later) + * :meth:`~pathlib.Path.walk` (available on Python 3.12 or later) + + Any methods that do disk I/O need to be awaited on. These methods are: + + * :meth:`~pathlib.Path.absolute` + * :meth:`~pathlib.Path.chmod` + * :meth:`~pathlib.Path.cwd` + * :meth:`~pathlib.Path.exists` + * :meth:`~pathlib.Path.expanduser` + * :meth:`~pathlib.Path.group` + * :meth:`~pathlib.Path.hardlink_to` + * :meth:`~pathlib.Path.home` + * :meth:`~pathlib.Path.is_block_device` + * :meth:`~pathlib.Path.is_char_device` + * :meth:`~pathlib.Path.is_dir` + * :meth:`~pathlib.Path.is_fifo` + * :meth:`~pathlib.Path.is_file` + * :meth:`~pathlib.Path.is_junction` + * :meth:`~pathlib.Path.is_mount` + * :meth:`~pathlib.Path.is_socket` + * :meth:`~pathlib.Path.is_symlink` + * :meth:`~pathlib.Path.lchmod` + * :meth:`~pathlib.Path.lstat` + * :meth:`~pathlib.Path.mkdir` + * :meth:`~pathlib.Path.open` + * :meth:`~pathlib.Path.owner` + * :meth:`~pathlib.Path.read_bytes` + * :meth:`~pathlib.Path.read_text` + * :meth:`~pathlib.Path.readlink` + * :meth:`~pathlib.Path.rename` + * :meth:`~pathlib.Path.replace` + * :meth:`~pathlib.Path.resolve` + * :meth:`~pathlib.Path.rmdir` + * :meth:`~pathlib.Path.samefile` + * :meth:`~pathlib.Path.stat` + * :meth:`~pathlib.Path.symlink_to` + * :meth:`~pathlib.Path.touch` + * :meth:`~pathlib.Path.unlink` + * :meth:`~pathlib.Path.walk` + * :meth:`~pathlib.Path.write_bytes` + * :meth:`~pathlib.Path.write_text` + + Additionally, the following methods return an async iterator yielding + :class:`~.Path` objects: + + * :meth:`~pathlib.Path.glob` + * :meth:`~pathlib.Path.iterdir` + * :meth:`~pathlib.Path.rglob` + """ + + __slots__ = "_path", "__weakref__" + + __weakref__: Any + + def __init__(self, *args: str | PathLike[str]) -> None: + self._path: Final[pathlib.Path] = pathlib.Path(*args) + + def __fspath__(self) -> str: + return self._path.__fspath__() + + def __str__(self) -> str: + return self._path.__str__() + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.as_posix()!r})" + + def __bytes__(self) -> bytes: + return self._path.__bytes__() + + def __hash__(self) -> int: + return self._path.__hash__() + + def __eq__(self, other: object) -> bool: + target = other._path if isinstance(other, Path) else other + return self._path.__eq__(target) + + def __lt__(self, other: pathlib.PurePath | Path) -> bool: + target = other._path if isinstance(other, Path) else other + return self._path.__lt__(target) + + def __le__(self, other: pathlib.PurePath | Path) -> bool: + target = other._path if isinstance(other, Path) else other + return self._path.__le__(target) + + def __gt__(self, other: pathlib.PurePath | Path) -> bool: + target = other._path if isinstance(other, Path) else other + return self._path.__gt__(target) + + def __ge__(self, other: pathlib.PurePath | Path) -> bool: + target = other._path if isinstance(other, Path) else other + return self._path.__ge__(target) + + def __truediv__(self, other: str | PathLike[str]) -> Path: + return Path(self._path / other) + + def __rtruediv__(self, other: str | PathLike[str]) -> Path: + return Path(other) / self + + @property + def parts(self) -> tuple[str, ...]: + return self._path.parts + + @property + def drive(self) -> str: + return self._path.drive + + @property + def root(self) -> str: + return self._path.root + + @property + def anchor(self) -> str: + return self._path.anchor + + @property + def parents(self) -> Sequence[Path]: + return tuple(Path(p) for p in self._path.parents) + + @property + def parent(self) -> Path: + return Path(self._path.parent) + + @property + def name(self) -> str: + return self._path.name + + @property + def suffix(self) -> str: + return self._path.suffix + + @property + def suffixes(self) -> list[str]: + return self._path.suffixes + + @property + def stem(self) -> str: + return self._path.stem + + async def absolute(self) -> Path: + path = await to_thread.run_sync(self._path.absolute) + return Path(path) + + def as_posix(self) -> str: + return self._path.as_posix() + + def as_uri(self) -> str: + return self._path.as_uri() + + if sys.version_info >= (3, 13): + parser: ClassVar[ModuleType] = pathlib.Path.parser + + @classmethod + def from_uri(cls, uri: str) -> Path: + return Path(pathlib.Path.from_uri(uri)) + + def full_match( + self, path_pattern: str, *, case_sensitive: bool | None = None + ) -> bool: + return self._path.full_match(path_pattern, case_sensitive=case_sensitive) + + def match( + self, path_pattern: str, *, case_sensitive: bool | None = None + ) -> bool: + return self._path.match(path_pattern, case_sensitive=case_sensitive) + else: + + def match(self, path_pattern: str) -> bool: + return self._path.match(path_pattern) + + if sys.version_info >= (3, 14): + + @property + def info(self) -> Any: # TODO: add return type annotation when Typeshed gets it + return self._path.info + + async def copy( + self, + target: str | os.PathLike[str], + *, + follow_symlinks: bool = True, + preserve_metadata: bool = False, + ) -> Path: + func = partial( + self._path.copy, + follow_symlinks=follow_symlinks, + preserve_metadata=preserve_metadata, + ) + return Path(await to_thread.run_sync(func, pathlib.Path(target))) + + async def copy_into( + self, + target_dir: str | os.PathLike[str], + *, + follow_symlinks: bool = True, + preserve_metadata: bool = False, + ) -> Path: + func = partial( + self._path.copy_into, + follow_symlinks=follow_symlinks, + preserve_metadata=preserve_metadata, + ) + return Path(await to_thread.run_sync(func, pathlib.Path(target_dir))) + + async def move(self, target: str | os.PathLike[str]) -> Path: + # Upstream does not handle anyio.Path properly as a PathLike + target = pathlib.Path(target) + return Path(await to_thread.run_sync(self._path.move, target)) + + async def move_into( + self, + target_dir: str | os.PathLike[str], + ) -> Path: + return Path(await to_thread.run_sync(self._path.move_into, target_dir)) + + def is_relative_to(self, other: str | PathLike[str]) -> bool: + try: + self.relative_to(other) + return True + except ValueError: + return False + + async def chmod(self, mode: int, *, follow_symlinks: bool = True) -> None: + func = partial(os.chmod, follow_symlinks=follow_symlinks) + return await to_thread.run_sync(func, self._path, mode) + + @classmethod + async def cwd(cls) -> Path: + path = await to_thread.run_sync(pathlib.Path.cwd) + return cls(path) + + async def exists(self) -> bool: + return await to_thread.run_sync(self._path.exists, abandon_on_cancel=True) + + async def expanduser(self) -> Path: + return Path( + await to_thread.run_sync(self._path.expanduser, abandon_on_cancel=True) + ) + + def glob(self, pattern: str) -> AsyncIterator[Path]: + gen = self._path.glob(pattern) + return _PathIterator(gen) + + async def group(self) -> str: + return await to_thread.run_sync(self._path.group, abandon_on_cancel=True) + + async def hardlink_to( + self, target: str | bytes | PathLike[str] | PathLike[bytes] + ) -> None: + if isinstance(target, Path): + target = target._path + + await to_thread.run_sync(os.link, target, self) + + @classmethod + async def home(cls) -> Path: + home_path = await to_thread.run_sync(pathlib.Path.home) + return cls(home_path) + + def is_absolute(self) -> bool: + return self._path.is_absolute() + + async def is_block_device(self) -> bool: + return await to_thread.run_sync( + self._path.is_block_device, abandon_on_cancel=True + ) + + async def is_char_device(self) -> bool: + return await to_thread.run_sync( + self._path.is_char_device, abandon_on_cancel=True + ) + + async def is_dir(self) -> bool: + return await to_thread.run_sync(self._path.is_dir, abandon_on_cancel=True) + + async def is_fifo(self) -> bool: + return await to_thread.run_sync(self._path.is_fifo, abandon_on_cancel=True) + + async def is_file(self) -> bool: + return await to_thread.run_sync(self._path.is_file, abandon_on_cancel=True) + + if sys.version_info >= (3, 12): + + async def is_junction(self) -> bool: + return await to_thread.run_sync(self._path.is_junction) + + async def is_mount(self) -> bool: + return await to_thread.run_sync( + os.path.ismount, self._path, abandon_on_cancel=True + ) + + def is_reserved(self) -> bool: + return self._path.is_reserved() + + async def is_socket(self) -> bool: + return await to_thread.run_sync(self._path.is_socket, abandon_on_cancel=True) + + async def is_symlink(self) -> bool: + return await to_thread.run_sync(self._path.is_symlink, abandon_on_cancel=True) + + async def iterdir(self) -> AsyncIterator[Path]: + gen = ( + self._path.iterdir() + if sys.version_info < (3, 13) + else await to_thread.run_sync(self._path.iterdir, abandon_on_cancel=True) + ) + async for path in _PathIterator(gen): + yield path + + def joinpath(self, *args: str | PathLike[str]) -> Path: + return Path(self._path.joinpath(*args)) + + async def lchmod(self, mode: int) -> None: + await to_thread.run_sync(self._path.lchmod, mode) + + async def lstat(self) -> os.stat_result: + return await to_thread.run_sync(self._path.lstat, abandon_on_cancel=True) + + async def mkdir( + self, mode: int = 0o777, parents: bool = False, exist_ok: bool = False + ) -> None: + await to_thread.run_sync(self._path.mkdir, mode, parents, exist_ok) + + @overload + async def open( + self, + mode: OpenBinaryMode, + buffering: int = ..., + encoding: str | None = ..., + errors: str | None = ..., + newline: str | None = ..., + ) -> AsyncFile[bytes]: ... + + @overload + async def open( + self, + mode: OpenTextMode = ..., + buffering: int = ..., + encoding: str | None = ..., + errors: str | None = ..., + newline: str | None = ..., + ) -> AsyncFile[str]: ... + + async def open( + self, + mode: str = "r", + buffering: int = -1, + encoding: str | None = None, + errors: str | None = None, + newline: str | None = None, + ) -> AsyncFile[Any]: + fp = await to_thread.run_sync( + self._path.open, mode, buffering, encoding, errors, newline + ) + return AsyncFile(fp) + + async def owner(self) -> str: + return await to_thread.run_sync(self._path.owner, abandon_on_cancel=True) + + async def read_bytes(self) -> bytes: + return await to_thread.run_sync(self._path.read_bytes) + + async def read_text( + self, encoding: str | None = None, errors: str | None = None + ) -> str: + return await to_thread.run_sync(self._path.read_text, encoding, errors) + + if sys.version_info >= (3, 12): + + def relative_to( + self, *other: str | PathLike[str], walk_up: bool = False + ) -> Path: + # relative_to() should work with any PathLike but it doesn't + others = [pathlib.Path(other) for other in other] + return Path(self._path.relative_to(*others, walk_up=walk_up)) + + else: + + def relative_to(self, *other: str | PathLike[str]) -> Path: + return Path(self._path.relative_to(*other)) + + async def readlink(self) -> Path: + target = await to_thread.run_sync(os.readlink, self._path) + return Path(target) + + async def rename(self, target: str | pathlib.PurePath | Path) -> Path: + if isinstance(target, Path): + target = target._path + + await to_thread.run_sync(self._path.rename, target) + return Path(target) + + async def replace(self, target: str | pathlib.PurePath | Path) -> Path: + if isinstance(target, Path): + target = target._path + + await to_thread.run_sync(self._path.replace, target) + return Path(target) + + async def resolve(self, strict: bool = False) -> Path: + func = partial(self._path.resolve, strict=strict) + return Path(await to_thread.run_sync(func, abandon_on_cancel=True)) + + def rglob(self, pattern: str) -> AsyncIterator[Path]: + gen = self._path.rglob(pattern) + return _PathIterator(gen) + + async def rmdir(self) -> None: + await to_thread.run_sync(self._path.rmdir) + + async def samefile(self, other_path: str | PathLike[str]) -> bool: + if isinstance(other_path, Path): + other_path = other_path._path + + return await to_thread.run_sync( + self._path.samefile, other_path, abandon_on_cancel=True + ) + + async def stat(self, *, follow_symlinks: bool = True) -> os.stat_result: + func = partial(os.stat, follow_symlinks=follow_symlinks) + return await to_thread.run_sync(func, self._path, abandon_on_cancel=True) + + async def symlink_to( + self, + target: str | bytes | PathLike[str] | PathLike[bytes], + target_is_directory: bool = False, + ) -> None: + if isinstance(target, Path): + target = target._path + + await to_thread.run_sync(self._path.symlink_to, target, target_is_directory) + + async def touch(self, mode: int = 0o666, exist_ok: bool = True) -> None: + await to_thread.run_sync(self._path.touch, mode, exist_ok) + + async def unlink(self, missing_ok: bool = False) -> None: + try: + await to_thread.run_sync(self._path.unlink) + except FileNotFoundError: + if not missing_ok: + raise + + if sys.version_info >= (3, 12): + + async def walk( + self, + top_down: bool = True, + on_error: Callable[[OSError], object] | None = None, + follow_symlinks: bool = False, + ) -> AsyncIterator[tuple[Path, list[str], list[str]]]: + def get_next_value() -> tuple[pathlib.Path, list[str], list[str]] | None: + try: + return next(gen) + except StopIteration: + return None + + gen = self._path.walk(top_down, on_error, follow_symlinks) + while True: + value = await to_thread.run_sync(get_next_value) + if value is None: + return + + root, dirs, paths = value + yield Path(root), dirs, paths + + def with_name(self, name: str) -> Path: + return Path(self._path.with_name(name)) + + def with_stem(self, stem: str) -> Path: + return Path(self._path.with_name(stem + self._path.suffix)) + + def with_suffix(self, suffix: str) -> Path: + return Path(self._path.with_suffix(suffix)) + + def with_segments(self, *pathsegments: str | PathLike[str]) -> Path: + return Path(*pathsegments) + + async def write_bytes(self, data: bytes) -> int: + return await to_thread.run_sync(self._path.write_bytes, data) + + async def write_text( + self, + data: str, + encoding: str | None = None, + errors: str | None = None, + newline: str | None = None, + ) -> int: + # Path.write_text() does not support the "newline" parameter before Python 3.10 + def sync_write_text() -> int: + with self._path.open( + "w", encoding=encoding, errors=errors, newline=newline + ) as fp: + return fp.write(data) + + return await to_thread.run_sync(sync_write_text) + + +PathLike.register(Path) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_resources.py b/ocr/.venv/Lib/site-packages/anyio/_core/_resources.py new file mode 100644 index 00000000..b9a5344a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_resources.py @@ -0,0 +1,18 @@ +from __future__ import annotations + +from ..abc import AsyncResource +from ._tasks import CancelScope + + +async def aclose_forcefully(resource: AsyncResource) -> None: + """ + Close an asynchronous resource in a cancelled scope. + + Doing this closes the resource without waiting on anything. + + :param resource: the resource to close + + """ + with CancelScope() as scope: + scope.cancel() + await resource.aclose() diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_signals.py b/ocr/.venv/Lib/site-packages/anyio/_core/_signals.py new file mode 100644 index 00000000..f3451d30 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_signals.py @@ -0,0 +1,27 @@ +from __future__ import annotations + +from collections.abc import AsyncIterator +from contextlib import AbstractContextManager +from signal import Signals + +from ._eventloop import get_async_backend + + +def open_signal_receiver( + *signals: Signals, +) -> AbstractContextManager[AsyncIterator[Signals]]: + """ + Start receiving operating system signals. + + :param signals: signals to receive (e.g. ``signal.SIGINT``) + :return: an asynchronous context manager for an asynchronous iterator which yields + signal numbers + + .. warning:: Windows does not support signals natively so it is best to avoid + relying on this in cross-platform applications. + + .. warning:: On asyncio, this permanently replaces any previous signal handler for + the given signals, as set via :meth:`~asyncio.loop.add_signal_handler`. + + """ + return get_async_backend().open_signal_receiver(*signals) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_sockets.py b/ocr/.venv/Lib/site-packages/anyio/_core/_sockets.py new file mode 100644 index 00000000..c65508f1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_sockets.py @@ -0,0 +1,991 @@ +from __future__ import annotations + +import errno +import os +import socket +import ssl +import stat +import sys +from collections.abc import Awaitable +from dataclasses import dataclass +from ipaddress import IPv4Address, IPv6Address, ip_address +from os import PathLike, chmod +from socket import AddressFamily, SocketKind +from typing import TYPE_CHECKING, Any, Literal, cast, overload + +from .. import ConnectionFailed, to_thread +from ..abc import ( + ByteStreamConnectable, + ConnectedUDPSocket, + ConnectedUNIXDatagramSocket, + IPAddressType, + IPSockAddrType, + SocketListener, + SocketStream, + UDPSocket, + UNIXDatagramSocket, + UNIXSocketStream, +) +from ..streams.stapled import MultiListener +from ..streams.tls import TLSConnectable, TLSStream +from ._eventloop import get_async_backend +from ._resources import aclose_forcefully +from ._synchronization import Event +from ._tasks import create_task_group, move_on_after + +if TYPE_CHECKING: + from _typeshed import FileDescriptorLike +else: + FileDescriptorLike = object + +if sys.version_info < (3, 11): + from exceptiongroup import ExceptionGroup + +if sys.version_info >= (3, 12): + from typing import override +else: + from typing_extensions import override + +if sys.version_info < (3, 13): + from typing_extensions import deprecated +else: + from warnings import deprecated + +IPPROTO_IPV6 = getattr(socket, "IPPROTO_IPV6", 41) # https://bugs.python.org/issue29515 + +AnyIPAddressFamily = Literal[ + AddressFamily.AF_UNSPEC, AddressFamily.AF_INET, AddressFamily.AF_INET6 +] +IPAddressFamily = Literal[AddressFamily.AF_INET, AddressFamily.AF_INET6] + + +# tls_hostname given +@overload +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = ..., + ssl_context: ssl.SSLContext | None = ..., + tls_standard_compatible: bool = ..., + tls_hostname: str, + happy_eyeballs_delay: float = ..., +) -> TLSStream: ... + + +# ssl_context given +@overload +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = ..., + ssl_context: ssl.SSLContext, + tls_standard_compatible: bool = ..., + tls_hostname: str | None = ..., + happy_eyeballs_delay: float = ..., +) -> TLSStream: ... + + +# tls=True +@overload +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = ..., + tls: Literal[True], + ssl_context: ssl.SSLContext | None = ..., + tls_standard_compatible: bool = ..., + tls_hostname: str | None = ..., + happy_eyeballs_delay: float = ..., +) -> TLSStream: ... + + +# tls=False +@overload +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = ..., + tls: Literal[False], + ssl_context: ssl.SSLContext | None = ..., + tls_standard_compatible: bool = ..., + tls_hostname: str | None = ..., + happy_eyeballs_delay: float = ..., +) -> SocketStream: ... + + +# No TLS arguments +@overload +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = ..., + happy_eyeballs_delay: float = ..., +) -> SocketStream: ... + + +async def connect_tcp( + remote_host: IPAddressType, + remote_port: int, + *, + local_host: IPAddressType | None = None, + tls: bool = False, + ssl_context: ssl.SSLContext | None = None, + tls_standard_compatible: bool = True, + tls_hostname: str | None = None, + happy_eyeballs_delay: float = 0.25, +) -> SocketStream | TLSStream: + """ + Connect to a host using the TCP protocol. + + This function implements the stateless version of the Happy Eyeballs algorithm (RFC + 6555). If ``remote_host`` is a host name that resolves to multiple IP addresses, + each one is tried until one connection attempt succeeds. If the first attempt does + not connected within 250 milliseconds, a second attempt is started using the next + address in the list, and so on. On IPv6 enabled systems, an IPv6 address (if + available) is tried first. + + When the connection has been established, a TLS handshake will be done if either + ``ssl_context`` or ``tls_hostname`` is not ``None``, or if ``tls`` is ``True``. + + :param remote_host: the IP address or host name to connect to + :param remote_port: port on the target host to connect to + :param local_host: the interface address or name to bind the socket to before + connecting + :param tls: ``True`` to do a TLS handshake with the connected stream and return a + :class:`~anyio.streams.tls.TLSStream` instead + :param ssl_context: the SSL context object to use (if omitted, a default context is + created) + :param tls_standard_compatible: If ``True``, performs the TLS shutdown handshake + before closing the stream and requires that the server does this as well. + Otherwise, :exc:`~ssl.SSLEOFError` may be raised during reads from the stream. + Some protocols, such as HTTP, require this option to be ``False``. + See :meth:`~ssl.SSLContext.wrap_socket` for details. + :param tls_hostname: host name to check the server certificate against (defaults to + the value of ``remote_host``) + :param happy_eyeballs_delay: delay (in seconds) before starting the next connection + attempt + :return: a socket stream object if no TLS handshake was done, otherwise a TLS stream + :raises ConnectionFailed: if the connection fails + + """ + # Placed here due to https://github.com/python/mypy/issues/7057 + connected_stream: SocketStream | None = None + + async def try_connect(remote_host: str, event: Event) -> None: + nonlocal connected_stream + try: + stream = await asynclib.connect_tcp(remote_host, remote_port, local_address) + except OSError as exc: + oserrors.append(exc) + return + else: + if connected_stream is None: + connected_stream = stream + tg.cancel_scope.cancel() + else: + await stream.aclose() + finally: + event.set() + + asynclib = get_async_backend() + local_address: IPSockAddrType | None = None + family = socket.AF_UNSPEC + if local_host: + gai_res = await getaddrinfo(str(local_host), None) + family, *_, local_address = gai_res[0] + + target_host = str(remote_host) + try: + addr_obj = ip_address(remote_host) + except ValueError: + addr_obj = None + + if addr_obj is not None: + if isinstance(addr_obj, IPv6Address): + target_addrs = [(socket.AF_INET6, addr_obj.compressed)] + else: + target_addrs = [(socket.AF_INET, addr_obj.compressed)] + else: + # getaddrinfo() will raise an exception if name resolution fails + gai_res = await getaddrinfo( + target_host, remote_port, family=family, type=socket.SOCK_STREAM + ) + + # Organize the list so that the first address is an IPv6 address (if available) + # and the second one is an IPv4 addresses. The rest can be in whatever order. + v6_found = v4_found = False + target_addrs = [] + for af, *_, sa in gai_res: + if af == socket.AF_INET6 and not v6_found: + v6_found = True + target_addrs.insert(0, (af, sa[0])) + elif af == socket.AF_INET and not v4_found and v6_found: + v4_found = True + target_addrs.insert(1, (af, sa[0])) + else: + target_addrs.append((af, sa[0])) + + oserrors: list[OSError] = [] + try: + async with create_task_group() as tg: + for _af, addr in target_addrs: + event = Event() + tg.start_soon(try_connect, addr, event) + with move_on_after(happy_eyeballs_delay): + await event.wait() + + if connected_stream is None: + cause = ( + oserrors[0] + if len(oserrors) == 1 + else ExceptionGroup("multiple connection attempts failed", oserrors) + ) + raise OSError("All connection attempts failed") from cause + finally: + oserrors.clear() + + if tls or tls_hostname or ssl_context: + try: + return await TLSStream.wrap( + connected_stream, + server_side=False, + hostname=tls_hostname or str(remote_host), + ssl_context=ssl_context, + standard_compatible=tls_standard_compatible, + ) + except BaseException: + await aclose_forcefully(connected_stream) + raise + + return connected_stream + + +async def connect_unix(path: str | bytes | PathLike[Any]) -> UNIXSocketStream: + """ + Connect to the given UNIX socket. + + Not available on Windows. + + :param path: path to the socket + :return: a socket stream object + :raises ConnectionFailed: if the connection fails + + """ + path = os.fspath(path) + return await get_async_backend().connect_unix(path) + + +async def create_tcp_listener( + *, + local_host: IPAddressType | None = None, + local_port: int = 0, + family: AnyIPAddressFamily = socket.AddressFamily.AF_UNSPEC, + backlog: int = 65536, + reuse_port: bool = False, +) -> MultiListener[SocketStream]: + """ + Create a TCP socket listener. + + :param local_port: port number to listen on + :param local_host: IP address of the interface to listen on. If omitted, listen on + all IPv4 and IPv6 interfaces. To listen on all interfaces on a specific address + family, use ``0.0.0.0`` for IPv4 or ``::`` for IPv6. + :param family: address family (used if ``local_host`` was omitted) + :param backlog: maximum number of queued incoming connections (up to a maximum of + 2**16, or 65536) + :param reuse_port: ``True`` to allow multiple sockets to bind to the same + address/port (not supported on Windows) + :return: a multi-listener object containing one or more socket listeners + :raises OSError: if there's an error creating a socket, or binding to one or more + interfaces failed + + """ + asynclib = get_async_backend() + backlog = min(backlog, 65536) + local_host = str(local_host) if local_host is not None else None + + def setup_raw_socket( + fam: AddressFamily, + bind_addr: tuple[str, int] | tuple[str, int, int, int], + *, + v6only: bool = True, + ) -> socket.socket: + sock = socket.socket(fam) + try: + sock.setblocking(False) + + if fam == AddressFamily.AF_INET6: + sock.setsockopt(IPPROTO_IPV6, socket.IPV6_V6ONLY, v6only) + + # For Windows, enable exclusive address use. For others, enable address + # reuse. + if sys.platform == "win32": + sock.setsockopt(socket.SOL_SOCKET, socket.SO_EXCLUSIVEADDRUSE, 1) + else: + sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + + if reuse_port: + sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) + + # Workaround for #554 + if fam == socket.AF_INET6 and "%" in bind_addr[0]: + addr, scope_id = bind_addr[0].split("%", 1) + bind_addr = (addr, bind_addr[1], 0, int(scope_id)) + + sock.bind(bind_addr) + sock.listen(backlog) + except BaseException: + sock.close() + raise + + return sock + + # We passing type=0 on non-Windows platforms as a workaround for a uvloop bug + # where we don't get the correct scope ID for IPv6 link-local addresses when passing + # type=socket.SOCK_STREAM to getaddrinfo(): + # https://github.com/MagicStack/uvloop/issues/539 + gai_res = await getaddrinfo( + local_host, + local_port, + family=family, + type=socket.SOCK_STREAM if sys.platform == "win32" else 0, + flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, + ) + + # The set comprehension is here to work around a glibc bug: + # https://sourceware.org/bugzilla/show_bug.cgi?id=14969 + sockaddrs = sorted({res for res in gai_res if res[1] == SocketKind.SOCK_STREAM}) + + # Special case for dual-stack binding on the "any" interface + if ( + local_host is None + and family == AddressFamily.AF_UNSPEC + and socket.has_dualstack_ipv6() + and any(fam == AddressFamily.AF_INET6 for fam, *_ in gai_res) + ): + raw_socket = setup_raw_socket( + AddressFamily.AF_INET6, ("::", local_port), v6only=False + ) + listener = asynclib.create_tcp_listener(raw_socket) + return MultiListener([listener]) + + errors: list[OSError] = [] + try: + for _ in range(len(sockaddrs)): + listeners: list[SocketListener] = [] + bound_ephemeral_port = local_port + try: + for fam, *_, sockaddr in sockaddrs: + sockaddr = sockaddr[0], bound_ephemeral_port, *sockaddr[2:] + raw_socket = setup_raw_socket(fam, sockaddr) + + # Store the assigned port if an ephemeral port was requested, so + # we'll bind to the same port on all interfaces + if local_port == 0 and len(gai_res) > 1: + bound_ephemeral_port = raw_socket.getsockname()[1] + + listeners.append(asynclib.create_tcp_listener(raw_socket)) + except BaseException as exc: + for listener in listeners: + await listener.aclose() + + # If an ephemeral port was requested but binding the assigned port + # failed for another interface, rotate the address list and try again + if ( + isinstance(exc, OSError) + and exc.errno == errno.EADDRINUSE + and local_port == 0 + and bound_ephemeral_port + ): + errors.append(exc) + sockaddrs.append(sockaddrs.pop(0)) + continue + + raise + + return MultiListener(listeners) + + raise OSError( + f"Could not create {len(sockaddrs)} listeners with a consistent port" + ) from ExceptionGroup("Several bind attempts failed", errors) + finally: + del errors # Prevent reference cycles + + +async def create_unix_listener( + path: str | bytes | PathLike[Any], + *, + mode: int | None = None, + backlog: int = 65536, +) -> SocketListener: + """ + Create a UNIX socket listener. + + Not available on Windows. + + :param path: path of the socket + :param mode: permissions to set on the socket + :param backlog: maximum number of queued incoming connections (up to a maximum of + 2**16, or 65536) + :return: a listener object + + .. versionchanged:: 3.0 + If a socket already exists on the file system in the given path, it will be + removed first. + + """ + backlog = min(backlog, 65536) + raw_socket = await setup_unix_local_socket(path, mode, socket.SOCK_STREAM) + try: + raw_socket.listen(backlog) + return get_async_backend().create_unix_listener(raw_socket) + except BaseException: + raw_socket.close() + raise + + +async def create_udp_socket( + family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC, + *, + local_host: IPAddressType | None = None, + local_port: int = 0, + reuse_port: bool = False, +) -> UDPSocket: + """ + Create a UDP socket. + + If ``port`` has been given, the socket will be bound to this port on the local + machine, making this socket suitable for providing UDP based services. + + :param family: address family (``AF_INET`` or ``AF_INET6``) – automatically + determined from ``local_host`` if omitted + :param local_host: IP address or host name of the local interface to bind to + :param local_port: local port to bind to + :param reuse_port: ``True`` to allow multiple sockets to bind to the same + address/port (not supported on Windows) + :return: a UDP socket + + """ + if family is AddressFamily.AF_UNSPEC and not local_host: + raise ValueError('Either "family" or "local_host" must be given') + + if local_host: + gai_res = await getaddrinfo( + str(local_host), + local_port, + family=family, + type=socket.SOCK_DGRAM, + flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, + ) + family = cast(AnyIPAddressFamily, gai_res[0][0]) + local_address = gai_res[0][-1] + elif family is AddressFamily.AF_INET6: + local_address = ("::", 0) + else: + local_address = ("0.0.0.0", 0) + + sock = await get_async_backend().create_udp_socket( + family, local_address, None, reuse_port + ) + return cast(UDPSocket, sock) + + +async def create_connected_udp_socket( + remote_host: IPAddressType, + remote_port: int, + *, + family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC, + local_host: IPAddressType | None = None, + local_port: int = 0, + reuse_port: bool = False, +) -> ConnectedUDPSocket: + """ + Create a connected UDP socket. + + Connected UDP sockets can only communicate with the specified remote host/port, an + any packets sent from other sources are dropped. + + :param remote_host: remote host to set as the default target + :param remote_port: port on the remote host to set as the default target + :param family: address family (``AF_INET`` or ``AF_INET6``) – automatically + determined from ``local_host`` or ``remote_host`` if omitted + :param local_host: IP address or host name of the local interface to bind to + :param local_port: local port to bind to + :param reuse_port: ``True`` to allow multiple sockets to bind to the same + address/port (not supported on Windows) + :return: a connected UDP socket + + """ + local_address = None + if local_host: + gai_res = await getaddrinfo( + str(local_host), + local_port, + family=family, + type=socket.SOCK_DGRAM, + flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, + ) + family = cast(AnyIPAddressFamily, gai_res[0][0]) + local_address = gai_res[0][-1] + + gai_res = await getaddrinfo( + str(remote_host), remote_port, family=family, type=socket.SOCK_DGRAM + ) + family = cast(AnyIPAddressFamily, gai_res[0][0]) + remote_address = gai_res[0][-1] + + sock = await get_async_backend().create_udp_socket( + family, local_address, remote_address, reuse_port + ) + return cast(ConnectedUDPSocket, sock) + + +async def create_unix_datagram_socket( + *, + local_path: None | str | bytes | PathLike[Any] = None, + local_mode: int | None = None, +) -> UNIXDatagramSocket: + """ + Create a UNIX datagram socket. + + Not available on Windows. + + If ``local_path`` has been given, the socket will be bound to this path, making this + socket suitable for receiving datagrams from other processes. Other processes can + send datagrams to this socket only if ``local_path`` is set. + + If a socket already exists on the file system in the ``local_path``, it will be + removed first. + + :param local_path: the path on which to bind to + :param local_mode: permissions to set on the local socket + :return: a UNIX datagram socket + + """ + raw_socket = await setup_unix_local_socket( + local_path, local_mode, socket.SOCK_DGRAM + ) + return await get_async_backend().create_unix_datagram_socket(raw_socket, None) + + +async def create_connected_unix_datagram_socket( + remote_path: str | bytes | PathLike[Any], + *, + local_path: None | str | bytes | PathLike[Any] = None, + local_mode: int | None = None, +) -> ConnectedUNIXDatagramSocket: + """ + Create a connected UNIX datagram socket. + + Connected datagram sockets can only communicate with the specified remote path. + + If ``local_path`` has been given, the socket will be bound to this path, making + this socket suitable for receiving datagrams from other processes. Other processes + can send datagrams to this socket only if ``local_path`` is set. + + If a socket already exists on the file system in the ``local_path``, it will be + removed first. + + :param remote_path: the path to set as the default target + :param local_path: the path on which to bind to + :param local_mode: permissions to set on the local socket + :return: a connected UNIX datagram socket + + """ + remote_path = os.fspath(remote_path) + raw_socket = await setup_unix_local_socket( + local_path, local_mode, socket.SOCK_DGRAM + ) + return await get_async_backend().create_unix_datagram_socket( + raw_socket, remote_path + ) + + +async def getaddrinfo( + host: bytes | str | None, + port: str | int | None, + *, + family: int | AddressFamily = 0, + type: int | SocketKind = 0, + proto: int = 0, + flags: int = 0, +) -> list[tuple[AddressFamily, SocketKind, int, str, tuple[str, int]]]: + """ + Look up a numeric IP address given a host name. + + Internationalized domain names are translated according to the (non-transitional) + IDNA 2008 standard. + + .. note:: 4-tuple IPv6 socket addresses are automatically converted to 2-tuples of + (host, port), unlike what :func:`socket.getaddrinfo` does. + + :param host: host name + :param port: port number + :param family: socket family (`'AF_INET``, ...) + :param type: socket type (``SOCK_STREAM``, ...) + :param proto: protocol number + :param flags: flags to pass to upstream ``getaddrinfo()`` + :return: list of tuples containing (family, type, proto, canonname, sockaddr) + + .. seealso:: :func:`socket.getaddrinfo` + + """ + # Handle unicode hostnames + if isinstance(host, str): + try: + encoded_host: bytes | None = host.encode("ascii") + except UnicodeEncodeError: + import idna + + encoded_host = idna.encode(host, uts46=True) + else: + encoded_host = host + + gai_res = await get_async_backend().getaddrinfo( + encoded_host, port, family=family, type=type, proto=proto, flags=flags + ) + return [ + (family, type, proto, canonname, convert_ipv6_sockaddr(sockaddr)) + for family, type, proto, canonname, sockaddr in gai_res + # filter out IPv6 results when IPv6 is disabled + if not isinstance(sockaddr[0], int) + ] + + +def getnameinfo(sockaddr: IPSockAddrType, flags: int = 0) -> Awaitable[tuple[str, str]]: + """ + Look up the host name of an IP address. + + :param sockaddr: socket address (e.g. (ipaddress, port) for IPv4) + :param flags: flags to pass to upstream ``getnameinfo()`` + :return: a tuple of (host name, service name) + + .. seealso:: :func:`socket.getnameinfo` + + """ + return get_async_backend().getnameinfo(sockaddr, flags) + + +@deprecated("This function is deprecated; use `wait_readable` instead") +def wait_socket_readable(sock: socket.socket) -> Awaitable[None]: + """ + .. deprecated:: 4.7.0 + Use :func:`wait_readable` instead. + + Wait until the given socket has data to be read. + + .. warning:: Only use this on raw sockets that have not been wrapped by any higher + level constructs like socket streams! + + :param sock: a socket object + :raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the + socket to become readable + :raises ~anyio.BusyResourceError: if another task is already waiting for the socket + to become readable + + """ + return get_async_backend().wait_readable(sock.fileno()) + + +@deprecated("This function is deprecated; use `wait_writable` instead") +def wait_socket_writable(sock: socket.socket) -> Awaitable[None]: + """ + .. deprecated:: 4.7.0 + Use :func:`wait_writable` instead. + + Wait until the given socket can be written to. + + This does **NOT** work on Windows when using the asyncio backend with a proactor + event loop (default on py3.8+). + + .. warning:: Only use this on raw sockets that have not been wrapped by any higher + level constructs like socket streams! + + :param sock: a socket object + :raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the + socket to become writable + :raises ~anyio.BusyResourceError: if another task is already waiting for the socket + to become writable + + """ + return get_async_backend().wait_writable(sock.fileno()) + + +def wait_readable(obj: FileDescriptorLike) -> Awaitable[None]: + """ + Wait until the given object has data to be read. + + On Unix systems, ``obj`` must either be an integer file descriptor, or else an + object with a ``.fileno()`` method which returns an integer file descriptor. Any + kind of file descriptor can be passed, though the exact semantics will depend on + your kernel. For example, this probably won't do anything useful for on-disk files. + + On Windows systems, ``obj`` must either be an integer ``SOCKET`` handle, or else an + object with a ``.fileno()`` method which returns an integer ``SOCKET`` handle. File + descriptors aren't supported, and neither are handles that refer to anything besides + a ``SOCKET``. + + On backends where this functionality is not natively provided (asyncio + ``ProactorEventLoop`` on Windows), it is provided using a separate selector thread + which is set to shut down when the interpreter shuts down. + + .. warning:: Don't use this on raw sockets that have been wrapped by any higher + level constructs like socket streams! + + :param obj: an object with a ``.fileno()`` method or an integer handle + :raises ~anyio.ClosedResourceError: if the object was closed while waiting for the + object to become readable + :raises ~anyio.BusyResourceError: if another task is already waiting for the object + to become readable + + """ + return get_async_backend().wait_readable(obj) + + +def wait_writable(obj: FileDescriptorLike) -> Awaitable[None]: + """ + Wait until the given object can be written to. + + :param obj: an object with a ``.fileno()`` method or an integer handle + :raises ~anyio.ClosedResourceError: if the object was closed while waiting for the + object to become writable + :raises ~anyio.BusyResourceError: if another task is already waiting for the object + to become writable + + .. seealso:: See the documentation of :func:`wait_readable` for the definition of + ``obj`` and notes on backend compatibility. + + .. warning:: Don't use this on raw sockets that have been wrapped by any higher + level constructs like socket streams! + + """ + return get_async_backend().wait_writable(obj) + + +def notify_closing(obj: FileDescriptorLike) -> None: + """ + Call this before closing a file descriptor (on Unix) or socket (on + Windows). This will cause any `wait_readable` or `wait_writable` + calls on the given object to immediately wake up and raise + `~anyio.ClosedResourceError`. + + This doesn't actually close the object – you still have to do that + yourself afterwards. Also, you want to be careful to make sure no + new tasks start waiting on the object in between when you call this + and when it's actually closed. So to close something properly, you + usually want to do these steps in order: + + 1. Explicitly mark the object as closed, so that any new attempts + to use it will abort before they start. + 2. Call `notify_closing` to wake up any already-existing users. + 3. Actually close the object. + + It's also possible to do them in a different order if that's more + convenient, *but only if* you make sure not to have any checkpoints in + between the steps. This way they all happen in a single atomic + step, so other tasks won't be able to tell what order they happened + in anyway. + + :param obj: an object with a ``.fileno()`` method or an integer handle + + """ + get_async_backend().notify_closing(obj) + + +# +# Private API +# + + +def convert_ipv6_sockaddr( + sockaddr: tuple[str, int, int, int] | tuple[str, int], +) -> tuple[str, int]: + """ + Convert a 4-tuple IPv6 socket address to a 2-tuple (address, port) format. + + If the scope ID is nonzero, it is added to the address, separated with ``%``. + Otherwise the flow id and scope id are simply cut off from the tuple. + Any other kinds of socket addresses are returned as-is. + + :param sockaddr: the result of :meth:`~socket.socket.getsockname` + :return: the converted socket address + + """ + # This is more complicated than it should be because of MyPy + if isinstance(sockaddr, tuple) and len(sockaddr) == 4: + host, port, flowinfo, scope_id = sockaddr + if scope_id: + # PyPy (as of v7.3.11) leaves the interface name in the result, so + # we discard it and only get the scope ID from the end + # (https://foss.heptapod.net/pypy/pypy/-/issues/3938) + host = host.split("%")[0] + + # Add scope_id to the address + return f"{host}%{scope_id}", port + else: + return host, port + else: + return sockaddr + + +async def setup_unix_local_socket( + path: None | str | bytes | PathLike[Any], + mode: int | None, + socktype: int, +) -> socket.socket: + """ + Create a UNIX local socket object, deleting the socket at the given path if it + exists. + + Not available on Windows. + + :param path: path of the socket + :param mode: permissions to set on the socket + :param socktype: socket.SOCK_STREAM or socket.SOCK_DGRAM + + """ + path_str: str | None + if path is not None: + path_str = os.fsdecode(path) + + # Linux abstract namespace sockets aren't backed by a concrete file so skip stat call + if not path_str.startswith("\0"): + # Copied from pathlib... + try: + stat_result = os.stat(path) + except OSError as e: + if e.errno not in ( + errno.ENOENT, + errno.ENOTDIR, + errno.EBADF, + errno.ELOOP, + ): + raise + else: + if stat.S_ISSOCK(stat_result.st_mode): + os.unlink(path) + else: + path_str = None + + raw_socket = socket.socket(socket.AF_UNIX, socktype) + raw_socket.setblocking(False) + + if path_str is not None: + try: + await to_thread.run_sync(raw_socket.bind, path_str, abandon_on_cancel=True) + if mode is not None: + await to_thread.run_sync(chmod, path_str, mode, abandon_on_cancel=True) + except BaseException: + raw_socket.close() + raise + + return raw_socket + + +@dataclass +class TCPConnectable(ByteStreamConnectable): + """ + Connects to a TCP server at the given host and port. + + :param host: host name or IP address of the server + :param port: TCP port number of the server + """ + + host: str | IPv4Address | IPv6Address + port: int + + def __post_init__(self) -> None: + if self.port < 1 or self.port > 65535: + raise ValueError("TCP port number out of range") + + @override + async def connect(self) -> SocketStream: + try: + return await connect_tcp(self.host, self.port) + except OSError as exc: + raise ConnectionFailed( + f"error connecting to {self.host}:{self.port}: {exc}" + ) from exc + + +@dataclass +class UNIXConnectable(ByteStreamConnectable): + """ + Connects to a UNIX domain socket at the given path. + + :param path: the file system path of the socket + """ + + path: str | bytes | PathLike[str] | PathLike[bytes] + + @override + async def connect(self) -> UNIXSocketStream: + try: + return await connect_unix(self.path) + except OSError as exc: + raise ConnectionFailed(f"error connecting to {self.path!r}: {exc}") from exc + + +def as_connectable( + remote: ByteStreamConnectable + | tuple[str | IPv4Address | IPv6Address, int] + | str + | bytes + | PathLike[str], + /, + *, + tls: bool = False, + ssl_context: ssl.SSLContext | None = None, + tls_hostname: str | None = None, + tls_standard_compatible: bool = True, +) -> ByteStreamConnectable: + """ + Return a byte stream connectable from the given object. + + If a bytestream connectable is given, it is returned unchanged. + If a tuple of (host, port) is given, a TCP connectable is returned. + If a string or bytes path is given, a UNIX connectable is returned. + + If ``tls=True``, the connectable will be wrapped in a + :class:`~.streams.tls.TLSConnectable`. + + :param remote: a connectable, a tuple of (host, port) or a path to a UNIX socket + :param tls: if ``True``, wrap the plaintext connectable in a + :class:`~.streams.tls.TLSConnectable`, using the provided TLS settings) + :param ssl_context: if ``tls=True``, the SSLContext object to use (if not provided, + a secure default will be created) + :param tls_hostname: if ``tls=True``, host name of the server to use for checking + the server certificate (defaults to the host portion of the address for TCP + connectables) + :param tls_standard_compatible: if ``False`` and ``tls=True``, makes the TLS stream + skip the closing handshake when closing the connection, so it won't raise an + exception if the server does the same + + """ + connectable: TCPConnectable | UNIXConnectable | TLSConnectable + if isinstance(remote, ByteStreamConnectable): + return remote + elif isinstance(remote, tuple) and len(remote) == 2: + connectable = TCPConnectable(*remote) + elif isinstance(remote, (str, bytes, PathLike)): + connectable = UNIXConnectable(remote) + else: + raise TypeError(f"cannot convert {remote!r} to a connectable") + + if tls: + if not tls_hostname and isinstance(connectable, TCPConnectable): + tls_hostname = str(connectable.host) + + connectable = TLSConnectable( + connectable, + ssl_context=ssl_context, + hostname=tls_hostname, + standard_compatible=tls_standard_compatible, + ) + + return connectable diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_streams.py b/ocr/.venv/Lib/site-packages/anyio/_core/_streams.py new file mode 100644 index 00000000..6a9814e5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_streams.py @@ -0,0 +1,52 @@ +from __future__ import annotations + +import math +from typing import TypeVar +from warnings import warn + +from ..streams.memory import ( + MemoryObjectReceiveStream, + MemoryObjectSendStream, + MemoryObjectStreamState, +) + +T_Item = TypeVar("T_Item") + + +class create_memory_object_stream( + tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]], +): + """ + Create a memory object stream. + + The stream's item type can be annotated like + :func:`create_memory_object_stream[T_Item]`. + + :param max_buffer_size: number of items held in the buffer until ``send()`` starts + blocking + :param item_type: old way of marking the streams with the right generic type for + static typing (does nothing on AnyIO 4) + + .. deprecated:: 4.0 + Use ``create_memory_object_stream[YourItemType](...)`` instead. + :return: a tuple of (send stream, receive stream) + + """ + + def __new__( # type: ignore[misc] + cls, max_buffer_size: float = 0, item_type: object = None + ) -> tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]]: + if max_buffer_size != math.inf and not isinstance(max_buffer_size, int): + raise ValueError("max_buffer_size must be either an integer or math.inf") + if max_buffer_size < 0: + raise ValueError("max_buffer_size cannot be negative") + if item_type is not None: + warn( + "The item_type argument has been deprecated in AnyIO 4.0. " + "Use create_memory_object_stream[YourItemType](...) instead.", + DeprecationWarning, + stacklevel=2, + ) + + state = MemoryObjectStreamState[T_Item](max_buffer_size) + return (MemoryObjectSendStream(state), MemoryObjectReceiveStream(state)) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_subprocesses.py b/ocr/.venv/Lib/site-packages/anyio/_core/_subprocesses.py new file mode 100644 index 00000000..36d9b306 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_subprocesses.py @@ -0,0 +1,202 @@ +from __future__ import annotations + +import sys +from collections.abc import AsyncIterable, Iterable, Mapping, Sequence +from io import BytesIO +from os import PathLike +from subprocess import PIPE, CalledProcessError, CompletedProcess +from typing import IO, Any, Union, cast + +from ..abc import Process +from ._eventloop import get_async_backend +from ._tasks import create_task_group + +if sys.version_info >= (3, 10): + from typing import TypeAlias +else: + from typing_extensions import TypeAlias + +StrOrBytesPath: TypeAlias = Union[str, bytes, "PathLike[str]", "PathLike[bytes]"] + + +async def run_process( + command: StrOrBytesPath | Sequence[StrOrBytesPath], + *, + input: bytes | None = None, + stdin: int | IO[Any] | None = None, + stdout: int | IO[Any] | None = PIPE, + stderr: int | IO[Any] | None = PIPE, + check: bool = True, + cwd: StrOrBytesPath | None = None, + env: Mapping[str, str] | None = None, + startupinfo: Any = None, + creationflags: int = 0, + start_new_session: bool = False, + pass_fds: Sequence[int] = (), + user: str | int | None = None, + group: str | int | None = None, + extra_groups: Iterable[str | int] | None = None, + umask: int = -1, +) -> CompletedProcess[bytes]: + """ + Run an external command in a subprocess and wait until it completes. + + .. seealso:: :func:`subprocess.run` + + :param command: either a string to pass to the shell, or an iterable of strings + containing the executable name or path and its arguments + :param input: bytes passed to the standard input of the subprocess + :param stdin: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, + a file-like object, or `None`; ``input`` overrides this + :param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, + a file-like object, or `None` + :param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, + :data:`subprocess.STDOUT`, a file-like object, or `None` + :param check: if ``True``, raise :exc:`~subprocess.CalledProcessError` if the + process terminates with a return code other than 0 + :param cwd: If not ``None``, change the working directory to this before running the + command + :param env: if not ``None``, this mapping replaces the inherited environment + variables from the parent process + :param startupinfo: an instance of :class:`subprocess.STARTUPINFO` that can be used + to specify process startup parameters (Windows only) + :param creationflags: flags that can be used to control the creation of the + subprocess (see :class:`subprocess.Popen` for the specifics) + :param start_new_session: if ``true`` the setsid() system call will be made in the + child process prior to the execution of the subprocess. (POSIX only) + :param pass_fds: sequence of file descriptors to keep open between the parent and + child processes. (POSIX only) + :param user: effective user to run the process as (Python >= 3.9, POSIX only) + :param group: effective group to run the process as (Python >= 3.9, POSIX only) + :param extra_groups: supplementary groups to set in the subprocess (Python >= 3.9, + POSIX only) + :param umask: if not negative, this umask is applied in the child process before + running the given command (Python >= 3.9, POSIX only) + :return: an object representing the completed process + :raises ~subprocess.CalledProcessError: if ``check`` is ``True`` and the process + exits with a nonzero return code + + """ + + async def drain_stream(stream: AsyncIterable[bytes], index: int) -> None: + buffer = BytesIO() + async for chunk in stream: + buffer.write(chunk) + + stream_contents[index] = buffer.getvalue() + + if stdin is not None and input is not None: + raise ValueError("only one of stdin and input is allowed") + + async with await open_process( + command, + stdin=PIPE if input else stdin, + stdout=stdout, + stderr=stderr, + cwd=cwd, + env=env, + startupinfo=startupinfo, + creationflags=creationflags, + start_new_session=start_new_session, + pass_fds=pass_fds, + user=user, + group=group, + extra_groups=extra_groups, + umask=umask, + ) as process: + stream_contents: list[bytes | None] = [None, None] + async with create_task_group() as tg: + if process.stdout: + tg.start_soon(drain_stream, process.stdout, 0) + + if process.stderr: + tg.start_soon(drain_stream, process.stderr, 1) + + if process.stdin and input: + await process.stdin.send(input) + await process.stdin.aclose() + + await process.wait() + + output, errors = stream_contents + if check and process.returncode != 0: + raise CalledProcessError(cast(int, process.returncode), command, output, errors) + + return CompletedProcess(command, cast(int, process.returncode), output, errors) + + +async def open_process( + command: StrOrBytesPath | Sequence[StrOrBytesPath], + *, + stdin: int | IO[Any] | None = PIPE, + stdout: int | IO[Any] | None = PIPE, + stderr: int | IO[Any] | None = PIPE, + cwd: StrOrBytesPath | None = None, + env: Mapping[str, str] | None = None, + startupinfo: Any = None, + creationflags: int = 0, + start_new_session: bool = False, + pass_fds: Sequence[int] = (), + user: str | int | None = None, + group: str | int | None = None, + extra_groups: Iterable[str | int] | None = None, + umask: int = -1, +) -> Process: + """ + Start an external command in a subprocess. + + .. seealso:: :class:`subprocess.Popen` + + :param command: either a string to pass to the shell, or an iterable of strings + containing the executable name or path and its arguments + :param stdin: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, a + file-like object, or ``None`` + :param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, + a file-like object, or ``None`` + :param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, + :data:`subprocess.STDOUT`, a file-like object, or ``None`` + :param cwd: If not ``None``, the working directory is changed before executing + :param env: If env is not ``None``, it must be a mapping that defines the + environment variables for the new process + :param creationflags: flags that can be used to control the creation of the + subprocess (see :class:`subprocess.Popen` for the specifics) + :param startupinfo: an instance of :class:`subprocess.STARTUPINFO` that can be used + to specify process startup parameters (Windows only) + :param start_new_session: if ``true`` the setsid() system call will be made in the + child process prior to the execution of the subprocess. (POSIX only) + :param pass_fds: sequence of file descriptors to keep open between the parent and + child processes. (POSIX only) + :param user: effective user to run the process as (POSIX only) + :param group: effective group to run the process as (POSIX only) + :param extra_groups: supplementary groups to set in the subprocess (POSIX only) + :param umask: if not negative, this umask is applied in the child process before + running the given command (POSIX only) + :return: an asynchronous process object + + """ + kwargs: dict[str, Any] = {} + if user is not None: + kwargs["user"] = user + + if group is not None: + kwargs["group"] = group + + if extra_groups is not None: + kwargs["extra_groups"] = group + + if umask >= 0: + kwargs["umask"] = umask + + return await get_async_backend().open_process( + command, + stdin=stdin, + stdout=stdout, + stderr=stderr, + cwd=cwd, + env=env, + startupinfo=startupinfo, + creationflags=creationflags, + start_new_session=start_new_session, + pass_fds=pass_fds, + **kwargs, + ) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_synchronization.py b/ocr/.venv/Lib/site-packages/anyio/_core/_synchronization.py new file mode 100644 index 00000000..66c1a9d3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_synchronization.py @@ -0,0 +1,753 @@ +from __future__ import annotations + +import math +from collections import deque +from collections.abc import Callable +from dataclasses import dataclass +from types import TracebackType +from typing import TypeVar + +from sniffio import AsyncLibraryNotFoundError + +from ..lowlevel import checkpoint_if_cancelled +from ._eventloop import get_async_backend +from ._exceptions import BusyResourceError +from ._tasks import CancelScope +from ._testing import TaskInfo, get_current_task + +T = TypeVar("T") + + +@dataclass(frozen=True) +class EventStatistics: + """ + :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Event.wait` + """ + + tasks_waiting: int + + +@dataclass(frozen=True) +class CapacityLimiterStatistics: + """ + :ivar int borrowed_tokens: number of tokens currently borrowed by tasks + :ivar float total_tokens: total number of available tokens + :ivar tuple borrowers: tasks or other objects currently holding tokens borrowed from + this limiter + :ivar int tasks_waiting: number of tasks waiting on + :meth:`~.CapacityLimiter.acquire` or + :meth:`~.CapacityLimiter.acquire_on_behalf_of` + """ + + borrowed_tokens: int + total_tokens: float + borrowers: tuple[object, ...] + tasks_waiting: int + + +@dataclass(frozen=True) +class LockStatistics: + """ + :ivar bool locked: flag indicating if this lock is locked or not + :ivar ~anyio.TaskInfo owner: task currently holding the lock (or ``None`` if the + lock is not held by any task) + :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Lock.acquire` + """ + + locked: bool + owner: TaskInfo | None + tasks_waiting: int + + +@dataclass(frozen=True) +class ConditionStatistics: + """ + :ivar int tasks_waiting: number of tasks blocked on :meth:`~.Condition.wait` + :ivar ~anyio.LockStatistics lock_statistics: statistics of the underlying + :class:`~.Lock` + """ + + tasks_waiting: int + lock_statistics: LockStatistics + + +@dataclass(frozen=True) +class SemaphoreStatistics: + """ + :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Semaphore.acquire` + + """ + + tasks_waiting: int + + +class Event: + def __new__(cls) -> Event: + try: + return get_async_backend().create_event() + except AsyncLibraryNotFoundError: + return EventAdapter() + + def set(self) -> None: + """Set the flag, notifying all listeners.""" + raise NotImplementedError + + def is_set(self) -> bool: + """Return ``True`` if the flag is set, ``False`` if not.""" + raise NotImplementedError + + async def wait(self) -> None: + """ + Wait until the flag has been set. + + If the flag has already been set when this method is called, it returns + immediately. + + """ + raise NotImplementedError + + def statistics(self) -> EventStatistics: + """Return statistics about the current state of this event.""" + raise NotImplementedError + + +class EventAdapter(Event): + _internal_event: Event | None = None + _is_set: bool = False + + def __new__(cls) -> EventAdapter: + return object.__new__(cls) + + @property + def _event(self) -> Event: + if self._internal_event is None: + self._internal_event = get_async_backend().create_event() + if self._is_set: + self._internal_event.set() + + return self._internal_event + + def set(self) -> None: + if self._internal_event is None: + self._is_set = True + else: + self._event.set() + + def is_set(self) -> bool: + if self._internal_event is None: + return self._is_set + + return self._internal_event.is_set() + + async def wait(self) -> None: + await self._event.wait() + + def statistics(self) -> EventStatistics: + if self._internal_event is None: + return EventStatistics(tasks_waiting=0) + + return self._internal_event.statistics() + + +class Lock: + def __new__(cls, *, fast_acquire: bool = False) -> Lock: + try: + return get_async_backend().create_lock(fast_acquire=fast_acquire) + except AsyncLibraryNotFoundError: + return LockAdapter(fast_acquire=fast_acquire) + + async def __aenter__(self) -> None: + await self.acquire() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.release() + + async def acquire(self) -> None: + """Acquire the lock.""" + raise NotImplementedError + + def acquire_nowait(self) -> None: + """ + Acquire the lock, without blocking. + + :raises ~anyio.WouldBlock: if the operation would block + + """ + raise NotImplementedError + + def release(self) -> None: + """Release the lock.""" + raise NotImplementedError + + def locked(self) -> bool: + """Return True if the lock is currently held.""" + raise NotImplementedError + + def statistics(self) -> LockStatistics: + """ + Return statistics about the current state of this lock. + + .. versionadded:: 3.0 + """ + raise NotImplementedError + + +class LockAdapter(Lock): + _internal_lock: Lock | None = None + + def __new__(cls, *, fast_acquire: bool = False) -> LockAdapter: + return object.__new__(cls) + + def __init__(self, *, fast_acquire: bool = False): + self._fast_acquire = fast_acquire + + @property + def _lock(self) -> Lock: + if self._internal_lock is None: + self._internal_lock = get_async_backend().create_lock( + fast_acquire=self._fast_acquire + ) + + return self._internal_lock + + async def __aenter__(self) -> None: + await self._lock.acquire() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + if self._internal_lock is not None: + self._internal_lock.release() + + async def acquire(self) -> None: + """Acquire the lock.""" + await self._lock.acquire() + + def acquire_nowait(self) -> None: + """ + Acquire the lock, without blocking. + + :raises ~anyio.WouldBlock: if the operation would block + + """ + self._lock.acquire_nowait() + + def release(self) -> None: + """Release the lock.""" + self._lock.release() + + def locked(self) -> bool: + """Return True if the lock is currently held.""" + return self._lock.locked() + + def statistics(self) -> LockStatistics: + """ + Return statistics about the current state of this lock. + + .. versionadded:: 3.0 + + """ + if self._internal_lock is None: + return LockStatistics(False, None, 0) + + return self._internal_lock.statistics() + + +class Condition: + _owner_task: TaskInfo | None = None + + def __init__(self, lock: Lock | None = None): + self._lock = lock or Lock() + self._waiters: deque[Event] = deque() + + async def __aenter__(self) -> None: + await self.acquire() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.release() + + def _check_acquired(self) -> None: + if self._owner_task != get_current_task(): + raise RuntimeError("The current task is not holding the underlying lock") + + async def acquire(self) -> None: + """Acquire the underlying lock.""" + await self._lock.acquire() + self._owner_task = get_current_task() + + def acquire_nowait(self) -> None: + """ + Acquire the underlying lock, without blocking. + + :raises ~anyio.WouldBlock: if the operation would block + + """ + self._lock.acquire_nowait() + self._owner_task = get_current_task() + + def release(self) -> None: + """Release the underlying lock.""" + self._lock.release() + + def locked(self) -> bool: + """Return True if the lock is set.""" + return self._lock.locked() + + def notify(self, n: int = 1) -> None: + """Notify exactly n listeners.""" + self._check_acquired() + for _ in range(n): + try: + event = self._waiters.popleft() + except IndexError: + break + + event.set() + + def notify_all(self) -> None: + """Notify all the listeners.""" + self._check_acquired() + for event in self._waiters: + event.set() + + self._waiters.clear() + + async def wait(self) -> None: + """Wait for a notification.""" + await checkpoint_if_cancelled() + self._check_acquired() + event = Event() + self._waiters.append(event) + self.release() + try: + await event.wait() + except BaseException: + if not event.is_set(): + self._waiters.remove(event) + + raise + finally: + with CancelScope(shield=True): + await self.acquire() + + async def wait_for(self, predicate: Callable[[], T]) -> T: + """ + Wait until a predicate becomes true. + + :param predicate: a callable that returns a truthy value when the condition is + met + :return: the result of the predicate + + .. versionadded:: 4.11.0 + + """ + while not (result := predicate()): + await self.wait() + + return result + + def statistics(self) -> ConditionStatistics: + """ + Return statistics about the current state of this condition. + + .. versionadded:: 3.0 + """ + return ConditionStatistics(len(self._waiters), self._lock.statistics()) + + +class Semaphore: + def __new__( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> Semaphore: + try: + return get_async_backend().create_semaphore( + initial_value, max_value=max_value, fast_acquire=fast_acquire + ) + except AsyncLibraryNotFoundError: + return SemaphoreAdapter(initial_value, max_value=max_value) + + def __init__( + self, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ): + if not isinstance(initial_value, int): + raise TypeError("initial_value must be an integer") + if initial_value < 0: + raise ValueError("initial_value must be >= 0") + if max_value is not None: + if not isinstance(max_value, int): + raise TypeError("max_value must be an integer or None") + if max_value < initial_value: + raise ValueError( + "max_value must be equal to or higher than initial_value" + ) + + self._fast_acquire = fast_acquire + + async def __aenter__(self) -> Semaphore: + await self.acquire() + return self + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.release() + + async def acquire(self) -> None: + """Decrement the semaphore value, blocking if necessary.""" + raise NotImplementedError + + def acquire_nowait(self) -> None: + """ + Acquire the underlying lock, without blocking. + + :raises ~anyio.WouldBlock: if the operation would block + + """ + raise NotImplementedError + + def release(self) -> None: + """Increment the semaphore value.""" + raise NotImplementedError + + @property + def value(self) -> int: + """The current value of the semaphore.""" + raise NotImplementedError + + @property + def max_value(self) -> int | None: + """The maximum value of the semaphore.""" + raise NotImplementedError + + def statistics(self) -> SemaphoreStatistics: + """ + Return statistics about the current state of this semaphore. + + .. versionadded:: 3.0 + """ + raise NotImplementedError + + +class SemaphoreAdapter(Semaphore): + _internal_semaphore: Semaphore | None = None + + def __new__( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> SemaphoreAdapter: + return object.__new__(cls) + + def __init__( + self, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> None: + super().__init__(initial_value, max_value=max_value, fast_acquire=fast_acquire) + self._initial_value = initial_value + self._max_value = max_value + + @property + def _semaphore(self) -> Semaphore: + if self._internal_semaphore is None: + self._internal_semaphore = get_async_backend().create_semaphore( + self._initial_value, max_value=self._max_value + ) + + return self._internal_semaphore + + async def acquire(self) -> None: + await self._semaphore.acquire() + + def acquire_nowait(self) -> None: + self._semaphore.acquire_nowait() + + def release(self) -> None: + self._semaphore.release() + + @property + def value(self) -> int: + if self._internal_semaphore is None: + return self._initial_value + + return self._semaphore.value + + @property + def max_value(self) -> int | None: + return self._max_value + + def statistics(self) -> SemaphoreStatistics: + if self._internal_semaphore is None: + return SemaphoreStatistics(tasks_waiting=0) + + return self._semaphore.statistics() + + +class CapacityLimiter: + def __new__(cls, total_tokens: float) -> CapacityLimiter: + try: + return get_async_backend().create_capacity_limiter(total_tokens) + except AsyncLibraryNotFoundError: + return CapacityLimiterAdapter(total_tokens) + + async def __aenter__(self) -> None: + raise NotImplementedError + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + raise NotImplementedError + + @property + def total_tokens(self) -> float: + """ + The total number of tokens available for borrowing. + + This is a read-write property. If the total number of tokens is increased, the + proportionate number of tasks waiting on this limiter will be granted their + tokens. + + .. versionchanged:: 3.0 + The property is now writable. + + """ + raise NotImplementedError + + @total_tokens.setter + def total_tokens(self, value: float) -> None: + raise NotImplementedError + + @property + def borrowed_tokens(self) -> int: + """The number of tokens that have currently been borrowed.""" + raise NotImplementedError + + @property + def available_tokens(self) -> float: + """The number of tokens currently available to be borrowed""" + raise NotImplementedError + + def acquire_nowait(self) -> None: + """ + Acquire a token for the current task without waiting for one to become + available. + + :raises ~anyio.WouldBlock: if there are no tokens available for borrowing + + """ + raise NotImplementedError + + def acquire_on_behalf_of_nowait(self, borrower: object) -> None: + """ + Acquire a token without waiting for one to become available. + + :param borrower: the entity borrowing a token + :raises ~anyio.WouldBlock: if there are no tokens available for borrowing + + """ + raise NotImplementedError + + async def acquire(self) -> None: + """ + Acquire a token for the current task, waiting if necessary for one to become + available. + + """ + raise NotImplementedError + + async def acquire_on_behalf_of(self, borrower: object) -> None: + """ + Acquire a token, waiting if necessary for one to become available. + + :param borrower: the entity borrowing a token + + """ + raise NotImplementedError + + def release(self) -> None: + """ + Release the token held by the current task. + + :raises RuntimeError: if the current task has not borrowed a token from this + limiter. + + """ + raise NotImplementedError + + def release_on_behalf_of(self, borrower: object) -> None: + """ + Release the token held by the given borrower. + + :raises RuntimeError: if the borrower has not borrowed a token from this + limiter. + + """ + raise NotImplementedError + + def statistics(self) -> CapacityLimiterStatistics: + """ + Return statistics about the current state of this limiter. + + .. versionadded:: 3.0 + + """ + raise NotImplementedError + + +class CapacityLimiterAdapter(CapacityLimiter): + _internal_limiter: CapacityLimiter | None = None + + def __new__(cls, total_tokens: float) -> CapacityLimiterAdapter: + return object.__new__(cls) + + def __init__(self, total_tokens: float) -> None: + self.total_tokens = total_tokens + + @property + def _limiter(self) -> CapacityLimiter: + if self._internal_limiter is None: + self._internal_limiter = get_async_backend().create_capacity_limiter( + self._total_tokens + ) + + return self._internal_limiter + + async def __aenter__(self) -> None: + await self._limiter.__aenter__() + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + return await self._limiter.__aexit__(exc_type, exc_val, exc_tb) + + @property + def total_tokens(self) -> float: + if self._internal_limiter is None: + return self._total_tokens + + return self._internal_limiter.total_tokens + + @total_tokens.setter + def total_tokens(self, value: float) -> None: + if not isinstance(value, int) and value is not math.inf: + raise TypeError("total_tokens must be an int or math.inf") + elif value < 1: + raise ValueError("total_tokens must be >= 1") + + if self._internal_limiter is None: + self._total_tokens = value + return + + self._limiter.total_tokens = value + + @property + def borrowed_tokens(self) -> int: + if self._internal_limiter is None: + return 0 + + return self._internal_limiter.borrowed_tokens + + @property + def available_tokens(self) -> float: + if self._internal_limiter is None: + return self._total_tokens + + return self._internal_limiter.available_tokens + + def acquire_nowait(self) -> None: + self._limiter.acquire_nowait() + + def acquire_on_behalf_of_nowait(self, borrower: object) -> None: + self._limiter.acquire_on_behalf_of_nowait(borrower) + + async def acquire(self) -> None: + await self._limiter.acquire() + + async def acquire_on_behalf_of(self, borrower: object) -> None: + await self._limiter.acquire_on_behalf_of(borrower) + + def release(self) -> None: + self._limiter.release() + + def release_on_behalf_of(self, borrower: object) -> None: + self._limiter.release_on_behalf_of(borrower) + + def statistics(self) -> CapacityLimiterStatistics: + if self._internal_limiter is None: + return CapacityLimiterStatistics( + borrowed_tokens=0, + total_tokens=self.total_tokens, + borrowers=(), + tasks_waiting=0, + ) + + return self._internal_limiter.statistics() + + +class ResourceGuard: + """ + A context manager for ensuring that a resource is only used by a single task at a + time. + + Entering this context manager while the previous has not exited it yet will trigger + :exc:`BusyResourceError`. + + :param action: the action to guard against (visible in the :exc:`BusyResourceError` + when triggered, e.g. "Another task is already {action} this resource") + + .. versionadded:: 4.1 + """ + + __slots__ = "action", "_guarded" + + def __init__(self, action: str = "using"): + self.action: str = action + self._guarded = False + + def __enter__(self) -> None: + if self._guarded: + raise BusyResourceError(self.action) + + self._guarded = True + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self._guarded = False diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_tasks.py b/ocr/.venv/Lib/site-packages/anyio/_core/_tasks.py new file mode 100644 index 00000000..d37efe31 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_tasks.py @@ -0,0 +1,163 @@ +from __future__ import annotations + +import math +from collections.abc import Generator +from contextlib import contextmanager +from types import TracebackType + +from ..abc._tasks import TaskGroup, TaskStatus +from ._eventloop import get_async_backend + + +class _IgnoredTaskStatus(TaskStatus[object]): + def started(self, value: object = None) -> None: + pass + + +TASK_STATUS_IGNORED = _IgnoredTaskStatus() + + +class CancelScope: + """ + Wraps a unit of work that can be made separately cancellable. + + :param deadline: The time (clock value) when this scope is cancelled automatically + :param shield: ``True`` to shield the cancel scope from external cancellation + """ + + def __new__( + cls, *, deadline: float = math.inf, shield: bool = False + ) -> CancelScope: + return get_async_backend().create_cancel_scope(shield=shield, deadline=deadline) + + def cancel(self, reason: str | None = None) -> None: + """ + Cancel this scope immediately. + + :param reason: a message describing the reason for the cancellation + + """ + raise NotImplementedError + + @property + def deadline(self) -> float: + """ + The time (clock value) when this scope is cancelled automatically. + + Will be ``float('inf')`` if no timeout has been set. + + """ + raise NotImplementedError + + @deadline.setter + def deadline(self, value: float) -> None: + raise NotImplementedError + + @property + def cancel_called(self) -> bool: + """``True`` if :meth:`cancel` has been called.""" + raise NotImplementedError + + @property + def cancelled_caught(self) -> bool: + """ + ``True`` if this scope suppressed a cancellation exception it itself raised. + + This is typically used to check if any work was interrupted, or to see if the + scope was cancelled due to its deadline being reached. The value will, however, + only be ``True`` if the cancellation was triggered by the scope itself (and not + an outer scope). + + """ + raise NotImplementedError + + @property + def shield(self) -> bool: + """ + ``True`` if this scope is shielded from external cancellation. + + While a scope is shielded, it will not receive cancellations from outside. + + """ + raise NotImplementedError + + @shield.setter + def shield(self, value: bool) -> None: + raise NotImplementedError + + def __enter__(self) -> CancelScope: + raise NotImplementedError + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + raise NotImplementedError + + +@contextmanager +def fail_after( + delay: float | None, shield: bool = False +) -> Generator[CancelScope, None, None]: + """ + Create a context manager which raises a :class:`TimeoutError` if does not finish in + time. + + :param delay: maximum allowed time (in seconds) before raising the exception, or + ``None`` to disable the timeout + :param shield: ``True`` to shield the cancel scope from external cancellation + :return: a context manager that yields a cancel scope + :rtype: :class:`~typing.ContextManager`\\[:class:`~anyio.CancelScope`\\] + + """ + current_time = get_async_backend().current_time + deadline = (current_time() + delay) if delay is not None else math.inf + with get_async_backend().create_cancel_scope( + deadline=deadline, shield=shield + ) as cancel_scope: + yield cancel_scope + + if cancel_scope.cancelled_caught and current_time() >= cancel_scope.deadline: + raise TimeoutError + + +def move_on_after(delay: float | None, shield: bool = False) -> CancelScope: + """ + Create a cancel scope with a deadline that expires after the given delay. + + :param delay: maximum allowed time (in seconds) before exiting the context block, or + ``None`` to disable the timeout + :param shield: ``True`` to shield the cancel scope from external cancellation + :return: a cancel scope + + """ + deadline = ( + (get_async_backend().current_time() + delay) if delay is not None else math.inf + ) + return get_async_backend().create_cancel_scope(deadline=deadline, shield=shield) + + +def current_effective_deadline() -> float: + """ + Return the nearest deadline among all the cancel scopes effective for the current + task. + + :return: a clock value from the event loop's internal clock (or ``float('inf')`` if + there is no deadline in effect, or ``float('-inf')`` if the current scope has + been cancelled) + :rtype: float + + """ + return get_async_backend().current_effective_deadline() + + +def create_task_group() -> TaskGroup: + """ + Create a task group. + + :return: a task group + + """ + return get_async_backend().create_task_group() diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_tempfile.py b/ocr/.venv/Lib/site-packages/anyio/_core/_tempfile.py new file mode 100644 index 00000000..fbb6b14a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_tempfile.py @@ -0,0 +1,616 @@ +from __future__ import annotations + +import os +import sys +import tempfile +from collections.abc import Iterable +from io import BytesIO, TextIOWrapper +from types import TracebackType +from typing import ( + TYPE_CHECKING, + Any, + AnyStr, + Generic, + overload, +) + +from .. import to_thread +from .._core._fileio import AsyncFile +from ..lowlevel import checkpoint_if_cancelled + +if TYPE_CHECKING: + from _typeshed import OpenBinaryMode, OpenTextMode, ReadableBuffer, WriteableBuffer + + +class TemporaryFile(Generic[AnyStr]): + """ + An asynchronous temporary file that is automatically created and cleaned up. + + This class provides an asynchronous context manager interface to a temporary file. + The file is created using Python's standard `tempfile.TemporaryFile` function in a + background thread, and is wrapped as an asynchronous file using `AsyncFile`. + + :param mode: The mode in which the file is opened. Defaults to "w+b". + :param buffering: The buffering policy (-1 means the default buffering). + :param encoding: The encoding used to decode or encode the file. Only applicable in + text mode. + :param newline: Controls how universal newlines mode works (only applicable in text + mode). + :param suffix: The suffix for the temporary file name. + :param prefix: The prefix for the temporary file name. + :param dir: The directory in which the temporary file is created. + :param errors: The error handling scheme used for encoding/decoding errors. + """ + + _async_file: AsyncFile[AnyStr] + + @overload + def __init__( + self: TemporaryFile[bytes], + mode: OpenBinaryMode = ..., + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + *, + errors: str | None = ..., + ): ... + @overload + def __init__( + self: TemporaryFile[str], + mode: OpenTextMode, + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + *, + errors: str | None = ..., + ): ... + + def __init__( + self, + mode: OpenTextMode | OpenBinaryMode = "w+b", + buffering: int = -1, + encoding: str | None = None, + newline: str | None = None, + suffix: str | None = None, + prefix: str | None = None, + dir: str | None = None, + *, + errors: str | None = None, + ) -> None: + self.mode = mode + self.buffering = buffering + self.encoding = encoding + self.newline = newline + self.suffix: str | None = suffix + self.prefix: str | None = prefix + self.dir: str | None = dir + self.errors = errors + + async def __aenter__(self) -> AsyncFile[AnyStr]: + fp = await to_thread.run_sync( + lambda: tempfile.TemporaryFile( + self.mode, + self.buffering, + self.encoding, + self.newline, + self.suffix, + self.prefix, + self.dir, + errors=self.errors, + ) + ) + self._async_file = AsyncFile(fp) + return self._async_file + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + traceback: TracebackType | None, + ) -> None: + await self._async_file.aclose() + + +class NamedTemporaryFile(Generic[AnyStr]): + """ + An asynchronous named temporary file that is automatically created and cleaned up. + + This class provides an asynchronous context manager for a temporary file with a + visible name in the file system. It uses Python's standard + :func:`~tempfile.NamedTemporaryFile` function and wraps the file object with + :class:`AsyncFile` for asynchronous operations. + + :param mode: The mode in which the file is opened. Defaults to "w+b". + :param buffering: The buffering policy (-1 means the default buffering). + :param encoding: The encoding used to decode or encode the file. Only applicable in + text mode. + :param newline: Controls how universal newlines mode works (only applicable in text + mode). + :param suffix: The suffix for the temporary file name. + :param prefix: The prefix for the temporary file name. + :param dir: The directory in which the temporary file is created. + :param delete: Whether to delete the file when it is closed. + :param errors: The error handling scheme used for encoding/decoding errors. + :param delete_on_close: (Python 3.12+) Whether to delete the file on close. + """ + + _async_file: AsyncFile[AnyStr] + + @overload + def __init__( + self: NamedTemporaryFile[bytes], + mode: OpenBinaryMode = ..., + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + delete: bool = ..., + *, + errors: str | None = ..., + delete_on_close: bool = ..., + ): ... + @overload + def __init__( + self: NamedTemporaryFile[str], + mode: OpenTextMode, + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + delete: bool = ..., + *, + errors: str | None = ..., + delete_on_close: bool = ..., + ): ... + + def __init__( + self, + mode: OpenBinaryMode | OpenTextMode = "w+b", + buffering: int = -1, + encoding: str | None = None, + newline: str | None = None, + suffix: str | None = None, + prefix: str | None = None, + dir: str | None = None, + delete: bool = True, + *, + errors: str | None = None, + delete_on_close: bool = True, + ) -> None: + self._params: dict[str, Any] = { + "mode": mode, + "buffering": buffering, + "encoding": encoding, + "newline": newline, + "suffix": suffix, + "prefix": prefix, + "dir": dir, + "delete": delete, + "errors": errors, + } + if sys.version_info >= (3, 12): + self._params["delete_on_close"] = delete_on_close + + async def __aenter__(self) -> AsyncFile[AnyStr]: + fp = await to_thread.run_sync( + lambda: tempfile.NamedTemporaryFile(**self._params) + ) + self._async_file = AsyncFile(fp) + return self._async_file + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + traceback: TracebackType | None, + ) -> None: + await self._async_file.aclose() + + +class SpooledTemporaryFile(AsyncFile[AnyStr]): + """ + An asynchronous spooled temporary file that starts in memory and is spooled to disk. + + This class provides an asynchronous interface to a spooled temporary file, much like + Python's standard :class:`~tempfile.SpooledTemporaryFile`. It supports asynchronous + write operations and provides a method to force a rollover to disk. + + :param max_size: Maximum size in bytes before the file is rolled over to disk. + :param mode: The mode in which the file is opened. Defaults to "w+b". + :param buffering: The buffering policy (-1 means the default buffering). + :param encoding: The encoding used to decode or encode the file (text mode only). + :param newline: Controls how universal newlines mode works (text mode only). + :param suffix: The suffix for the temporary file name. + :param prefix: The prefix for the temporary file name. + :param dir: The directory in which the temporary file is created. + :param errors: The error handling scheme used for encoding/decoding errors. + """ + + _rolled: bool = False + + @overload + def __init__( + self: SpooledTemporaryFile[bytes], + max_size: int = ..., + mode: OpenBinaryMode = ..., + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + *, + errors: str | None = ..., + ): ... + @overload + def __init__( + self: SpooledTemporaryFile[str], + max_size: int = ..., + mode: OpenTextMode = ..., + buffering: int = ..., + encoding: str | None = ..., + newline: str | None = ..., + suffix: str | None = ..., + prefix: str | None = ..., + dir: str | None = ..., + *, + errors: str | None = ..., + ): ... + + def __init__( + self, + max_size: int = 0, + mode: OpenBinaryMode | OpenTextMode = "w+b", + buffering: int = -1, + encoding: str | None = None, + newline: str | None = None, + suffix: str | None = None, + prefix: str | None = None, + dir: str | None = None, + *, + errors: str | None = None, + ) -> None: + self._tempfile_params: dict[str, Any] = { + "mode": mode, + "buffering": buffering, + "encoding": encoding, + "newline": newline, + "suffix": suffix, + "prefix": prefix, + "dir": dir, + "errors": errors, + } + self._max_size = max_size + if "b" in mode: + super().__init__(BytesIO()) # type: ignore[arg-type] + else: + super().__init__( + TextIOWrapper( # type: ignore[arg-type] + BytesIO(), + encoding=encoding, + errors=errors, + newline=newline, + write_through=True, + ) + ) + + async def aclose(self) -> None: + if not self._rolled: + self._fp.close() + return + + await super().aclose() + + async def _check(self) -> None: + if self._rolled or self._fp.tell() <= self._max_size: + return + + await self.rollover() + + async def rollover(self) -> None: + if self._rolled: + return + + self._rolled = True + buffer = self._fp + buffer.seek(0) + self._fp = await to_thread.run_sync( + lambda: tempfile.TemporaryFile(**self._tempfile_params) + ) + await self.write(buffer.read()) + buffer.close() + + @property + def closed(self) -> bool: + return self._fp.closed + + async def read(self, size: int = -1) -> AnyStr: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.read(size) + + return await super().read(size) # type: ignore[return-value] + + async def read1(self: SpooledTemporaryFile[bytes], size: int = -1) -> bytes: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.read1(size) + + return await super().read1(size) + + async def readline(self) -> AnyStr: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.readline() + + return await super().readline() # type: ignore[return-value] + + async def readlines(self) -> list[AnyStr]: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.readlines() + + return await super().readlines() # type: ignore[return-value] + + async def readinto(self: SpooledTemporaryFile[bytes], b: WriteableBuffer) -> int: + if not self._rolled: + await checkpoint_if_cancelled() + self._fp.readinto(b) + + return await super().readinto(b) + + async def readinto1(self: SpooledTemporaryFile[bytes], b: WriteableBuffer) -> int: + if not self._rolled: + await checkpoint_if_cancelled() + self._fp.readinto(b) + + return await super().readinto1(b) + + async def seek(self, offset: int, whence: int | None = os.SEEK_SET) -> int: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.seek(offset, whence) + + return await super().seek(offset, whence) + + async def tell(self) -> int: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.tell() + + return await super().tell() + + async def truncate(self, size: int | None = None) -> int: + if not self._rolled: + await checkpoint_if_cancelled() + return self._fp.truncate(size) + + return await super().truncate(size) + + @overload + async def write(self: SpooledTemporaryFile[bytes], b: ReadableBuffer) -> int: ... + @overload + async def write(self: SpooledTemporaryFile[str], b: str) -> int: ... + + async def write(self, b: ReadableBuffer | str) -> int: + """ + Asynchronously write data to the spooled temporary file. + + If the file has not yet been rolled over, the data is written synchronously, + and a rollover is triggered if the size exceeds the maximum size. + + :param s: The data to write. + :return: The number of bytes written. + :raises RuntimeError: If the underlying file is not initialized. + + """ + if not self._rolled: + await checkpoint_if_cancelled() + result = self._fp.write(b) + await self._check() + return result + + return await super().write(b) # type: ignore[misc] + + @overload + async def writelines( + self: SpooledTemporaryFile[bytes], lines: Iterable[ReadableBuffer] + ) -> None: ... + @overload + async def writelines( + self: SpooledTemporaryFile[str], lines: Iterable[str] + ) -> None: ... + + async def writelines(self, lines: Iterable[str] | Iterable[ReadableBuffer]) -> None: + """ + Asynchronously write a list of lines to the spooled temporary file. + + If the file has not yet been rolled over, the lines are written synchronously, + and a rollover is triggered if the size exceeds the maximum size. + + :param lines: An iterable of lines to write. + :raises RuntimeError: If the underlying file is not initialized. + + """ + if not self._rolled: + await checkpoint_if_cancelled() + result = self._fp.writelines(lines) + await self._check() + return result + + return await super().writelines(lines) # type: ignore[misc] + + +class TemporaryDirectory(Generic[AnyStr]): + """ + An asynchronous temporary directory that is created and cleaned up automatically. + + This class provides an asynchronous context manager for creating a temporary + directory. It wraps Python's standard :class:`~tempfile.TemporaryDirectory` to + perform directory creation and cleanup operations in a background thread. + + :param suffix: Suffix to be added to the temporary directory name. + :param prefix: Prefix to be added to the temporary directory name. + :param dir: The parent directory where the temporary directory is created. + :param ignore_cleanup_errors: Whether to ignore errors during cleanup + (Python 3.10+). + :param delete: Whether to delete the directory upon closing (Python 3.12+). + """ + + def __init__( + self, + suffix: AnyStr | None = None, + prefix: AnyStr | None = None, + dir: AnyStr | None = None, + *, + ignore_cleanup_errors: bool = False, + delete: bool = True, + ) -> None: + self.suffix: AnyStr | None = suffix + self.prefix: AnyStr | None = prefix + self.dir: AnyStr | None = dir + self.ignore_cleanup_errors = ignore_cleanup_errors + self.delete = delete + + self._tempdir: tempfile.TemporaryDirectory | None = None + + async def __aenter__(self) -> str: + params: dict[str, Any] = { + "suffix": self.suffix, + "prefix": self.prefix, + "dir": self.dir, + } + if sys.version_info >= (3, 10): + params["ignore_cleanup_errors"] = self.ignore_cleanup_errors + + if sys.version_info >= (3, 12): + params["delete"] = self.delete + + self._tempdir = await to_thread.run_sync( + lambda: tempfile.TemporaryDirectory(**params) + ) + return await to_thread.run_sync(self._tempdir.__enter__) + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + traceback: TracebackType | None, + ) -> None: + if self._tempdir is not None: + await to_thread.run_sync( + self._tempdir.__exit__, exc_type, exc_value, traceback + ) + + async def cleanup(self) -> None: + if self._tempdir is not None: + await to_thread.run_sync(self._tempdir.cleanup) + + +@overload +async def mkstemp( + suffix: str | None = None, + prefix: str | None = None, + dir: str | None = None, + text: bool = False, +) -> tuple[int, str]: ... + + +@overload +async def mkstemp( + suffix: bytes | None = None, + prefix: bytes | None = None, + dir: bytes | None = None, + text: bool = False, +) -> tuple[int, bytes]: ... + + +async def mkstemp( + suffix: AnyStr | None = None, + prefix: AnyStr | None = None, + dir: AnyStr | None = None, + text: bool = False, +) -> tuple[int, str | bytes]: + """ + Asynchronously create a temporary file and return an OS-level handle and the file + name. + + This function wraps `tempfile.mkstemp` and executes it in a background thread. + + :param suffix: Suffix to be added to the file name. + :param prefix: Prefix to be added to the file name. + :param dir: Directory in which the temporary file is created. + :param text: Whether the file is opened in text mode. + :return: A tuple containing the file descriptor and the file name. + + """ + return await to_thread.run_sync(tempfile.mkstemp, suffix, prefix, dir, text) + + +@overload +async def mkdtemp( + suffix: str | None = None, + prefix: str | None = None, + dir: str | None = None, +) -> str: ... + + +@overload +async def mkdtemp( + suffix: bytes | None = None, + prefix: bytes | None = None, + dir: bytes | None = None, +) -> bytes: ... + + +async def mkdtemp( + suffix: AnyStr | None = None, + prefix: AnyStr | None = None, + dir: AnyStr | None = None, +) -> str | bytes: + """ + Asynchronously create a temporary directory and return its path. + + This function wraps `tempfile.mkdtemp` and executes it in a background thread. + + :param suffix: Suffix to be added to the directory name. + :param prefix: Prefix to be added to the directory name. + :param dir: Parent directory where the temporary directory is created. + :return: The path of the created temporary directory. + + """ + return await to_thread.run_sync(tempfile.mkdtemp, suffix, prefix, dir) + + +async def gettempdir() -> str: + """ + Asynchronously return the name of the directory used for temporary files. + + This function wraps `tempfile.gettempdir` and executes it in a background thread. + + :return: The path of the temporary directory as a string. + + """ + return await to_thread.run_sync(tempfile.gettempdir) + + +async def gettempdirb() -> bytes: + """ + Asynchronously return the name of the directory used for temporary files in bytes. + + This function wraps `tempfile.gettempdirb` and executes it in a background thread. + + :return: The path of the temporary directory as bytes. + + """ + return await to_thread.run_sync(tempfile.gettempdirb) diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_testing.py b/ocr/.venv/Lib/site-packages/anyio/_core/_testing.py new file mode 100644 index 00000000..9e28b227 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_testing.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +from collections.abc import Awaitable, Generator +from typing import Any, cast + +from ._eventloop import get_async_backend + + +class TaskInfo: + """ + Represents an asynchronous task. + + :ivar int id: the unique identifier of the task + :ivar parent_id: the identifier of the parent task, if any + :vartype parent_id: Optional[int] + :ivar str name: the description of the task (if any) + :ivar ~collections.abc.Coroutine coro: the coroutine object of the task + """ + + __slots__ = "_name", "id", "parent_id", "name", "coro" + + def __init__( + self, + id: int, + parent_id: int | None, + name: str | None, + coro: Generator[Any, Any, Any] | Awaitable[Any], + ): + func = get_current_task + self._name = f"{func.__module__}.{func.__qualname__}" + self.id: int = id + self.parent_id: int | None = parent_id + self.name: str | None = name + self.coro: Generator[Any, Any, Any] | Awaitable[Any] = coro + + def __eq__(self, other: object) -> bool: + if isinstance(other, TaskInfo): + return self.id == other.id + + return NotImplemented + + def __hash__(self) -> int: + return hash(self.id) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(id={self.id!r}, name={self.name!r})" + + def has_pending_cancellation(self) -> bool: + """ + Return ``True`` if the task has a cancellation pending, ``False`` otherwise. + + """ + return False + + +def get_current_task() -> TaskInfo: + """ + Return the current task. + + :return: a representation of the current task + + """ + return get_async_backend().get_current_task() + + +def get_running_tasks() -> list[TaskInfo]: + """ + Return a list of running tasks in the current event loop. + + :return: a list of task info objects + + """ + return cast("list[TaskInfo]", get_async_backend().get_running_tasks()) + + +async def wait_all_tasks_blocked() -> None: + """Wait until all other tasks are waiting for something.""" + await get_async_backend().wait_all_tasks_blocked() diff --git a/ocr/.venv/Lib/site-packages/anyio/_core/_typedattr.py b/ocr/.venv/Lib/site-packages/anyio/_core/_typedattr.py new file mode 100644 index 00000000..f358a448 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/_core/_typedattr.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +from collections.abc import Callable, Mapping +from typing import Any, TypeVar, final, overload + +from ._exceptions import TypedAttributeLookupError + +T_Attr = TypeVar("T_Attr") +T_Default = TypeVar("T_Default") +undefined = object() + + +def typed_attribute() -> Any: + """Return a unique object, used to mark typed attributes.""" + return object() + + +class TypedAttributeSet: + """ + Superclass for typed attribute collections. + + Checks that every public attribute of every subclass has a type annotation. + """ + + def __init_subclass__(cls) -> None: + annotations: dict[str, Any] = getattr(cls, "__annotations__", {}) + for attrname in dir(cls): + if not attrname.startswith("_") and attrname not in annotations: + raise TypeError( + f"Attribute {attrname!r} is missing its type annotation" + ) + + super().__init_subclass__() + + +class TypedAttributeProvider: + """Base class for classes that wish to provide typed extra attributes.""" + + @property + def extra_attributes(self) -> Mapping[T_Attr, Callable[[], T_Attr]]: + """ + A mapping of the extra attributes to callables that return the corresponding + values. + + If the provider wraps another provider, the attributes from that wrapper should + also be included in the returned mapping (but the wrapper may override the + callables from the wrapped instance). + + """ + return {} + + @overload + def extra(self, attribute: T_Attr) -> T_Attr: ... + + @overload + def extra(self, attribute: T_Attr, default: T_Default) -> T_Attr | T_Default: ... + + @final + def extra(self, attribute: Any, default: object = undefined) -> object: + """ + extra(attribute, default=undefined) + + Return the value of the given typed extra attribute. + + :param attribute: the attribute (member of a :class:`~TypedAttributeSet`) to + look for + :param default: the value that should be returned if no value is found for the + attribute + :raises ~anyio.TypedAttributeLookupError: if the search failed and no default + value was given + + """ + try: + getter = self.extra_attributes[attribute] + except KeyError: + if default is undefined: + raise TypedAttributeLookupError("Attribute not found") from None + else: + return default + + return getter() diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/__init__.py b/ocr/.venv/Lib/site-packages/anyio/abc/__init__.py new file mode 100644 index 00000000..d560ce3f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/__init__.py @@ -0,0 +1,58 @@ +from __future__ import annotations + +from ._eventloop import AsyncBackend as AsyncBackend +from ._resources import AsyncResource as AsyncResource +from ._sockets import ConnectedUDPSocket as ConnectedUDPSocket +from ._sockets import ConnectedUNIXDatagramSocket as ConnectedUNIXDatagramSocket +from ._sockets import IPAddressType as IPAddressType +from ._sockets import IPSockAddrType as IPSockAddrType +from ._sockets import SocketAttribute as SocketAttribute +from ._sockets import SocketListener as SocketListener +from ._sockets import SocketStream as SocketStream +from ._sockets import UDPPacketType as UDPPacketType +from ._sockets import UDPSocket as UDPSocket +from ._sockets import UNIXDatagramPacketType as UNIXDatagramPacketType +from ._sockets import UNIXDatagramSocket as UNIXDatagramSocket +from ._sockets import UNIXSocketStream as UNIXSocketStream +from ._streams import AnyByteReceiveStream as AnyByteReceiveStream +from ._streams import AnyByteSendStream as AnyByteSendStream +from ._streams import AnyByteStream as AnyByteStream +from ._streams import AnyByteStreamConnectable as AnyByteStreamConnectable +from ._streams import AnyUnreliableByteReceiveStream as AnyUnreliableByteReceiveStream +from ._streams import AnyUnreliableByteSendStream as AnyUnreliableByteSendStream +from ._streams import AnyUnreliableByteStream as AnyUnreliableByteStream +from ._streams import ByteReceiveStream as ByteReceiveStream +from ._streams import ByteSendStream as ByteSendStream +from ._streams import ByteStream as ByteStream +from ._streams import ByteStreamConnectable as ByteStreamConnectable +from ._streams import Listener as Listener +from ._streams import ObjectReceiveStream as ObjectReceiveStream +from ._streams import ObjectSendStream as ObjectSendStream +from ._streams import ObjectStream as ObjectStream +from ._streams import ObjectStreamConnectable as ObjectStreamConnectable +from ._streams import UnreliableObjectReceiveStream as UnreliableObjectReceiveStream +from ._streams import UnreliableObjectSendStream as UnreliableObjectSendStream +from ._streams import UnreliableObjectStream as UnreliableObjectStream +from ._subprocesses import Process as Process +from ._tasks import TaskGroup as TaskGroup +from ._tasks import TaskStatus as TaskStatus +from ._testing import TestRunner as TestRunner + +# Re-exported here, for backwards compatibility +# isort: off +from .._core._synchronization import ( + CapacityLimiter as CapacityLimiter, + Condition as Condition, + Event as Event, + Lock as Lock, + Semaphore as Semaphore, +) +from .._core._tasks import CancelScope as CancelScope +from ..from_thread import BlockingPortal as BlockingPortal + +# Re-export imports so they look like they live directly in this package +for __value in list(locals().values()): + if getattr(__value, "__module__", "").startswith("anyio.abc."): + __value.__module__ = __name__ + +del __value diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1ac4e830f9d98c16193204fa33afb7855d645f8 GIT binary patch literal 2171 zcmb`I$!;4*5Qb+Y?i@-KMN#{{Sc^r;b{r>`<5-r0K!9Kiq67yO27?i&EsZq`)7?}+ zp91&=e9GBA=9T7}lV2gHR28++_Aw;z^XtE>tDD_5JyD^MGw_r9tK>b*8^%A>xcy0D zVA)5xQ1)`Mqq+z8g7r<>-Pk`(94|g6G0M^%t=2Lq#@0mLe4;jIgOl!EOQ1q z2RY^}avt)`Ib;hg<~(u%3d|OAAM`O7ko%#ZxevJrMdp6w0T^H|BA1}VJm3!oWhgV3 zkcVK1c@Vh*73MPXFbp#fA&$C0OC zig^Ng8m5^ik!N6rc?x+JW|^mv=U|R`26-OlnP-s~V1aoKc@Y+w=aH9SiFv`l6D-3r z^P;~Jtimeu67m|XG2ij;2J5hnyzH*{)nEfQf=$>A?!mp_KHLu;zyt1E^}h)o!b9dY z|J&dZJTeXOo%sHp@!|1Dp@vLpt4ja#%#<>Vxj45#YP^hRS8v>2eP85cs zp@nw4j#JZ8I03c`xP}8-tG>*Vy}hW)@vXIVg_UmiT(7c7?q@TUx5M`H zwibt?A-oH5J@de&U&C#>HVaqg)%r%djLSW8PJH@zQ`mPLO5uBCd~J^LFCw~T8~(EU zYTkjbrRyWJD?^T*t3g9It?rd(Zk@p3%ab>F`k!w{v14~-w=TV_{KL1~-7`$yY{b{| zk9{7{HB;q_-m5v&2Qq44+2MX?j~sRWvy56zY~-j>!`g3ASMEqCeb~afmY?uWHCB>w z|Blmi8lGYASiptm;PXjkiE>p8&H*jyOHeE|+G77!7d|}B|8n8xkmt>u!iUQW89*^UzICbIpEukQ7+e~r#RA6mr8RwLCq*i};`V4p54xNCG z=N_i`+mKK2hvnZ_JCEzfN=Q|I^F~DBX?<6ya~(D7FPkEK<@mnP_V!*qYRGyO&-9|c z@14{Y*3~)|*|~EnRGo`q1B+q9w!P5Pwq0$uMffoGx2At=Rd6aVIlwk literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdc5d1c417fb92f60178931c868b4bb420fda2bc GIT binary patch literal 14019 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcdbff11079d7b90b7ccf626661fa5735e6b0517 GIT binary patch literal 1455 zcmah}L2uhO6ecBEk`=p26E`V#nXU#l_tryD6iw4&E3joio2{6pfu%(zRwI!vDW{3i z!-nO$>(1LTzhj5}2VHmCU&v|i(J>OE14h8~_sGY`?|tu4y5CO-jO4e?a@{B7Z!~U? z4j4}eq4p&JK?JQxO*2XndzDxFnO_H4;B3F@)L|An98^&qXE7x*7M)*c*8PHrP(&9* zMA8@WuYQ(@?kh4({=wUZv|Zy$>4rC@R(9yM(caVjuVusAJA7;#!;7Yt%|r|E>>q+D z$GkW>JfBKfi17bAZd!U+V6@vK0OJYre+WR5j0%!@f@Z$(vOo+Rry%QydtzN|Tm)Gt zBe5;+ip`4vSjS=uIPSFlJ$tT-m(uE)DdhaGB!#heO)MRAE7PLl)}}|=q`a!Y(pK_u zB~y+kCq^qhv#Gg`U`L4y@miY`3oa>FtB!?MjXZ18nk#-RP5ORP785w$%#5;WGm&Yj zY{OLnps}(#O0`NQoH3udz+8#603tTsMcsDaaL4G4b2}@Wk@LDFZGeYO1md*eB78x? zSPsPa`x7M$0sKrqkXPiA9+)mzm(*bUIP9jY@Ar4}Z>=;ofBRNyb(}ww_N39%{F|v% zuYr+l*xrj=7bYK_N_ColRgQC8HuCc+6clo`IalYUe!$1Y19qd=^t??N<1R(U25_mx z(t1Aybbf!OI-?u6HkM}vYoI%>KEe5ir%K@yt*2!>@T-N z7i4@jSn0dvZh#>QTCKRvoLt~ zr+B{yQ%L56)!P>d9V|1#)-r22AsWWUrFa(?T%KEqT(b8NInQnM^lss98#AVOEg8c$ zsI{0?hdLS8+<@c e1{dbmGRj%5DHeTiXyJvs_ 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 YtlRRM-U8k}RlI;27&qLd%9XkQ0wRg@+5i9m literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca4aefe1081ad147edd1118e278e8db309547b27 GIT binary patch literal 2612 zcmd5;OK;mo5GE-~qGZW-W7l!hINm&(R7I*>3!^CFxJD45b%Dff09wXk#a+p?`A~OP zwq@j2UwiEj=*@qLmmYfRIX9g;vy^1XRUgL^;%IkgIh=34nOUawdewrf`pd0wqik8f z<7E0O!sNMS+3FYu+~Rg*#kOzTICdh(ci_Je6=K(Suywv%YHfbd@ru}mAL9x z&3Z9fh--c=uKRV{5_Mks$@UjtTD;7?ON)EL<&~cc{t|cISdHo*=taZM7Fd#`n&~i2 z)Lz5M%G)n?z7?8fi>$4*WPy%_K1zAR%@()SAPHWIL`bGnnRz=bidZ`mS!E}cXDT=PoW77%0@rR5 zu%7BiObbOAk)R8cE)l09(IiUKUX$#e3OOJFz#}o^g6JcF*FA#&P?5BKECNl=LeTaV zDuuDDSS+Tkn8mClh3?BFu%}?-81EfKjv;twy|J$By(=WdRU+!hC0I3L_;zQj^}P~O zwT_QPnsi%V3w5H?UhBJ_NZx{rLeuS6tu&CWCO|lCeG|4@D%9fh9t%!bSEv?C24VV) zwS#9AFau59W^a&HC`&B#Xxi#z6S?1876vQ17OuK z_>=%|hjIao{w;fwfVSaW{5J7_hPMAJS;$LH+=!mE^UoQRvm);U+M7%)V01@7KSTXP z5EpAV!av%ORW$UXyuO~y*4I1&@&a?Q&-^O|zs{!s-#4j%zgEq}oxEgbc25kBD(t`2 z%Z!QHV#%Y}80Ge34A#8d_AsJo=8H)~VQ3T*Hy+hwC^p zJ3qpmC26V(izR>ky@`HvO8;n%9%})fH=aM4qyH53RqVJ4oQsrZRZ8QO_ahwFDE+a| zqLHRdDNh4RO;FxJ@c_jqC>kiP%ifHz_6=V2L?J{E&aZ0GDb#GI40j#xWjl|F zomJpFh6NE*shQ;A(7E8?-HvH~2E5___7BU=hmIA2Z2R83Uj=b9{`fR8y# vdLXhAJPI97R&WKs_Dr8Jubt;}=6#vR;VbO>3Qw?_= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +if sys.version_info >= (3, 10): + from typing import TypeAlias +else: + from typing_extensions import TypeAlias + +if TYPE_CHECKING: + from _typeshed import FileDescriptorLike + + from .._core._synchronization import CapacityLimiter, Event, Lock, Semaphore + from .._core._tasks import CancelScope + from .._core._testing import TaskInfo + from ..from_thread import BlockingPortal + from ._sockets import ( + ConnectedUDPSocket, + ConnectedUNIXDatagramSocket, + IPSockAddrType, + SocketListener, + SocketStream, + UDPSocket, + UNIXDatagramSocket, + UNIXSocketStream, + ) + from ._subprocesses import Process + from ._tasks import TaskGroup + from ._testing import TestRunner + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") +StrOrBytesPath: TypeAlias = Union[str, bytes, "PathLike[str]", "PathLike[bytes]"] + + +class AsyncBackend(metaclass=ABCMeta): + @classmethod + @abstractmethod + def run( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + options: dict[str, Any], + ) -> T_Retval: + """ + Run the given coroutine function in an asynchronous event loop. + + The current thread must not be already running an event loop. + + :param func: a coroutine function + :param args: positional arguments to ``func`` + :param kwargs: positional arguments to ``func`` + :param options: keyword arguments to call the backend ``run()`` implementation + with + :return: the return value of the coroutine function + """ + + @classmethod + @abstractmethod + def current_token(cls) -> object: + """ + Return an object that allows other threads to run code inside the event loop. + + :return: a token object, specific to the event loop running in the current + thread + """ + + @classmethod + @abstractmethod + def current_time(cls) -> float: + """ + Return the current value of the event loop's internal clock. + + :return: the clock value (seconds) + """ + + @classmethod + @abstractmethod + def cancelled_exception_class(cls) -> type[BaseException]: + """Return the exception class that is raised in a task if it's cancelled.""" + + @classmethod + @abstractmethod + async def checkpoint(cls) -> None: + """ + Check if the task has been cancelled, and allow rescheduling of other tasks. + + This is effectively the same as running :meth:`checkpoint_if_cancelled` and then + :meth:`cancel_shielded_checkpoint`. + """ + + @classmethod + async def checkpoint_if_cancelled(cls) -> None: + """ + Check if the current task group has been cancelled. + + This will check if the task has been cancelled, but will not allow other tasks + to be scheduled if not. + + """ + if cls.current_effective_deadline() == -math.inf: + await cls.checkpoint() + + @classmethod + async def cancel_shielded_checkpoint(cls) -> None: + """ + Allow the rescheduling of other tasks. + + This will give other tasks the opportunity to run, but without checking if the + current task group has been cancelled, unlike with :meth:`checkpoint`. + + """ + with cls.create_cancel_scope(shield=True): + await cls.sleep(0) + + @classmethod + @abstractmethod + async def sleep(cls, delay: float) -> None: + """ + Pause the current task for the specified duration. + + :param delay: the duration, in seconds + """ + + @classmethod + @abstractmethod + def create_cancel_scope( + cls, *, deadline: float = math.inf, shield: bool = False + ) -> CancelScope: + pass + + @classmethod + @abstractmethod + def current_effective_deadline(cls) -> float: + """ + Return the nearest deadline among all the cancel scopes effective for the + current task. + + :return: + - a clock value from the event loop's internal clock + - ``inf`` if there is no deadline in effect + - ``-inf`` if the current scope has been cancelled + :rtype: float + """ + + @classmethod + @abstractmethod + def create_task_group(cls) -> TaskGroup: + pass + + @classmethod + @abstractmethod + def create_event(cls) -> Event: + pass + + @classmethod + @abstractmethod + def create_lock(cls, *, fast_acquire: bool) -> Lock: + pass + + @classmethod + @abstractmethod + def create_semaphore( + cls, + initial_value: int, + *, + max_value: int | None = None, + fast_acquire: bool = False, + ) -> Semaphore: + pass + + @classmethod + @abstractmethod + def create_capacity_limiter(cls, total_tokens: float) -> CapacityLimiter: + pass + + @classmethod + @abstractmethod + async def run_sync_in_worker_thread( + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + abandon_on_cancel: bool = False, + limiter: CapacityLimiter | None = None, + ) -> T_Retval: + pass + + @classmethod + @abstractmethod + def check_cancelled(cls) -> None: + pass + + @classmethod + @abstractmethod + def run_async_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + pass + + @classmethod + @abstractmethod + def run_sync_from_thread( + cls, + func: Callable[[Unpack[PosArgsT]], T_Retval], + args: tuple[Unpack[PosArgsT]], + token: object, + ) -> T_Retval: + pass + + @classmethod + @abstractmethod + def create_blocking_portal(cls) -> BlockingPortal: + pass + + @classmethod + @abstractmethod + async def open_process( + cls, + command: StrOrBytesPath | Sequence[StrOrBytesPath], + *, + stdin: int | IO[Any] | None, + stdout: int | IO[Any] | None, + stderr: int | IO[Any] | None, + **kwargs: Any, + ) -> Process: + pass + + @classmethod + @abstractmethod + def setup_process_pool_exit_at_shutdown(cls, workers: set[Process]) -> None: + pass + + @classmethod + @abstractmethod + async def connect_tcp( + cls, host: str, port: int, local_address: IPSockAddrType | None = None + ) -> SocketStream: + pass + + @classmethod + @abstractmethod + async def connect_unix(cls, path: str | bytes) -> UNIXSocketStream: + pass + + @classmethod + @abstractmethod + def create_tcp_listener(cls, sock: socket) -> SocketListener: + pass + + @classmethod + @abstractmethod + def create_unix_listener(cls, sock: socket) -> SocketListener: + pass + + @classmethod + @abstractmethod + async def create_udp_socket( + cls, + family: AddressFamily, + local_address: IPSockAddrType | None, + remote_address: IPSockAddrType | None, + reuse_port: bool, + ) -> UDPSocket | ConnectedUDPSocket: + pass + + @classmethod + @overload + async def create_unix_datagram_socket( + cls, raw_socket: socket, remote_path: None + ) -> UNIXDatagramSocket: ... + + @classmethod + @overload + async def create_unix_datagram_socket( + cls, raw_socket: socket, remote_path: str | bytes + ) -> ConnectedUNIXDatagramSocket: ... + + @classmethod + @abstractmethod + async def create_unix_datagram_socket( + cls, raw_socket: socket, remote_path: str | bytes | None + ) -> UNIXDatagramSocket | ConnectedUNIXDatagramSocket: + pass + + @classmethod + @abstractmethod + async def getaddrinfo( + cls, + host: bytes | str | None, + port: str | int | None, + *, + family: int | AddressFamily = 0, + type: int | SocketKind = 0, + proto: int = 0, + flags: int = 0, + ) -> Sequence[ + tuple[ + AddressFamily, + SocketKind, + int, + str, + tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], + ] + ]: + pass + + @classmethod + @abstractmethod + async def getnameinfo( + cls, sockaddr: IPSockAddrType, flags: int = 0 + ) -> tuple[str, str]: + pass + + @classmethod + @abstractmethod + async def wait_readable(cls, obj: FileDescriptorLike) -> None: + pass + + @classmethod + @abstractmethod + async def wait_writable(cls, obj: FileDescriptorLike) -> None: + pass + + @classmethod + @abstractmethod + def notify_closing(cls, obj: FileDescriptorLike) -> None: + pass + + @classmethod + @abstractmethod + async def wrap_listener_socket(cls, sock: socket) -> SocketListener: + pass + + @classmethod + @abstractmethod + async def wrap_stream_socket(cls, sock: socket) -> SocketStream: + pass + + @classmethod + @abstractmethod + async def wrap_unix_stream_socket(cls, sock: socket) -> UNIXSocketStream: + pass + + @classmethod + @abstractmethod + async def wrap_udp_socket(cls, sock: socket) -> UDPSocket: + pass + + @classmethod + @abstractmethod + async def wrap_connected_udp_socket(cls, sock: socket) -> ConnectedUDPSocket: + pass + + @classmethod + @abstractmethod + async def wrap_unix_datagram_socket(cls, sock: socket) -> UNIXDatagramSocket: + pass + + @classmethod + @abstractmethod + async def wrap_connected_unix_datagram_socket( + cls, sock: socket + ) -> ConnectedUNIXDatagramSocket: + pass + + @classmethod + @abstractmethod + def current_default_thread_limiter(cls) -> CapacityLimiter: + pass + + @classmethod + @abstractmethod + def open_signal_receiver( + cls, *signals: Signals + ) -> AbstractContextManager[AsyncIterator[Signals]]: + pass + + @classmethod + @abstractmethod + def get_current_task(cls) -> TaskInfo: + pass + + @classmethod + @abstractmethod + def get_running_tasks(cls) -> Sequence[TaskInfo]: + pass + + @classmethod + @abstractmethod + async def wait_all_tasks_blocked(cls) -> None: + pass + + @classmethod + @abstractmethod + def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: + pass diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_resources.py b/ocr/.venv/Lib/site-packages/anyio/abc/_resources.py new file mode 100644 index 00000000..10df115a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_resources.py @@ -0,0 +1,33 @@ +from __future__ import annotations + +from abc import ABCMeta, abstractmethod +from types import TracebackType +from typing import TypeVar + +T = TypeVar("T") + + +class AsyncResource(metaclass=ABCMeta): + """ + Abstract base class for all closeable asynchronous resources. + + Works as an asynchronous context manager which returns the instance itself on enter, + and calls :meth:`aclose` on exit. + """ + + __slots__ = () + + async def __aenter__(self: T) -> T: + return self + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + await self.aclose() + + @abstractmethod + async def aclose(self) -> None: + """Close the resource.""" diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_sockets.py b/ocr/.venv/Lib/site-packages/anyio/abc/_sockets.py new file mode 100644 index 00000000..3ff60d4d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_sockets.py @@ -0,0 +1,405 @@ +from __future__ import annotations + +import errno +import socket +import sys +from abc import abstractmethod +from collections.abc import Callable, Collection, Mapping +from contextlib import AsyncExitStack +from io import IOBase +from ipaddress import IPv4Address, IPv6Address +from socket import AddressFamily +from typing import Any, TypeVar, Union + +from .._core._eventloop import get_async_backend +from .._core._typedattr import ( + TypedAttributeProvider, + TypedAttributeSet, + typed_attribute, +) +from ._streams import ByteStream, Listener, UnreliableObjectStream +from ._tasks import TaskGroup + +if sys.version_info >= (3, 10): + from typing import TypeAlias +else: + from typing_extensions import TypeAlias + +IPAddressType: TypeAlias = Union[str, IPv4Address, IPv6Address] +IPSockAddrType: TypeAlias = tuple[str, int] +SockAddrType: TypeAlias = Union[IPSockAddrType, str] +UDPPacketType: TypeAlias = tuple[bytes, IPSockAddrType] +UNIXDatagramPacketType: TypeAlias = tuple[bytes, str] +T_Retval = TypeVar("T_Retval") + + +def _validate_socket( + sock_or_fd: socket.socket | int, + sock_type: socket.SocketKind, + addr_family: socket.AddressFamily = socket.AF_UNSPEC, + *, + require_connected: bool = False, + require_bound: bool = False, +) -> socket.socket: + if isinstance(sock_or_fd, int): + try: + sock = socket.socket(fileno=sock_or_fd) + except OSError as exc: + if exc.errno == errno.ENOTSOCK: + raise ValueError( + "the file descriptor does not refer to a socket" + ) from exc + elif require_connected: + raise ValueError("the socket must be connected") from exc + elif require_bound: + raise ValueError("the socket must be bound to a local address") from exc + else: + raise + elif isinstance(sock_or_fd, socket.socket): + sock = sock_or_fd + else: + raise TypeError( + f"expected an int or socket, got {type(sock_or_fd).__qualname__} instead" + ) + + try: + if require_connected: + try: + sock.getpeername() + except OSError as exc: + raise ValueError("the socket must be connected") from exc + + if require_bound: + try: + if sock.family in (socket.AF_INET, socket.AF_INET6): + bound_addr = sock.getsockname()[1] + else: + bound_addr = sock.getsockname() + except OSError: + bound_addr = None + + if not bound_addr: + raise ValueError("the socket must be bound to a local address") + + if addr_family != socket.AF_UNSPEC and sock.family != addr_family: + raise ValueError( + f"address family mismatch: expected {addr_family.name}, got " + f"{sock.family.name}" + ) + + if sock.type != sock_type: + raise ValueError( + f"socket type mismatch: expected {sock_type.name}, got {sock.type.name}" + ) + except BaseException: + # Avoid ResourceWarning from the locally constructed socket object + if isinstance(sock_or_fd, int): + sock.detach() + + raise + + sock.setblocking(False) + return sock + + +class SocketAttribute(TypedAttributeSet): + """ + .. attribute:: family + :type: socket.AddressFamily + + the address family of the underlying socket + + .. attribute:: local_address + :type: tuple[str, int] | str + + the local address the underlying socket is connected to + + .. attribute:: local_port + :type: int + + for IP based sockets, the local port the underlying socket is bound to + + .. attribute:: raw_socket + :type: socket.socket + + the underlying stdlib socket object + + .. attribute:: remote_address + :type: tuple[str, int] | str + + the remote address the underlying socket is connected to + + .. attribute:: remote_port + :type: int + + for IP based sockets, the remote port the underlying socket is connected to + """ + + family: AddressFamily = typed_attribute() + local_address: SockAddrType = typed_attribute() + local_port: int = typed_attribute() + raw_socket: socket.socket = typed_attribute() + remote_address: SockAddrType = typed_attribute() + remote_port: int = typed_attribute() + + +class _SocketProvider(TypedAttributeProvider): + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + from .._core._sockets import convert_ipv6_sockaddr as convert + + attributes: dict[Any, Callable[[], Any]] = { + SocketAttribute.family: lambda: self._raw_socket.family, + SocketAttribute.local_address: lambda: convert( + self._raw_socket.getsockname() + ), + SocketAttribute.raw_socket: lambda: self._raw_socket, + } + try: + peername: tuple[str, int] | None = convert(self._raw_socket.getpeername()) + except OSError: + peername = None + + # Provide the remote address for connected sockets + if peername is not None: + attributes[SocketAttribute.remote_address] = lambda: peername + + # Provide local and remote ports for IP based sockets + if self._raw_socket.family in (AddressFamily.AF_INET, AddressFamily.AF_INET6): + attributes[SocketAttribute.local_port] = ( + lambda: self._raw_socket.getsockname()[1] + ) + if peername is not None: + remote_port = peername[1] + attributes[SocketAttribute.remote_port] = lambda: remote_port + + return attributes + + @property + @abstractmethod + def _raw_socket(self) -> socket.socket: + pass + + +class SocketStream(ByteStream, _SocketProvider): + """ + Transports bytes over a socket. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket(cls, sock_or_fd: socket.socket | int) -> SocketStream: + """ + Wrap an existing socket object or file descriptor as a socket stream. + + The newly created socket wrapper takes ownership of the socket being passed in. + The existing socket must already be connected. + + :param sock_or_fd: a socket object or file descriptor + :return: a socket stream + + """ + sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_connected=True) + return await get_async_backend().wrap_stream_socket(sock) + + +class UNIXSocketStream(SocketStream): + @classmethod + async def from_socket(cls, sock_or_fd: socket.socket | int) -> UNIXSocketStream: + """ + Wrap an existing socket object or file descriptor as a UNIX socket stream. + + The newly created socket wrapper takes ownership of the socket being passed in. + The existing socket must already be connected. + + :param sock_or_fd: a socket object or file descriptor + :return: a UNIX socket stream + + """ + sock = _validate_socket( + sock_or_fd, socket.SOCK_STREAM, socket.AF_UNIX, require_connected=True + ) + return await get_async_backend().wrap_unix_stream_socket(sock) + + @abstractmethod + async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: + """ + Send file descriptors along with a message to the peer. + + :param message: a non-empty bytestring + :param fds: a collection of files (either numeric file descriptors or open file + or socket objects) + """ + + @abstractmethod + async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: + """ + Receive file descriptors along with a message from the peer. + + :param msglen: length of the message to expect from the peer + :param maxfds: maximum number of file descriptors to expect from the peer + :return: a tuple of (message, file descriptors) + """ + + +class SocketListener(Listener[SocketStream], _SocketProvider): + """ + Listens to incoming socket connections. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket( + cls, + sock_or_fd: socket.socket | int, + ) -> SocketListener: + """ + Wrap an existing socket object or file descriptor as a socket listener. + + The newly created listener takes ownership of the socket being passed in. + + :param sock_or_fd: a socket object or file descriptor + :return: a socket listener + + """ + sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_bound=True) + return await get_async_backend().wrap_listener_socket(sock) + + @abstractmethod + async def accept(self) -> SocketStream: + """Accept an incoming connection.""" + + async def serve( + self, + handler: Callable[[SocketStream], Any], + task_group: TaskGroup | None = None, + ) -> None: + from .. import create_task_group + + async with AsyncExitStack() as stack: + if task_group is None: + task_group = await stack.enter_async_context(create_task_group()) + + while True: + stream = await self.accept() + task_group.start_soon(handler, stream) + + +class UDPSocket(UnreliableObjectStream[UDPPacketType], _SocketProvider): + """ + Represents an unconnected UDP socket. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket(cls, sock_or_fd: socket.socket | int) -> UDPSocket: + """ + Wrap an existing socket object or file descriptor as a UDP socket. + + The newly created socket wrapper takes ownership of the socket being passed in. + The existing socket must be bound to a local address. + + :param sock_or_fd: a socket object or file descriptor + :return: a UDP socket + + """ + sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, require_bound=True) + return await get_async_backend().wrap_udp_socket(sock) + + async def sendto(self, data: bytes, host: str, port: int) -> None: + """ + Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, (host, port))). + + """ + return await self.send((data, (host, port))) + + +class ConnectedUDPSocket(UnreliableObjectStream[bytes], _SocketProvider): + """ + Represents an connected UDP socket. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket(cls, sock_or_fd: socket.socket | int) -> ConnectedUDPSocket: + """ + Wrap an existing socket object or file descriptor as a connected UDP socket. + + The newly created socket wrapper takes ownership of the socket being passed in. + The existing socket must already be connected. + + :param sock_or_fd: a socket object or file descriptor + :return: a connected UDP socket + + """ + sock = _validate_socket( + sock_or_fd, + socket.SOCK_DGRAM, + require_connected=True, + ) + return await get_async_backend().wrap_connected_udp_socket(sock) + + +class UNIXDatagramSocket( + UnreliableObjectStream[UNIXDatagramPacketType], _SocketProvider +): + """ + Represents an unconnected Unix datagram socket. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket( + cls, + sock_or_fd: socket.socket | int, + ) -> UNIXDatagramSocket: + """ + Wrap an existing socket object or file descriptor as a UNIX datagram + socket. + + The newly created socket wrapper takes ownership of the socket being passed in. + + :param sock_or_fd: a socket object or file descriptor + :return: a UNIX datagram socket + + """ + sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX) + return await get_async_backend().wrap_unix_datagram_socket(sock) + + async def sendto(self, data: bytes, path: str) -> None: + """Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, path)).""" + return await self.send((data, path)) + + +class ConnectedUNIXDatagramSocket(UnreliableObjectStream[bytes], _SocketProvider): + """ + Represents a connected Unix datagram socket. + + Supports all relevant extra attributes from :class:`~SocketAttribute`. + """ + + @classmethod + async def from_socket( + cls, + sock_or_fd: socket.socket | int, + ) -> ConnectedUNIXDatagramSocket: + """ + Wrap an existing socket object or file descriptor as a connected UNIX datagram + socket. + + The newly created socket wrapper takes ownership of the socket being passed in. + The existing socket must already be connected. + + :param sock_or_fd: a socket object or file descriptor + :return: a connected UNIX datagram socket + + """ + sock = _validate_socket( + sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX, require_connected=True + ) + return await get_async_backend().wrap_connected_unix_datagram_socket(sock) diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_streams.py b/ocr/.venv/Lib/site-packages/anyio/abc/_streams.py new file mode 100644 index 00000000..369df3f3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_streams.py @@ -0,0 +1,239 @@ +from __future__ import annotations + +import sys +from abc import ABCMeta, abstractmethod +from collections.abc import Callable +from typing import Any, Generic, TypeVar, Union + +from .._core._exceptions import EndOfStream +from .._core._typedattr import TypedAttributeProvider +from ._resources import AsyncResource +from ._tasks import TaskGroup + +if sys.version_info >= (3, 10): + from typing import TypeAlias +else: + from typing_extensions import TypeAlias + +T_Item = TypeVar("T_Item") +T_co = TypeVar("T_co", covariant=True) +T_contra = TypeVar("T_contra", contravariant=True) + + +class UnreliableObjectReceiveStream( + Generic[T_co], AsyncResource, TypedAttributeProvider +): + """ + An interface for receiving objects. + + This interface makes no guarantees that the received messages arrive in the order in + which they were sent, or that no messages are missed. + + Asynchronously iterating over objects of this type will yield objects matching the + given type parameter. + """ + + def __aiter__(self) -> UnreliableObjectReceiveStream[T_co]: + return self + + async def __anext__(self) -> T_co: + try: + return await self.receive() + except EndOfStream: + raise StopAsyncIteration from None + + @abstractmethod + async def receive(self) -> T_co: + """ + Receive the next item. + + :raises ~anyio.ClosedResourceError: if the receive stream has been explicitly + closed + :raises ~anyio.EndOfStream: if this stream has been closed from the other end + :raises ~anyio.BrokenResourceError: if this stream has been rendered unusable + due to external causes + """ + + +class UnreliableObjectSendStream( + Generic[T_contra], AsyncResource, TypedAttributeProvider +): + """ + An interface for sending objects. + + This interface makes no guarantees that the messages sent will reach the + recipient(s) in the same order in which they were sent, or at all. + """ + + @abstractmethod + async def send(self, item: T_contra) -> None: + """ + Send an item to the peer(s). + + :param item: the item to send + :raises ~anyio.ClosedResourceError: if the send stream has been explicitly + closed + :raises ~anyio.BrokenResourceError: if this stream has been rendered unusable + due to external causes + """ + + +class UnreliableObjectStream( + UnreliableObjectReceiveStream[T_Item], UnreliableObjectSendStream[T_Item] +): + """ + A bidirectional message stream which does not guarantee the order or reliability of + message delivery. + """ + + +class ObjectReceiveStream(UnreliableObjectReceiveStream[T_co]): + """ + A receive message stream which guarantees that messages are received in the same + order in which they were sent, and that no messages are missed. + """ + + +class ObjectSendStream(UnreliableObjectSendStream[T_contra]): + """ + A send message stream which guarantees that messages are delivered in the same order + in which they were sent, without missing any messages in the middle. + """ + + +class ObjectStream( + ObjectReceiveStream[T_Item], + ObjectSendStream[T_Item], + UnreliableObjectStream[T_Item], +): + """ + A bidirectional message stream which guarantees the order and reliability of message + delivery. + """ + + @abstractmethod + async def send_eof(self) -> None: + """ + Send an end-of-file indication to the peer. + + You should not try to send any further data to this stream after calling this + method. This method is idempotent (does nothing on successive calls). + """ + + +class ByteReceiveStream(AsyncResource, TypedAttributeProvider): + """ + An interface for receiving bytes from a single peer. + + Iterating this byte stream will yield a byte string of arbitrary length, but no more + than 65536 bytes. + """ + + def __aiter__(self) -> ByteReceiveStream: + return self + + async def __anext__(self) -> bytes: + try: + return await self.receive() + except EndOfStream: + raise StopAsyncIteration from None + + @abstractmethod + async def receive(self, max_bytes: int = 65536) -> bytes: + """ + Receive at most ``max_bytes`` bytes from the peer. + + .. note:: Implementers of this interface should not return an empty + :class:`bytes` object, and users should ignore them. + + :param max_bytes: maximum number of bytes to receive + :return: the received bytes + :raises ~anyio.EndOfStream: if this stream has been closed from the other end + """ + + +class ByteSendStream(AsyncResource, TypedAttributeProvider): + """An interface for sending bytes to a single peer.""" + + @abstractmethod + async def send(self, item: bytes) -> None: + """ + Send the given bytes to the peer. + + :param item: the bytes to send + """ + + +class ByteStream(ByteReceiveStream, ByteSendStream): + """A bidirectional byte stream.""" + + @abstractmethod + async def send_eof(self) -> None: + """ + Send an end-of-file indication to the peer. + + You should not try to send any further data to this stream after calling this + method. This method is idempotent (does nothing on successive calls). + """ + + +#: Type alias for all unreliable bytes-oriented receive streams. +AnyUnreliableByteReceiveStream: TypeAlias = Union[ + UnreliableObjectReceiveStream[bytes], ByteReceiveStream +] +#: Type alias for all unreliable bytes-oriented send streams. +AnyUnreliableByteSendStream: TypeAlias = Union[ + UnreliableObjectSendStream[bytes], ByteSendStream +] +#: Type alias for all unreliable bytes-oriented streams. +AnyUnreliableByteStream: TypeAlias = Union[UnreliableObjectStream[bytes], ByteStream] +#: Type alias for all bytes-oriented receive streams. +AnyByteReceiveStream: TypeAlias = Union[ObjectReceiveStream[bytes], ByteReceiveStream] +#: Type alias for all bytes-oriented send streams. +AnyByteSendStream: TypeAlias = Union[ObjectSendStream[bytes], ByteSendStream] +#: Type alias for all bytes-oriented streams. +AnyByteStream: TypeAlias = Union[ObjectStream[bytes], ByteStream] + + +class Listener(Generic[T_co], AsyncResource, TypedAttributeProvider): + """An interface for objects that let you accept incoming connections.""" + + @abstractmethod + async def serve( + self, handler: Callable[[T_co], Any], task_group: TaskGroup | None = None + ) -> None: + """ + Accept incoming connections as they come in and start tasks to handle them. + + :param handler: a callable that will be used to handle each accepted connection + :param task_group: the task group that will be used to start tasks for handling + each accepted connection (if omitted, an ad-hoc task group will be created) + """ + + +class ObjectStreamConnectable(Generic[T_co], metaclass=ABCMeta): + @abstractmethod + async def connect(self) -> ObjectStream[T_co]: + """ + Connect to the remote endpoint. + + :return: an object stream connected to the remote end + :raises ConnectionFailed: if the connection fails + """ + + +class ByteStreamConnectable(metaclass=ABCMeta): + @abstractmethod + async def connect(self) -> ByteStream: + """ + Connect to the remote endpoint. + + :return: a bytestream connected to the remote end + :raises ConnectionFailed: if the connection fails + """ + + +#: Type alias for all connectables returning bytestreams or bytes-oriented object streams +AnyByteStreamConnectable: TypeAlias = Union[ + ObjectStreamConnectable[bytes], ByteStreamConnectable +] diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_subprocesses.py b/ocr/.venv/Lib/site-packages/anyio/abc/_subprocesses.py new file mode 100644 index 00000000..ce0564ce --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_subprocesses.py @@ -0,0 +1,79 @@ +from __future__ import annotations + +from abc import abstractmethod +from signal import Signals + +from ._resources import AsyncResource +from ._streams import ByteReceiveStream, ByteSendStream + + +class Process(AsyncResource): + """An asynchronous version of :class:`subprocess.Popen`.""" + + @abstractmethod + async def wait(self) -> int: + """ + Wait until the process exits. + + :return: the exit code of the process + """ + + @abstractmethod + def terminate(self) -> None: + """ + Terminates the process, gracefully if possible. + + On Windows, this calls ``TerminateProcess()``. + On POSIX systems, this sends ``SIGTERM`` to the process. + + .. seealso:: :meth:`subprocess.Popen.terminate` + """ + + @abstractmethod + def kill(self) -> None: + """ + Kills the process. + + On Windows, this calls ``TerminateProcess()``. + On POSIX systems, this sends ``SIGKILL`` to the process. + + .. seealso:: :meth:`subprocess.Popen.kill` + """ + + @abstractmethod + def send_signal(self, signal: Signals) -> None: + """ + Send a signal to the subprocess. + + .. seealso:: :meth:`subprocess.Popen.send_signal` + + :param signal: the signal number (e.g. :data:`signal.SIGHUP`) + """ + + @property + @abstractmethod + def pid(self) -> int: + """The process ID of the process.""" + + @property + @abstractmethod + def returncode(self) -> int | None: + """ + The return code of the process. If the process has not yet terminated, this will + be ``None``. + """ + + @property + @abstractmethod + def stdin(self) -> ByteSendStream | None: + """The stream for the standard input of the process.""" + + @property + @abstractmethod + def stdout(self) -> ByteReceiveStream | None: + """The stream for the standard output of the process.""" + + @property + @abstractmethod + def stderr(self) -> ByteReceiveStream | None: + """The stream for the standard error output of the process.""" diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_tasks.py b/ocr/.venv/Lib/site-packages/anyio/abc/_tasks.py new file mode 100644 index 00000000..516b3ec3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_tasks.py @@ -0,0 +1,117 @@ +from __future__ import annotations + +import sys +from abc import ABCMeta, abstractmethod +from collections.abc import Awaitable, Callable +from types import TracebackType +from typing import TYPE_CHECKING, Any, Protocol, overload + +if sys.version_info >= (3, 13): + from typing import TypeVar +else: + from typing_extensions import TypeVar + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +if TYPE_CHECKING: + from .._core._tasks import CancelScope + +T_Retval = TypeVar("T_Retval") +T_contra = TypeVar("T_contra", contravariant=True, default=None) +PosArgsT = TypeVarTuple("PosArgsT") + + +class TaskStatus(Protocol[T_contra]): + @overload + def started(self: TaskStatus[None]) -> None: ... + + @overload + def started(self, value: T_contra) -> None: ... + + def started(self, value: T_contra | None = None) -> None: + """ + Signal that the task has started. + + :param value: object passed back to the starter of the task + """ + + +class TaskGroup(metaclass=ABCMeta): + """ + Groups several asynchronous tasks together. + + :ivar cancel_scope: the cancel scope inherited by all child tasks + :vartype cancel_scope: CancelScope + + .. note:: On asyncio, support for eager task factories is considered to be + **experimental**. In particular, they don't follow the usual semantics of new + tasks being scheduled on the next iteration of the event loop, and may thus + cause unexpected behavior in code that wasn't written with such semantics in + mind. + """ + + cancel_scope: CancelScope + + @abstractmethod + def start_soon( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[Any]], + *args: Unpack[PosArgsT], + name: object = None, + ) -> None: + """ + Start a new task in this task group. + + :param func: a coroutine function + :param args: positional arguments to call the function with + :param name: name of the task, for the purposes of introspection and debugging + + .. versionadded:: 3.0 + """ + + @abstractmethod + async def start( + self, + func: Callable[..., Awaitable[Any]], + *args: object, + name: object = None, + ) -> Any: + """ + Start a new task and wait until it signals for readiness. + + The target callable must accept a keyword argument ``task_status`` (of type + :class:`TaskStatus`). Awaiting on this method will return whatever was passed to + ``task_status.started()`` (``None`` by default). + + .. note:: The :class:`TaskStatus` class is generic, and the type argument should + indicate the type of the value that will be passed to + ``task_status.started()``. + + :param func: a coroutine function that accepts the ``task_status`` keyword + argument + :param args: positional arguments to call the function with + :param name: an optional name for the task, for introspection and debugging + :return: the value passed to ``task_status.started()`` + :raises RuntimeError: if the task finishes without calling + ``task_status.started()`` + + .. seealso:: :ref:`start_initialize` + + .. versionadded:: 3.0 + """ + + @abstractmethod + async def __aenter__(self) -> TaskGroup: + """Enter the task group context and allow starting new tasks.""" + + @abstractmethod + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + """Exit the task group context waiting for all tasks to finish.""" diff --git a/ocr/.venv/Lib/site-packages/anyio/abc/_testing.py b/ocr/.venv/Lib/site-packages/anyio/abc/_testing.py new file mode 100644 index 00000000..7c50ed76 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/abc/_testing.py @@ -0,0 +1,65 @@ +from __future__ import annotations + +import types +from abc import ABCMeta, abstractmethod +from collections.abc import AsyncGenerator, Callable, Coroutine, Iterable +from typing import Any, TypeVar + +_T = TypeVar("_T") + + +class TestRunner(metaclass=ABCMeta): + """ + Encapsulates a running event loop. Every call made through this object will use the + same event loop. + """ + + def __enter__(self) -> TestRunner: + return self + + @abstractmethod + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: types.TracebackType | None, + ) -> bool | None: ... + + @abstractmethod + def run_asyncgen_fixture( + self, + fixture_func: Callable[..., AsyncGenerator[_T, Any]], + kwargs: dict[str, Any], + ) -> Iterable[_T]: + """ + Run an async generator fixture. + + :param fixture_func: the fixture function + :param kwargs: keyword arguments to call the fixture function with + :return: an iterator yielding the value yielded from the async generator + """ + + @abstractmethod + def run_fixture( + self, + fixture_func: Callable[..., Coroutine[Any, Any, _T]], + kwargs: dict[str, Any], + ) -> _T: + """ + Run an async fixture. + + :param fixture_func: the fixture function + :param kwargs: keyword arguments to call the fixture function with + :return: the return value of the fixture function + """ + + @abstractmethod + def run_test( + self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] + ) -> None: + """ + Run an async test function. + + :param test_func: the test function + :param kwargs: keyword arguments to call the test function with + """ diff --git a/ocr/.venv/Lib/site-packages/anyio/from_thread.py b/ocr/.venv/Lib/site-packages/anyio/from_thread.py new file mode 100644 index 00000000..1897f9ac --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/from_thread.py @@ -0,0 +1,565 @@ +from __future__ import annotations + +import sys +from collections.abc import Awaitable, Callable, Generator +from concurrent.futures import Future +from contextlib import ( + AbstractAsyncContextManager, + AbstractContextManager, + contextmanager, +) +from dataclasses import dataclass, field +from inspect import isawaitable +from threading import Lock, Thread, current_thread, get_ident +from types import TracebackType +from typing import ( + Any, + Generic, + TypeVar, + cast, + overload, +) + +from ._core._eventloop import ( + get_async_backend, + get_cancelled_exc_class, + threadlocals, +) +from ._core._eventloop import run as run_eventloop +from ._core._exceptions import NoEventLoopError +from ._core._synchronization import Event +from ._core._tasks import CancelScope, create_task_group +from .abc._tasks import TaskStatus +from .lowlevel import EventLoopToken + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +T_Retval = TypeVar("T_Retval") +T_co = TypeVar("T_co", covariant=True) +PosArgsT = TypeVarTuple("PosArgsT") + + +def _token_or_error(token: EventLoopToken | None) -> EventLoopToken: + if token is not None: + return token + + try: + return threadlocals.current_token + except AttributeError: + raise NoEventLoopError( + "Not running inside an AnyIO worker thread, and no event loop token was " + "provided" + ) from None + + +def run( + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + *args: Unpack[PosArgsT], + token: EventLoopToken | None = None, +) -> T_Retval: + """ + Call a coroutine function from a worker thread. + + :param func: a coroutine function + :param args: positional arguments for the callable + :param token: an event loop token to use to get back to the event loop thread + (required if calling this function from outside an AnyIO worker thread) + :return: the return value of the coroutine function + :raises MissingTokenError: if no token was provided and called from outside an + AnyIO worker thread + :raises RunFinishedError: if the event loop tied to ``token`` is no longer running + + .. versionchanged:: 4.11.0 + Added the ``token`` parameter. + + """ + explicit_token = token is not None + token = _token_or_error(token) + return token.backend_class.run_async_from_thread( + func, args, token=token.native_token if explicit_token else None + ) + + +def run_sync( + func: Callable[[Unpack[PosArgsT]], T_Retval], + *args: Unpack[PosArgsT], + token: EventLoopToken | None = None, +) -> T_Retval: + """ + Call a function in the event loop thread from a worker thread. + + :param func: a callable + :param args: positional arguments for the callable + :param token: an event loop token to use to get back to the event loop thread + (required if calling this function from outside an AnyIO worker thread) + :return: the return value of the callable + :raises MissingTokenError: if no token was provided and called from outside an + AnyIO worker thread + :raises RunFinishedError: if the event loop tied to ``token`` is no longer running + + .. versionchanged:: 4.11.0 + Added the ``token`` parameter. + + """ + explicit_token = token is not None + token = _token_or_error(token) + return token.backend_class.run_sync_from_thread( + func, args, token=token.native_token if explicit_token else None + ) + + +class _BlockingAsyncContextManager(Generic[T_co], AbstractContextManager): + _enter_future: Future[T_co] + _exit_future: Future[bool | None] + _exit_event: Event + _exit_exc_info: tuple[ + type[BaseException] | None, BaseException | None, TracebackType | None + ] = (None, None, None) + + def __init__( + self, async_cm: AbstractAsyncContextManager[T_co], portal: BlockingPortal + ): + self._async_cm = async_cm + self._portal = portal + + async def run_async_cm(self) -> bool | None: + try: + self._exit_event = Event() + value = await self._async_cm.__aenter__() + except BaseException as exc: + self._enter_future.set_exception(exc) + raise + else: + self._enter_future.set_result(value) + + try: + # Wait for the sync context manager to exit. + # This next statement can raise `get_cancelled_exc_class()` if + # something went wrong in a task group in this async context + # manager. + await self._exit_event.wait() + finally: + # In case of cancellation, it could be that we end up here before + # `_BlockingAsyncContextManager.__exit__` is called, and an + # `_exit_exc_info` has been set. + result = await self._async_cm.__aexit__(*self._exit_exc_info) + + return result + + def __enter__(self) -> T_co: + self._enter_future = Future() + self._exit_future = self._portal.start_task_soon(self.run_async_cm) + return self._enter_future.result() + + def __exit__( + self, + __exc_type: type[BaseException] | None, + __exc_value: BaseException | None, + __traceback: TracebackType | None, + ) -> bool | None: + self._exit_exc_info = __exc_type, __exc_value, __traceback + self._portal.call(self._exit_event.set) + return self._exit_future.result() + + +class _BlockingPortalTaskStatus(TaskStatus): + def __init__(self, future: Future): + self._future = future + + def started(self, value: object = None) -> None: + self._future.set_result(value) + + +class BlockingPortal: + """An object that lets external threads run code in an asynchronous event loop.""" + + def __new__(cls) -> BlockingPortal: + return get_async_backend().create_blocking_portal() + + def __init__(self) -> None: + self._event_loop_thread_id: int | None = get_ident() + self._stop_event = Event() + self._task_group = create_task_group() + self._cancelled_exc_class = get_cancelled_exc_class() + + async def __aenter__(self) -> BlockingPortal: + await self._task_group.__aenter__() + return self + + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> bool: + await self.stop() + return await self._task_group.__aexit__(exc_type, exc_val, exc_tb) + + def _check_running(self) -> None: + if self._event_loop_thread_id is None: + raise RuntimeError("This portal is not running") + if self._event_loop_thread_id == get_ident(): + raise RuntimeError( + "This method cannot be called from the event loop thread" + ) + + async def sleep_until_stopped(self) -> None: + """Sleep until :meth:`stop` is called.""" + await self._stop_event.wait() + + async def stop(self, cancel_remaining: bool = False) -> None: + """ + Signal the portal to shut down. + + This marks the portal as no longer accepting new calls and exits from + :meth:`sleep_until_stopped`. + + :param cancel_remaining: ``True`` to cancel all the remaining tasks, ``False`` + to let them finish before returning + + """ + self._event_loop_thread_id = None + self._stop_event.set() + if cancel_remaining: + self._task_group.cancel_scope.cancel("the blocking portal is shutting down") + + async def _call_func( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + future: Future[T_Retval], + ) -> None: + def callback(f: Future[T_Retval]) -> None: + if f.cancelled() and self._event_loop_thread_id not in ( + None, + get_ident(), + ): + self.call(scope.cancel, "the future was cancelled") + + try: + retval_or_awaitable = func(*args, **kwargs) + if isawaitable(retval_or_awaitable): + with CancelScope() as scope: + if future.cancelled(): + scope.cancel("the future was cancelled") + else: + future.add_done_callback(callback) + + retval = await retval_or_awaitable + else: + retval = retval_or_awaitable + except self._cancelled_exc_class: + future.cancel() + future.set_running_or_notify_cancel() + except BaseException as exc: + if not future.cancelled(): + future.set_exception(exc) + + # Let base exceptions fall through + if not isinstance(exc, Exception): + raise + else: + if not future.cancelled(): + future.set_result(retval) + finally: + scope = None # type: ignore[assignment] + + def _spawn_task_from_thread( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + args: tuple[Unpack[PosArgsT]], + kwargs: dict[str, Any], + name: object, + future: Future[T_Retval], + ) -> None: + """ + Spawn a new task using the given callable. + + Implementers must ensure that the future is resolved when the task finishes. + + :param func: a callable + :param args: positional arguments to be passed to the callable + :param kwargs: keyword arguments to be passed to the callable + :param name: name of the task (will be coerced to a string if not ``None``) + :param future: a future that will resolve to the return value of the callable, + or the exception raised during its execution + + """ + raise NotImplementedError + + @overload + def call( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + *args: Unpack[PosArgsT], + ) -> T_Retval: ... + + @overload + def call( + self, func: Callable[[Unpack[PosArgsT]], T_Retval], *args: Unpack[PosArgsT] + ) -> T_Retval: ... + + def call( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + *args: Unpack[PosArgsT], + ) -> T_Retval: + """ + Call the given function in the event loop thread. + + If the callable returns a coroutine object, it is awaited on. + + :param func: any callable + :raises RuntimeError: if the portal is not running or if this method is called + from within the event loop thread + + """ + return cast(T_Retval, self.start_task_soon(func, *args).result()) + + @overload + def start_task_soon( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], + *args: Unpack[PosArgsT], + name: object = None, + ) -> Future[T_Retval]: ... + + @overload + def start_task_soon( + self, + func: Callable[[Unpack[PosArgsT]], T_Retval], + *args: Unpack[PosArgsT], + name: object = None, + ) -> Future[T_Retval]: ... + + def start_task_soon( + self, + func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], + *args: Unpack[PosArgsT], + name: object = None, + ) -> Future[T_Retval]: + """ + Start a task in the portal's task group. + + The task will be run inside a cancel scope which can be cancelled by cancelling + the returned future. + + :param func: the target function + :param args: positional arguments passed to ``func`` + :param name: name of the task (will be coerced to a string if not ``None``) + :return: a future that resolves with the return value of the callable if the + task completes successfully, or with the exception raised in the task + :raises RuntimeError: if the portal is not running or if this method is called + from within the event loop thread + :rtype: concurrent.futures.Future[T_Retval] + + .. versionadded:: 3.0 + + """ + self._check_running() + f: Future[T_Retval] = Future() + self._spawn_task_from_thread(func, args, {}, name, f) + return f + + def start_task( + self, + func: Callable[..., Awaitable[T_Retval]], + *args: object, + name: object = None, + ) -> tuple[Future[T_Retval], Any]: + """ + Start a task in the portal's task group and wait until it signals for readiness. + + This method works the same way as :meth:`.abc.TaskGroup.start`. + + :param func: the target function + :param args: positional arguments passed to ``func`` + :param name: name of the task (will be coerced to a string if not ``None``) + :return: a tuple of (future, task_status_value) where the ``task_status_value`` + is the value passed to ``task_status.started()`` from within the target + function + :rtype: tuple[concurrent.futures.Future[T_Retval], Any] + + .. versionadded:: 3.0 + + """ + + def task_done(future: Future[T_Retval]) -> None: + if not task_status_future.done(): + if future.cancelled(): + task_status_future.cancel() + elif future.exception(): + task_status_future.set_exception(future.exception()) + else: + exc = RuntimeError( + "Task exited without calling task_status.started()" + ) + task_status_future.set_exception(exc) + + self._check_running() + task_status_future: Future = Future() + task_status = _BlockingPortalTaskStatus(task_status_future) + f: Future = Future() + f.add_done_callback(task_done) + self._spawn_task_from_thread(func, args, {"task_status": task_status}, name, f) + return f, task_status_future.result() + + def wrap_async_context_manager( + self, cm: AbstractAsyncContextManager[T_co] + ) -> AbstractContextManager[T_co]: + """ + Wrap an async context manager as a synchronous context manager via this portal. + + Spawns a task that will call both ``__aenter__()`` and ``__aexit__()``, stopping + in the middle until the synchronous context manager exits. + + :param cm: an asynchronous context manager + :return: a synchronous context manager + + .. versionadded:: 2.1 + + """ + return _BlockingAsyncContextManager(cm, self) + + +@dataclass +class BlockingPortalProvider: + """ + A manager for a blocking portal. Used as a context manager. The first thread to + enter this context manager causes a blocking portal to be started with the specific + parameters, and the last thread to exit causes the portal to be shut down. Thus, + there will be exactly one blocking portal running in this context as long as at + least one thread has entered this context manager. + + The parameters are the same as for :func:`~anyio.run`. + + :param backend: name of the backend + :param backend_options: backend options + + .. versionadded:: 4.4 + """ + + backend: str = "asyncio" + backend_options: dict[str, Any] | None = None + _lock: Lock = field(init=False, default_factory=Lock) + _leases: int = field(init=False, default=0) + _portal: BlockingPortal = field(init=False) + _portal_cm: AbstractContextManager[BlockingPortal] | None = field( + init=False, default=None + ) + + def __enter__(self) -> BlockingPortal: + with self._lock: + if self._portal_cm is None: + self._portal_cm = start_blocking_portal( + self.backend, self.backend_options + ) + self._portal = self._portal_cm.__enter__() + + self._leases += 1 + return self._portal + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + portal_cm: AbstractContextManager[BlockingPortal] | None = None + with self._lock: + assert self._portal_cm + assert self._leases > 0 + self._leases -= 1 + if not self._leases: + portal_cm = self._portal_cm + self._portal_cm = None + del self._portal + + if portal_cm: + portal_cm.__exit__(None, None, None) + + +@contextmanager +def start_blocking_portal( + backend: str = "asyncio", + backend_options: dict[str, Any] | None = None, + *, + name: str | None = None, +) -> Generator[BlockingPortal, Any, None]: + """ + Start a new event loop in a new thread and run a blocking portal in its main task. + + The parameters are the same as for :func:`~anyio.run`. + + :param backend: name of the backend + :param backend_options: backend options + :param name: name of the thread + :return: a context manager that yields a blocking portal + + .. versionchanged:: 3.0 + Usage as a context manager is now required. + + """ + + async def run_portal() -> None: + async with BlockingPortal() as portal_: + if name is None: + current_thread().name = f"{backend}-portal-{id(portal_):x}" + + future.set_result(portal_) + await portal_.sleep_until_stopped() + + def run_blocking_portal() -> None: + if future.set_running_or_notify_cancel(): + try: + run_eventloop( + run_portal, backend=backend, backend_options=backend_options + ) + except BaseException as exc: + if not future.done(): + future.set_exception(exc) + + future: Future[BlockingPortal] = Future() + thread = Thread(target=run_blocking_portal, daemon=True, name=name) + thread.start() + try: + cancel_remaining_tasks = False + portal = future.result() + try: + yield portal + except BaseException: + cancel_remaining_tasks = True + raise + finally: + try: + portal.call(portal.stop, cancel_remaining_tasks) + except RuntimeError: + pass + finally: + thread.join() + + +def check_cancelled() -> None: + """ + Check if the cancel scope of the host task's running the current worker thread has + been cancelled. + + If the host task's current cancel scope has indeed been cancelled, the + backend-specific cancellation exception will be raised. + + :raises RuntimeError: if the current thread was not spawned by + :func:`.to_thread.run_sync` + + """ + try: + token: EventLoopToken = threadlocals.current_token + except AttributeError: + raise NoEventLoopError( + "This function can only be called inside an AnyIO worker thread" + ) from None + + token.backend_class.check_cancelled() diff --git a/ocr/.venv/Lib/site-packages/anyio/lowlevel.py b/ocr/.venv/Lib/site-packages/anyio/lowlevel.py new file mode 100644 index 00000000..9f86c1c3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/lowlevel.py @@ -0,0 +1,170 @@ +from __future__ import annotations + +import enum +from dataclasses import dataclass +from typing import Any, Generic, Literal, TypeVar, final, overload +from weakref import WeakKeyDictionary + +from ._core._eventloop import get_async_backend +from .abc import AsyncBackend + +T = TypeVar("T") +D = TypeVar("D") + + +async def checkpoint() -> None: + """ + Check for cancellation and allow the scheduler to switch to another task. + + Equivalent to (but more efficient than):: + + await checkpoint_if_cancelled() + await cancel_shielded_checkpoint() + + + .. versionadded:: 3.0 + + """ + await get_async_backend().checkpoint() + + +async def checkpoint_if_cancelled() -> None: + """ + Enter a checkpoint if the enclosing cancel scope has been cancelled. + + This does not allow the scheduler to switch to a different task. + + .. versionadded:: 3.0 + + """ + await get_async_backend().checkpoint_if_cancelled() + + +async def cancel_shielded_checkpoint() -> None: + """ + Allow the scheduler to switch to another task but without checking for cancellation. + + Equivalent to (but potentially more efficient than):: + + with CancelScope(shield=True): + await checkpoint() + + + .. versionadded:: 3.0 + + """ + await get_async_backend().cancel_shielded_checkpoint() + + +@final +@dataclass(frozen=True, repr=False) +class EventLoopToken: + """ + An opaque object that holds a reference to an event loop. + + .. versionadded:: 4.11.0 + """ + + backend_class: type[AsyncBackend] + native_token: object + + +def current_token() -> EventLoopToken: + """ + Return a token object that can be used to call code in the current event loop from + another thread. + + .. versionadded:: 4.11.0 + + """ + backend_class = get_async_backend() + raw_token = backend_class.current_token() + return EventLoopToken(backend_class, raw_token) + + +_run_vars: WeakKeyDictionary[object, dict[RunVar[Any], Any]] = WeakKeyDictionary() + + +class _NoValueSet(enum.Enum): + NO_VALUE_SET = enum.auto() + + +class RunvarToken(Generic[T]): + __slots__ = "_var", "_value", "_redeemed" + + def __init__(self, var: RunVar[T], value: T | Literal[_NoValueSet.NO_VALUE_SET]): + self._var = var + self._value: T | Literal[_NoValueSet.NO_VALUE_SET] = value + self._redeemed = False + + +class RunVar(Generic[T]): + """ + Like a :class:`~contextvars.ContextVar`, except scoped to the running event loop. + """ + + __slots__ = "_name", "_default" + + NO_VALUE_SET: Literal[_NoValueSet.NO_VALUE_SET] = _NoValueSet.NO_VALUE_SET + + def __init__( + self, name: str, default: T | Literal[_NoValueSet.NO_VALUE_SET] = NO_VALUE_SET + ): + self._name = name + self._default = default + + @property + def _current_vars(self) -> dict[RunVar[T], T]: + native_token = current_token().native_token + try: + return _run_vars[native_token] + except KeyError: + run_vars = _run_vars[native_token] = {} + return run_vars + + @overload + def get(self, default: D) -> T | D: ... + + @overload + def get(self) -> T: ... + + def get( + self, default: D | Literal[_NoValueSet.NO_VALUE_SET] = NO_VALUE_SET + ) -> T | D: + try: + return self._current_vars[self] + except KeyError: + if default is not RunVar.NO_VALUE_SET: + return default + elif self._default is not RunVar.NO_VALUE_SET: + return self._default + + raise LookupError( + f'Run variable "{self._name}" has no value and no default set' + ) + + def set(self, value: T) -> RunvarToken[T]: + current_vars = self._current_vars + token = RunvarToken(self, current_vars.get(self, RunVar.NO_VALUE_SET)) + current_vars[self] = value + return token + + def reset(self, token: RunvarToken[T]) -> None: + if token._var is not self: + raise ValueError("This token does not belong to this RunVar") + + if token._redeemed: + raise ValueError("This token has already been used") + + if token._value is _NoValueSet.NO_VALUE_SET: + try: + del self._current_vars[self] + except KeyError: + pass + else: + self._current_vars[self] = token._value + + token._redeemed = True + + def __repr__(self) -> str: + return f"" diff --git a/ocr/.venv/Lib/site-packages/anyio/py.typed b/ocr/.venv/Lib/site-packages/anyio/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/anyio/pytest_plugin.py b/ocr/.venv/Lib/site-packages/anyio/pytest_plugin.py new file mode 100644 index 00000000..00974b58 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/pytest_plugin.py @@ -0,0 +1,298 @@ +from __future__ import annotations + +import socket +import sys +from collections.abc import Callable, Generator, Iterator +from contextlib import ExitStack, contextmanager +from inspect import isasyncgenfunction, iscoroutinefunction, ismethod +from typing import Any, cast + +import pytest +import sniffio +from _pytest.fixtures import SubRequest +from _pytest.outcomes import Exit + +from ._core._eventloop import get_all_backends, get_async_backend +from ._core._exceptions import iterate_exceptions +from .abc import TestRunner + +if sys.version_info < (3, 11): + from exceptiongroup import ExceptionGroup + +_current_runner: TestRunner | None = None +_runner_stack: ExitStack | None = None +_runner_leases = 0 + + +def extract_backend_and_options(backend: object) -> tuple[str, dict[str, Any]]: + if isinstance(backend, str): + return backend, {} + elif isinstance(backend, tuple) and len(backend) == 2: + if isinstance(backend[0], str) and isinstance(backend[1], dict): + return cast(tuple[str, dict[str, Any]], backend) + + raise TypeError("anyio_backend must be either a string or tuple of (string, dict)") + + +@contextmanager +def get_runner( + backend_name: str, backend_options: dict[str, Any] +) -> Iterator[TestRunner]: + global _current_runner, _runner_leases, _runner_stack + if _current_runner is None: + asynclib = get_async_backend(backend_name) + _runner_stack = ExitStack() + if sniffio.current_async_library_cvar.get(None) is None: + # Since we're in control of the event loop, we can cache the name of the + # async library + token = sniffio.current_async_library_cvar.set(backend_name) + _runner_stack.callback(sniffio.current_async_library_cvar.reset, token) + + backend_options = backend_options or {} + _current_runner = _runner_stack.enter_context( + asynclib.create_test_runner(backend_options) + ) + + _runner_leases += 1 + try: + yield _current_runner + finally: + _runner_leases -= 1 + if not _runner_leases: + assert _runner_stack is not None + _runner_stack.close() + _runner_stack = _current_runner = None + + +def pytest_addoption(parser: pytest.Parser) -> None: + parser.addini( + "anyio_mode", + default="strict", + help='AnyIO plugin mode (either "strict" or "auto")', + type="string", + ) + + +def pytest_configure(config: pytest.Config) -> None: + config.addinivalue_line( + "markers", + "anyio: mark the (coroutine function) test to be run asynchronously via anyio.", + ) + if ( + config.getini("anyio_mode") == "auto" + and config.pluginmanager.has_plugin("asyncio") + and config.getini("asyncio_mode") == "auto" + ): + config.issue_config_time_warning( + pytest.PytestConfigWarning( + "AnyIO auto mode has been enabled together with pytest-asyncio auto " + "mode. This may cause unexpected behavior." + ), + 1, + ) + + +@pytest.hookimpl(hookwrapper=True) +def pytest_fixture_setup(fixturedef: Any, request: Any) -> Generator[Any]: + def wrapper(anyio_backend: Any, request: SubRequest, **kwargs: Any) -> Any: + # Rebind any fixture methods to the request instance + if ( + request.instance + and ismethod(func) + and type(func.__self__) is type(request.instance) + ): + local_func = func.__func__.__get__(request.instance) + else: + local_func = func + + backend_name, backend_options = extract_backend_and_options(anyio_backend) + if has_backend_arg: + kwargs["anyio_backend"] = anyio_backend + + if has_request_arg: + kwargs["request"] = request + + with get_runner(backend_name, backend_options) as runner: + if isasyncgenfunction(local_func): + yield from runner.run_asyncgen_fixture(local_func, kwargs) + else: + yield runner.run_fixture(local_func, kwargs) + + # Only apply this to coroutine functions and async generator functions in requests + # that involve the anyio_backend fixture + func = fixturedef.func + if isasyncgenfunction(func) or iscoroutinefunction(func): + if "anyio_backend" in request.fixturenames: + fixturedef.func = wrapper + original_argname = fixturedef.argnames + + if not (has_backend_arg := "anyio_backend" in fixturedef.argnames): + fixturedef.argnames += ("anyio_backend",) + + if not (has_request_arg := "request" in fixturedef.argnames): + fixturedef.argnames += ("request",) + + try: + return (yield) + finally: + fixturedef.func = func + fixturedef.argnames = original_argname + + return (yield) + + +@pytest.hookimpl(tryfirst=True) +def pytest_pycollect_makeitem( + collector: pytest.Module | pytest.Class, name: str, obj: object +) -> None: + if collector.istestfunction(obj, name): + inner_func = obj.hypothesis.inner_test if hasattr(obj, "hypothesis") else obj + if iscoroutinefunction(inner_func): + anyio_auto_mode = collector.config.getini("anyio_mode") == "auto" + marker = collector.get_closest_marker("anyio") + own_markers = getattr(obj, "pytestmark", ()) + if ( + anyio_auto_mode + or marker + or any(marker.name == "anyio" for marker in own_markers) + ): + pytest.mark.usefixtures("anyio_backend")(obj) + + +@pytest.hookimpl(tryfirst=True) +def pytest_pyfunc_call(pyfuncitem: Any) -> bool | None: + def run_with_hypothesis(**kwargs: Any) -> None: + with get_runner(backend_name, backend_options) as runner: + runner.run_test(original_func, kwargs) + + backend = pyfuncitem.funcargs.get("anyio_backend") + if backend: + backend_name, backend_options = extract_backend_and_options(backend) + + if hasattr(pyfuncitem.obj, "hypothesis"): + # Wrap the inner test function unless it's already wrapped + original_func = pyfuncitem.obj.hypothesis.inner_test + if original_func.__qualname__ != run_with_hypothesis.__qualname__: + if iscoroutinefunction(original_func): + pyfuncitem.obj.hypothesis.inner_test = run_with_hypothesis + + return None + + if iscoroutinefunction(pyfuncitem.obj): + funcargs = pyfuncitem.funcargs + testargs = {arg: funcargs[arg] for arg in pyfuncitem._fixtureinfo.argnames} + with get_runner(backend_name, backend_options) as runner: + try: + runner.run_test(pyfuncitem.obj, testargs) + except ExceptionGroup as excgrp: + for exc in iterate_exceptions(excgrp): + if isinstance(exc, (Exit, KeyboardInterrupt, SystemExit)): + raise exc from excgrp + + raise + + return True + + return None + + +@pytest.fixture(scope="module", params=get_all_backends()) +def anyio_backend(request: Any) -> Any: + return request.param + + +@pytest.fixture +def anyio_backend_name(anyio_backend: Any) -> str: + if isinstance(anyio_backend, str): + return anyio_backend + else: + return anyio_backend[0] + + +@pytest.fixture +def anyio_backend_options(anyio_backend: Any) -> dict[str, Any]: + if isinstance(anyio_backend, str): + return {} + else: + return anyio_backend[1] + + +class FreePortFactory: + """ + Manages port generation based on specified socket kind, ensuring no duplicate + ports are generated. + + This class provides functionality for generating available free ports on the + system. It is initialized with a specific socket kind and can generate ports + for given address families while avoiding reuse of previously generated ports. + + Users should not instantiate this class directly, but use the + ``free_tcp_port_factory`` and ``free_udp_port_factory`` fixtures instead. For simple + uses cases, ``free_tcp_port`` and ``free_udp_port`` can be used instead. + """ + + def __init__(self, kind: socket.SocketKind) -> None: + self._kind = kind + self._generated = set[int]() + + @property + def kind(self) -> socket.SocketKind: + """ + The type of socket connection (e.g., :data:`~socket.SOCK_STREAM` or + :data:`~socket.SOCK_DGRAM`) used to bind for checking port availability + + """ + return self._kind + + def __call__(self, family: socket.AddressFamily | None = None) -> int: + """ + Return an unbound port for the given address family. + + :param family: if omitted, both IPv4 and IPv6 addresses will be tried + :return: a port number + + """ + if family is not None: + families = [family] + else: + families = [socket.AF_INET] + if socket.has_ipv6: + families.append(socket.AF_INET6) + + while True: + port = 0 + with ExitStack() as stack: + for family in families: + sock = stack.enter_context(socket.socket(family, self._kind)) + addr = "::1" if family == socket.AF_INET6 else "127.0.0.1" + try: + sock.bind((addr, port)) + except OSError: + break + + if not port: + port = sock.getsockname()[1] + else: + if port not in self._generated: + self._generated.add(port) + return port + + +@pytest.fixture(scope="session") +def free_tcp_port_factory() -> FreePortFactory: + return FreePortFactory(socket.SOCK_STREAM) + + +@pytest.fixture(scope="session") +def free_udp_port_factory() -> FreePortFactory: + return FreePortFactory(socket.SOCK_DGRAM) + + +@pytest.fixture +def free_tcp_port(free_tcp_port_factory: Callable[[], int]) -> int: + return free_tcp_port_factory() + + +@pytest.fixture +def free_udp_port(free_udp_port_factory: Callable[[], int]) -> int: + return free_udp_port_factory() diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__init__.py b/ocr/.venv/Lib/site-packages/anyio/streams/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eed195959e7a7fa92862dabcbb32d1a7eb6faeed GIT binary patch literal 184 zcmd1j<>g`k0Gw;(Y& zJ25@AI3_W#GBaPlxTGjGF}GMhK0Y%qvm`!Vub}c4hfQvNN@-529mvvRCLqDW007ci BFJAxv literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c2ef511ec34226d0073a51dab64ac138bc32dd9 GIT binary patch literal 6450 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6bef84a80b5a0477493b954b3c04570b85fe5f46 GIT binary patch literal 5539 zcmcgw%X1t@9iHx)eQ32>J*~*jYao!YiL-%(f}p63AF*STAO~-ZVJz2ZcDiMaJddSk z*0L5k4tXw%Vol_{+#T?3WN8EW4rG}VCX!<|Jxf7E5iTx%>^Cw8`>WFOHMU%Yr0Mn>?>x@WRmRgfg%E((87E_%>CxFJAoE zZD0H>U%4Kqy>2&AnG{#MQt5G+rTVFt?S2y6k&rEtn`UmFix2YZ`5^Yx!Ii7I<$G!N z4X0Jh`SN*{+>!A$nI=8u%Zo}SDqp@3CaDzDm9rOPadoGiDd|P|;%5h4Db8h?3Oc<^ zwq=&jWQm*YqE+Pc8MV6Juo*jFJb#eMYtom&T{)PeK~-%Ti=ylk4wF9=DJZLdLhYm*Zp133yT)DgyCwH=9qWg2_3qwdV!iw z;`P{2uaHcyCpRvvZ(UENO1Jj*WD?)r`cS5KvZT8OJ;pbnb(y*6u52Z~+G^dE@!hRY zg3eYNWb*B<=il*e%XG_&4}#>KRO=#rhxXg*9;g$TeFaZSC#o3@-r!4I*FJ@qCTthp0LcQ9^V-g>Bj%Jv9f&UApy$0*j$zfu*O2;TR>L33^jx5Y z2=GI8Xt;3Nw(*#4K4y8zrLDs{tW<_O#VjM7)T#{+Sp>3$|pt)%&gd%J} z^l(bzMEdBoM4Zn3E45U1RO zXY?!7`c>%>&UnL!YnG9f51I@mX8ab4X&d{79tE!&j4EyD`eu34$AVKo0&|(RQigzu zhoGtNqFkWz=13~^xDk3$M|fx6K)u#u+33G}92$8qQ{Fgkq^*rG@x3rT1ECn6TjX|6 zZHVyE8>&OdXiIF5AK_GmE=}#^T7!x#{#jd8Z=>NYJbHI^+MUK<6|bYgxD?ZR=?Xh6D#SHrZv zty@cs^9HLk&Mb@nbIG)L-~M;NZ(?1FY1*kFzfLl#ZYZB7xuVFC)Qj|biC*8Q7h#xJ zyDC9i$_~_zsBY}lTB3a`8?Tq~=+IDwU)M}-E-+pH6!_#$XUXEuLl^}t=9tnFD+1yE zAqA+CI3ZTWtf)UMIb~Uad%S?~wSZDptcgXjgpf8PmJ!5G<_(Hp*O0D?^wa-q&BpJX z-9c8ei_mIkyIy8fN=xk>l|;5@Q^2x=7%j4p(}OgVQLCm$uXjD=MY>^q*jdj34ci?l zV;i8vQrJ6*((@v%(`+4`n{8wmSxnSw*>{m4zy&-Zq*!0K-)sF)FQJpllVxnsKD39) z{w9jIw34O*unDXPxUUJgA3!K#Ud9jE5kstCk2vBUziiy+hel>)r9*zCy{2jQf3H^~ zNG<>XKr%Qxp)rJ~bD+;dhafy|Be%!;@B=t#^Z*h{uj@9w?PO<+UY2MWG`hvfX-v*l zXY+Ac2Vh0}9^_~OPt8)9T#%TJAErf?)y6uuGVK^Mq%)V+Jd5r+Rv{u+8%QA2x^Im- zf{ZaEpNYJCF4;k<$c^%nmZzX4SZNa)S_i@xtUotSD2D~KNGbO@!tENut#zjn`;X7HJ}{{n`tA z1#MFes;*pZYZ9mCP*U@FA(K%=P#;jUCA`ebO?l6s@JWqUMHTGqV|3HegFoQx6yipi zHSkm)@NX^CVu&8A$Iu%LgwH3SDX`hRyuT}BU-~BI8vaNoBCioUo`As&_#+d>$SxzK zHo4bBiWym8Tgp3AHZ!)i;gS;;2j5AhMAk^)HtUgu;cW*=>&jIkEiE+N*&dr3I)imf z^xRA`8|16-Y9Ui!1>G!BsqHDm1B@avKC#Tuum@*`aStRLMos-EcRV`EU{rz6y6q=% zrjjtVcawd4dwV#=_O>0Q2n?B2T`(Fc#^Vcuv#uwP<-YB8(j){0A1y!8)eBOY+5>}F zw}T1C!}K`!=v-q!HV4F~@Vmm&=rm2Uu%Zi4q56(866C>8ak7Cq^#49O)iq7<^zr?kQZmLNG!GsDFrlOWLc5bV4;T7>V4cY@ zRBr-{`e-7cO1zALq-@TH-oKFuJ0OjGEz{T`$yQ|t84(osN1wW4u@YRgJ%m113? zS}p0pBn@-EmTSjyeqM21k@&b4&HAC2rsQvlP(P!&C|4`;d2JkuPB3w*F%zI2{uED2 z5v*!hj92TdUTe%X78JGlc&2_d=UGZ>L_?<8zznBrwy27khb7GjmT;|UAn%vOJR-|- zK2Oo>hQfWSt?j1&7j0Y5Nc{WMDJ6IQpXPm<_CL@2m&R(%%lIIGdvk7ek|ZqBzBz#p zp)*SRWCvd$x~h_3F)j=DP0CV33UFv@3Sc5nSpy1S4Jd%+AzzJS@H7k1&H2OVi=xC8p&Kw=ywbMAF=zTeqYKLNnal6oKi z3KjhVQf?8Kd)AFsd&cMJqHpQ^LA}0){MtWx%qqu}B)4FNks?Rc419`)klIHy~pDpF@?Q{=Sj=ky}V zG0YQJsp1^Hrt<{d^<(iTG^F(9gh<9qQzWCmavTa8u-Rmn5U0kWjZjv^Rf;%v1rnm0 zUR6V-qnEz1JatR?h(=wemyS}uB5AxyE$Isi&Dq0~(xtKpOSnmW+n86>ve|rvz6$O1 z@WBCJg%n3!KJO>^e&g$pcrCBvD^idmXUut!6tS?ZOG&CKBvgo>hC!#GxMh4fgW;+f z8b*rMbT==cEs!Qkrxxf%-zW6vr`)8amZ?bJe~PQ6O%g>D20(e*yIP2Sfk> literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5de93da238a9e637ce39d2bbdf67436754f9efe GIT binary patch literal 10064 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc5938991163ef4e63c458fc496063c399560c5f GIT binary patch literal 7105 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc b/ocr/.venv/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17f45b5d65bb0c094fa5d3f7236db5a4a9e16e7f GIT binary patch literal 12801 zcmb_iS#TRidY%iw;2;Q66m^)gMu%;|mgs9w+Oc(*vQ&{Nl}KA_NXl@C9+IE{4Ae7_ z3AKMv zsf>txre17}Rz@48N(p6?W$R;&@yd8(Pi0SIqB7CgTiM%~tW1iwTzy|-e`SB;K;?ia z=j#U>PgI_0OjV{Dhbo5}Pgb669IhO0SQSfE+|=3;R=Abow}9CQW;t3psw&O2C>@g} z(Wi($Uq|gI`W&wuZ#-3b3jIt`bF5z@`j*i5yJ#6h-=`~2NASk#$7IPZvGEPH@{D_& z?ZNK}w~WuT?z79<0fkLaT6vD`bx*R%R~5887uB5-b^Bgb-c;CrcHn`+4!HX_^vblG zV+Yw2AFHUJVuw(F$UU^71M>3&El;w;XgTa2cAr0>h}IX--(p8ld&GSba9(8Eyiz{; zDV=m#4f9U3=><+u^P2u#Sqsf`PQC6d)!i`jmeXq0nk(p(WlrE!>yGcEkh;sA7G-kt z^Ow$f&A@#xz(D;>vlC_(IxY7dhkvRO^i;U#Ecb4?&8x2OwRzQ@<=o?8ezwUjFV6?u zbsFIq;CjAmFMDWTZrAIbaNmj>*j1-lb?bGP+3tH)Tg)A11J4dtF^plpF`9~<2?AbQ zY6tGT8-$|)RoPBlS5Ai`!0K!V&2qN=Lq#CpbgO|_ZEm2~-hO_ti+QQ$2X52lVRpgs zZ@tOAcB`y?s$;325+~6{5mIOBHODV&d_OhhsX+@1(Z(#aTiDw4+s&3!y%qN<$ib#} z$K|}n+|XRGue!ky)aQ7O*~D2+s= z0xP048kI&^38k^9R1`hOqtYnbgSLrR6}A^-IEjt9G@l$|_lrbNPOa%%3*2e?EsqD* zC8y(ZYu>H4c`fKz+^su-%dF&-{pp7}Kj2o+n)8}&IO5b>O}oXtz^i)oFtvo!_rrtL zRS>#cx0h;72BNlux^K6ewcBmCI}y;KTnCJkmPl&N;AWVv)>^AB?>nv^n_;Qty4(gM$%S&q@>oA9+?aBNeKX97N;ppr&T3~nLa2=}+^RyF~ z)rSO_E0;i6cGGFNwjJhdyWz2Ro$>|SzTI}}QA@_QnOC)KJ_ZuwPa_FOZF@kHpy>oP zl_`0alIJKnMaeWJFHrI#B`+iSMB!hhJS7j`IX83TZR~`9V{Og#nkzTnaQ$0>*Sc}J z2?@*C54+~%DdmugEl{953iBA#+qT>pmC?9{yHu{uZ?|9LEMy4B&w z0h}iDi7#`Cp%(R`hEG4$$2HOGJUCf%Z|~r&L?Lbh!Z2rnrwrmLaFapY1U@o|kHA3& zagg}Ufd^77FFpk}@_mE7#P+hu2WbfLG<#Wybpssv1$LNO4~&Y*zQ~TUW5{LMm)Mut z308iPs^r*L*mLY8YV&A6#io%fxFhVV>;?AX0|T&%EDzqAfi$`_KQA`HfsRyi7XHo< ziDO$VlHx5eRmfNiIPAl*&Y_H|J&A=jwZ-Hbi=0;82t-7^4;5=%Y&IxD>t2N&e z!r5ANe5>hMt@cvAR<&x)T2OQ9wXVxwvD&_C%{1I#b!L%fT|_Gcsl%ovMwk*Rgk!o` zaQoIW_ZrrWfIPGK{-BIlv_SKg-)@m`Z~;RAnYrU|Ye=|TfG8!1Emu5)rMl6wS+oms zFdxTxhNbNT_(@btB7L4Zc+2Uk|5+LXYFD<0-a0z{0>&(OqAQF4~r_C|b7!VxL4L*vi%3`1E%%UWhsc}vk0n|hgB%6caHHG^yq1cx3u%y7DAtmS)|p4roSI@3Qk z*0arGP}m$9s#mwt7om(UDC^mt(o=h>UY5o%^_OffETdM4%D!m*?IpzF4 zw3;|*qTy>GBG4wN1|kx|JR#{?u=-fV5fKWF7gP({ht1Id$y*>VkZ+SgoZbS35ELR6 z64nEwW?Bvh-)yIn82}JM{#4R3fKuQIic3(BfD8!w8EbKIfw$d7u*EXw1w-MV=9ir; z(gv1CO|AvHA&Ui~`eXuh%uL0-R)^lmP3>|?SN+8{EosmnIa6|t z-0at`%${4AeZ!u;d>+;@NyczAVwU)b%PIaVsF$+yHOjqC$!R1oUv%IQX0Eh(3tmN- zKX>Wk?A(HV=IwN~SnWnofoza5=QERn+u=#BJHnDN9``20KohuOZUH^|H2 z8LBl&osppDqbOEP-fr4{r&$dr;lI@Dq%S0?*rfeD78aOiCudd8hkCW{%hd?eNXUH> z`C@TlrX`nANn;AT)~sac*J}sDd3h&!ae1@>Tz*0eR9AHlD&nWEBWdP@`*W{@KKcQs*zD5l45$Z>$I1y*9p~`G49=t?l7IWg7k7QTR{Me}ex+ zt{^a(a$mcTT^U#j?d0E}*RDAC^m*mBR@UbhDpSK;YG1o>@zSh)b@t2~7w6tA@8uV8 zhG7Z9@|x2OuEHo1(m=2$2-+3immvAjfT77kgAAuI6Iqv>d||=RVOE+^uD2X!F3(FS zWZqB!0`^rn7R_;uN}@R&Mb&)AC*G44CMskuSA!HJC#VXkK(&|8M_tG|q_~9OIfM*= zR(+X&jqs?@bTG4gXsXa4yEoJkj@ZU<{3^Qr7+?P#B-%Yq*VKYq1Xr2besw~ld{NEe zlUB`p+RqCq<6cpnQcFpl%oSAd;v@9Z()el``u@9F+z;N>{;^A9RNC^>yUUh`Pe@;J z$Ot|uO_Q5d@Kf?fd6-kuMkI*=8&TOLYKBEPV0kHP`ldnLftFN~OQWQ3f~%G(j-+)T zBx>M|NKpuhAFG{2+6`J#(r_iqN#IPH`h*l_OduQ?bP@Je-CYjgGYAz%)M72QmzP~$ z9#A7?Q=9@PeGsPGO@b!%0trGveNxWaD1M^yHL6W~P9ZnBhq`~j*Qa2Pc5fm>M^;k1 zrT*4Sz@b4gfgO9A*xgq!p7wN2;ZJs9l~6&BGAzfHnfycs&Zcu zas^!2AH$S+;5=7OOPxn}h9hSk-<^FgQrMg%r{t=%45;xI)ofc~fVzLe*C&TZyO#!u zj)PQ7qyT;~VGOQRLP3;Jh4O1S@7Xerq9ZoKpTX!M*-g|$-p9{Kc9WkyNKrj?ON%71 z*3uLrosAFxWnCW79jd5PvTY%YsQVXuqobMx=isAt$NEPV z36#))bZ87=Oa4-V?Gy^TV@na~7)yNs%PK~|HW3u`9`f69`!&>khObX^X!i~dX;2b* zLxht;C;E!5TS7)669`sZR|BvhQ)vs~y1^g{Qava+1~!G;CG+~0+L~e@Ax&G?*NvXu zGnO@$x`l8{kYP}uzpwm2+feVTC}rrkY|eG}Vx#VyxWS$)pLl)d#oLwcL+Xh<0<1D1GP;h$?%4>}RB<(HWABsaw=pn>+uBCZ%s4;d}DAC=4oh zxG#!?eQLg1cN$B~d94T{^NAY^O7~=cGsS`Tqxk;xt91`5-G2=kIqzkt2K?;TMRI>EmYGlPpFpJTkN$GscVgj228YMN5Ge6am=B!NoP3 z@)@C<-nohxCjSuaa${5}!ygB2ABOPXK=1OH)KjJH$1GX=X#yy;_$2Hw#5(9gXE35K z0?XkZaYqE>Vj!mf_-M0O=L-axBte*o!rcQpQk)`DC;uiAcmRt3Br+OIF_>hU0n;s~ zkr{_@vG~GF``7Nl#}jS2Angs(w31rRQSJ;SPf>D~k~b(3*qx-@EG4fZfvOh<=(|)w zRw%ztiDwYWyN4 zU!vs8lzatAm>0oV>BsVGR4o)Y86%wR3cg4QDL?)JlF&qq2!3+V5j#2{Y6XRet)`V; z#@Bxq2_o{EnS)O%J}`eFWa(4-&)oUkbgodyOAFO$6q%2)*Z!r;Du&g4^S4j|ifh*$H+8;r9dVAcF2$c8op2rVwh+xp{V+(LF0v zZl%B`ApM>S^Pq(IdeHejaE-8v&ro;^cNB=hRb7iNbm;mJb}aNJS*TE;2pl17)^DSb zyVDN5Q%!fpLkJz0SC))WLXnb26@Z~wT@Z1{a;jtjLUHyZgOQJj=^BPn0E{8PiRBPB7D6t;DMZ9! za8WRg>kZic(NDYfb>NM zQNZFLy#7wpIpLImF)~;HqPD^`+7V9^!zqwf=g=+KGzHvjXE|{BqKt8N zN8+6!Bjsjj#yiq24&O5f5w+021^JXDVwhU4drlCJ?Ld|{(9C`6la}V2xL4^*n#UXA zmoVr9TqE>g)y9GU01i~3Z72w4>?bQYNNuTWuv>a~TJo``Dxy7uYl>t2p8Pn18f1q!7hjPqdqLaEFECzKdA914a|iAjJC&kbBgx z46{1IIsph8SX`7x9vRQmxcFRLwCdi_px(9^~AD__B>EMFa1bDiu~g7= zDcA>(CZ$(!6o|$QHog1sIf^n9T>kK2-$h6SL*y%jxd5+BY~kHJEF~{aqT9c!j_Kn+ z(tRm>H%R}zgbXp$N6LoEG9M}*s^ku`^n=2Nx~_kuuBn^2pX+I{S1$crnEPDpfG}7R zgJQ^6rD@1H{4P!NhhiG?K1oxAivQGIjHb`K_#!|ug#byW^Cm)_=+P~Gq;BH!vZwSBzJ{I%Uh41bWG~Ac z1!O-`dYC;9rBGYhm=pdiJy+^WLYPlyfxe9RWkZG2V)*wcA)7>+H%Sj6)A$e201Ha& z5p}N=qli^>y)1|b#?%i9fbcr|WHcHbH*SW-r8^?nif^GK{7YCmBJd|d7{#AYJwk9W zZBd}`(YW4yc95FHMM&Qp+6FX6ZukHZN+G+S6+K z6XX^MPx65fD@u*4`$t89C82HsZHPk9ANRyjG=n@G83x-N2!QoH98Dl4jmN$hmF${m zxJ4Kc-60;Q3XeOPJ&JSPN8=70XapEU6--K(2Exx3-g1rfgTB+ZCDiv|NZ+O5AE8Qa zOCLS4H{U?RZ43|&O?P_mjJA6<{o{(AR}kNE0xZn_KHy;w1a}B>-9;UdhN)jR1AK)< z^X|sN(mhK{!u$i8d6SYYN)kTj-=gBTk(5Us>jOxXiA}-+?6II$jobm^4Ne3j5A(Mu z_f1N~VfGWTdEY_96fN%{GQ#Q~GZ9`vfCY@89WDGkw@=eyu%}}w7hC!C zw2f)_=*;-O&L-F>D?Lb83_P~ko7nR(9dPiIAzf#k>p%Q+{tc)IrE_h_Adl>6dK(D4 z0d@ifw=op|t^pn|MJk_-ZksDFIhxyyyN zybt}nSK6`8{eQU5jxX&K9lh&Sc0A#3#xYEc&wq^_UtK5Dk+~9W8+QL>bS}UA3Om}Y z_!8SnF0SVmKGCH+eik$(NE<$GpD;Lt!RPYV$?r}~TL>MYiHT0n5uMHco$I0sE7b*EwO2jq@BPxTUe99^;Fn)!a zMPT3zB8~wQVcWue^cJ=#M7+?jyO@;xC+PIsv=b!$w0k8D z5lHNUxWG`0|6NGa#i90#?&P+;h-NS6u^K&FFF)uhQ^ll+zjU-=*Z&DY<|I&oerHIEsh4 z6xst5`_s-+l@r%+Vwo_Xyfk-xo}!v8d9wi?$NAEb5yY9s8w?ouoJfFYDfuHx=z3V* zAPbLxoB{bVqlEVz+?}@R=>}#9IHyI3=c}Pk7zm?D?CAtGP*k3i{lfPl2@6rcQ1~0- zA$DaeIP1EAu^RsaA1 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/buffered.py b/ocr/.venv/Lib/site-packages/anyio/streams/buffered.py new file mode 100644 index 00000000..ca40eae8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/buffered.py @@ -0,0 +1,182 @@ +from __future__ import annotations + +import sys +from collections.abc import Callable, Iterable, Mapping +from dataclasses import dataclass, field +from typing import Any, SupportsIndex + +from .. import ClosedResourceError, DelimiterNotFound, EndOfStream, IncompleteRead +from ..abc import ( + AnyByteReceiveStream, + AnyByteStream, + AnyByteStreamConnectable, + ByteReceiveStream, + ByteStream, + ByteStreamConnectable, +) + +if sys.version_info >= (3, 12): + from typing import override +else: + from typing_extensions import override + + +@dataclass(eq=False) +class BufferedByteReceiveStream(ByteReceiveStream): + """ + Wraps any bytes-based receive stream and uses a buffer to provide sophisticated + receiving capabilities in the form of a byte stream. + """ + + receive_stream: AnyByteReceiveStream + _buffer: bytearray = field(init=False, default_factory=bytearray) + _closed: bool = field(init=False, default=False) + + async def aclose(self) -> None: + await self.receive_stream.aclose() + self._closed = True + + @property + def buffer(self) -> bytes: + """The bytes currently in the buffer.""" + return bytes(self._buffer) + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return self.receive_stream.extra_attributes + + def feed_data(self, data: Iterable[SupportsIndex], /) -> None: + """ + Append data directly into the buffer. + + Any data in the buffer will be consumed by receive operations before receiving + anything from the wrapped stream. + + :param data: the data to append to the buffer (can be bytes or anything else + that supports ``__index__()``) + + """ + self._buffer.extend(data) + + async def receive(self, max_bytes: int = 65536) -> bytes: + if self._closed: + raise ClosedResourceError + + if self._buffer: + chunk = bytes(self._buffer[:max_bytes]) + del self._buffer[:max_bytes] + return chunk + elif isinstance(self.receive_stream, ByteReceiveStream): + return await self.receive_stream.receive(max_bytes) + else: + # With a bytes-oriented object stream, we need to handle any surplus bytes + # we get from the receive() call + chunk = await self.receive_stream.receive() + if len(chunk) > max_bytes: + # Save the surplus bytes in the buffer + self._buffer.extend(chunk[max_bytes:]) + return chunk[:max_bytes] + else: + return chunk + + async def receive_exactly(self, nbytes: int) -> bytes: + """ + Read exactly the given amount of bytes from the stream. + + :param nbytes: the number of bytes to read + :return: the bytes read + :raises ~anyio.IncompleteRead: if the stream was closed before the requested + amount of bytes could be read from the stream + + """ + while True: + remaining = nbytes - len(self._buffer) + if remaining <= 0: + retval = self._buffer[:nbytes] + del self._buffer[:nbytes] + return bytes(retval) + + try: + if isinstance(self.receive_stream, ByteReceiveStream): + chunk = await self.receive_stream.receive(remaining) + else: + chunk = await self.receive_stream.receive() + except EndOfStream as exc: + raise IncompleteRead from exc + + self._buffer.extend(chunk) + + async def receive_until(self, delimiter: bytes, max_bytes: int) -> bytes: + """ + Read from the stream until the delimiter is found or max_bytes have been read. + + :param delimiter: the marker to look for in the stream + :param max_bytes: maximum number of bytes that will be read before raising + :exc:`~anyio.DelimiterNotFound` + :return: the bytes read (not including the delimiter) + :raises ~anyio.IncompleteRead: if the stream was closed before the delimiter + was found + :raises ~anyio.DelimiterNotFound: if the delimiter is not found within the + bytes read up to the maximum allowed + + """ + delimiter_size = len(delimiter) + offset = 0 + while True: + # Check if the delimiter can be found in the current buffer + index = self._buffer.find(delimiter, offset) + if index >= 0: + found = self._buffer[:index] + del self._buffer[: index + len(delimiter) :] + return bytes(found) + + # Check if the buffer is already at or over the limit + if len(self._buffer) >= max_bytes: + raise DelimiterNotFound(max_bytes) + + # Read more data into the buffer from the socket + try: + data = await self.receive_stream.receive() + except EndOfStream as exc: + raise IncompleteRead from exc + + # Move the offset forward and add the new data to the buffer + offset = max(len(self._buffer) - delimiter_size + 1, 0) + self._buffer.extend(data) + + +class BufferedByteStream(BufferedByteReceiveStream, ByteStream): + """ + A full-duplex variant of :class:`BufferedByteReceiveStream`. All writes are passed + through to the wrapped stream as-is. + """ + + def __init__(self, stream: AnyByteStream): + """ + :param stream: the stream to be wrapped + + """ + super().__init__(stream) + self._stream = stream + + @override + async def send_eof(self) -> None: + await self._stream.send_eof() + + @override + async def send(self, item: bytes) -> None: + await self._stream.send(item) + + +class BufferedConnectable(ByteStreamConnectable): + def __init__(self, connectable: AnyByteStreamConnectable): + """ + :param connectable: the connectable to wrap + + """ + self.connectable = connectable + + @override + async def connect(self) -> BufferedByteStream: + stream = await self.connectable.connect() + return BufferedByteStream(stream) diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/file.py b/ocr/.venv/Lib/site-packages/anyio/streams/file.py new file mode 100644 index 00000000..f4924642 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/file.py @@ -0,0 +1,148 @@ +from __future__ import annotations + +from collections.abc import Callable, Mapping +from io import SEEK_SET, UnsupportedOperation +from os import PathLike +from pathlib import Path +from typing import Any, BinaryIO, cast + +from .. import ( + BrokenResourceError, + ClosedResourceError, + EndOfStream, + TypedAttributeSet, + to_thread, + typed_attribute, +) +from ..abc import ByteReceiveStream, ByteSendStream + + +class FileStreamAttribute(TypedAttributeSet): + #: the open file descriptor + file: BinaryIO = typed_attribute() + #: the path of the file on the file system, if available (file must be a real file) + path: Path = typed_attribute() + #: the file number, if available (file must be a real file or a TTY) + fileno: int = typed_attribute() + + +class _BaseFileStream: + def __init__(self, file: BinaryIO): + self._file = file + + async def aclose(self) -> None: + await to_thread.run_sync(self._file.close) + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + attributes: dict[Any, Callable[[], Any]] = { + FileStreamAttribute.file: lambda: self._file, + } + + if hasattr(self._file, "name"): + attributes[FileStreamAttribute.path] = lambda: Path(self._file.name) + + try: + self._file.fileno() + except UnsupportedOperation: + pass + else: + attributes[FileStreamAttribute.fileno] = lambda: self._file.fileno() + + return attributes + + +class FileReadStream(_BaseFileStream, ByteReceiveStream): + """ + A byte stream that reads from a file in the file system. + + :param file: a file that has been opened for reading in binary mode + + .. versionadded:: 3.0 + """ + + @classmethod + async def from_path(cls, path: str | PathLike[str]) -> FileReadStream: + """ + Create a file read stream by opening the given file. + + :param path: path of the file to read from + + """ + file = await to_thread.run_sync(Path(path).open, "rb") + return cls(cast(BinaryIO, file)) + + async def receive(self, max_bytes: int = 65536) -> bytes: + try: + data = await to_thread.run_sync(self._file.read, max_bytes) + except ValueError: + raise ClosedResourceError from None + except OSError as exc: + raise BrokenResourceError from exc + + if data: + return data + else: + raise EndOfStream + + async def seek(self, position: int, whence: int = SEEK_SET) -> int: + """ + Seek the file to the given position. + + .. seealso:: :meth:`io.IOBase.seek` + + .. note:: Not all file descriptors are seekable. + + :param position: position to seek the file to + :param whence: controls how ``position`` is interpreted + :return: the new absolute position + :raises OSError: if the file is not seekable + + """ + return await to_thread.run_sync(self._file.seek, position, whence) + + async def tell(self) -> int: + """ + Return the current stream position. + + .. note:: Not all file descriptors are seekable. + + :return: the current absolute position + :raises OSError: if the file is not seekable + + """ + return await to_thread.run_sync(self._file.tell) + + +class FileWriteStream(_BaseFileStream, ByteSendStream): + """ + A byte stream that writes to a file in the file system. + + :param file: a file that has been opened for writing in binary mode + + .. versionadded:: 3.0 + """ + + @classmethod + async def from_path( + cls, path: str | PathLike[str], append: bool = False + ) -> FileWriteStream: + """ + Create a file write stream by opening the given file for writing. + + :param path: path of the file to write to + :param append: if ``True``, open the file for appending; if ``False``, any + existing file at the given path will be truncated + + """ + mode = "ab" if append else "wb" + file = await to_thread.run_sync(Path(path).open, mode) + return cls(cast(BinaryIO, file)) + + async def send(self, item: bytes) -> None: + try: + await to_thread.run_sync(self._file.write, item) + except ValueError: + raise ClosedResourceError from None + except OSError as exc: + raise BrokenResourceError from exc diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/memory.py b/ocr/.venv/Lib/site-packages/anyio/streams/memory.py new file mode 100644 index 00000000..9a3bac47 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/memory.py @@ -0,0 +1,319 @@ +from __future__ import annotations + +import warnings +from collections import OrderedDict, deque +from dataclasses import dataclass, field +from types import TracebackType +from typing import Generic, NamedTuple, TypeVar + +from .. import ( + BrokenResourceError, + ClosedResourceError, + EndOfStream, + WouldBlock, +) +from .._core._testing import TaskInfo, get_current_task +from ..abc import Event, ObjectReceiveStream, ObjectSendStream +from ..lowlevel import checkpoint + +T_Item = TypeVar("T_Item") +T_co = TypeVar("T_co", covariant=True) +T_contra = TypeVar("T_contra", contravariant=True) + + +class MemoryObjectStreamStatistics(NamedTuple): + current_buffer_used: int #: number of items stored in the buffer + #: maximum number of items that can be stored on this stream (or :data:`math.inf`) + max_buffer_size: float + open_send_streams: int #: number of unclosed clones of the send stream + open_receive_streams: int #: number of unclosed clones of the receive stream + #: number of tasks blocked on :meth:`MemoryObjectSendStream.send` + tasks_waiting_send: int + #: number of tasks blocked on :meth:`MemoryObjectReceiveStream.receive` + tasks_waiting_receive: int + + +@dataclass(eq=False) +class MemoryObjectItemReceiver(Generic[T_Item]): + task_info: TaskInfo = field(init=False, default_factory=get_current_task) + item: T_Item = field(init=False) + + def __repr__(self) -> str: + # When item is not defined, we get following error with default __repr__: + # AttributeError: 'MemoryObjectItemReceiver' object has no attribute 'item' + item = getattr(self, "item", None) + return f"{self.__class__.__name__}(task_info={self.task_info}, item={item!r})" + + +@dataclass(eq=False) +class MemoryObjectStreamState(Generic[T_Item]): + max_buffer_size: float = field() + buffer: deque[T_Item] = field(init=False, default_factory=deque) + open_send_channels: int = field(init=False, default=0) + open_receive_channels: int = field(init=False, default=0) + waiting_receivers: OrderedDict[Event, MemoryObjectItemReceiver[T_Item]] = field( + init=False, default_factory=OrderedDict + ) + waiting_senders: OrderedDict[Event, T_Item] = field( + init=False, default_factory=OrderedDict + ) + + def statistics(self) -> MemoryObjectStreamStatistics: + return MemoryObjectStreamStatistics( + len(self.buffer), + self.max_buffer_size, + self.open_send_channels, + self.open_receive_channels, + len(self.waiting_senders), + len(self.waiting_receivers), + ) + + +@dataclass(eq=False) +class MemoryObjectReceiveStream(Generic[T_co], ObjectReceiveStream[T_co]): + _state: MemoryObjectStreamState[T_co] + _closed: bool = field(init=False, default=False) + + def __post_init__(self) -> None: + self._state.open_receive_channels += 1 + + def receive_nowait(self) -> T_co: + """ + Receive the next item if it can be done without waiting. + + :return: the received item + :raises ~anyio.ClosedResourceError: if this send stream has been closed + :raises ~anyio.EndOfStream: if the buffer is empty and this stream has been + closed from the sending end + :raises ~anyio.WouldBlock: if there are no items in the buffer and no tasks + waiting to send + + """ + if self._closed: + raise ClosedResourceError + + if self._state.waiting_senders: + # Get the item from the next sender + send_event, item = self._state.waiting_senders.popitem(last=False) + self._state.buffer.append(item) + send_event.set() + + if self._state.buffer: + return self._state.buffer.popleft() + elif not self._state.open_send_channels: + raise EndOfStream + + raise WouldBlock + + async def receive(self) -> T_co: + await checkpoint() + try: + return self.receive_nowait() + except WouldBlock: + # Add ourselves in the queue + receive_event = Event() + receiver = MemoryObjectItemReceiver[T_co]() + self._state.waiting_receivers[receive_event] = receiver + + try: + await receive_event.wait() + finally: + self._state.waiting_receivers.pop(receive_event, None) + + try: + return receiver.item + except AttributeError: + raise EndOfStream from None + + def clone(self) -> MemoryObjectReceiveStream[T_co]: + """ + Create a clone of this receive stream. + + Each clone can be closed separately. Only when all clones have been closed will + the receiving end of the memory stream be considered closed by the sending ends. + + :return: the cloned stream + + """ + if self._closed: + raise ClosedResourceError + + return MemoryObjectReceiveStream(_state=self._state) + + def close(self) -> None: + """ + Close the stream. + + This works the exact same way as :meth:`aclose`, but is provided as a special + case for the benefit of synchronous callbacks. + + """ + if not self._closed: + self._closed = True + self._state.open_receive_channels -= 1 + if self._state.open_receive_channels == 0: + send_events = list(self._state.waiting_senders.keys()) + for event in send_events: + event.set() + + async def aclose(self) -> None: + self.close() + + def statistics(self) -> MemoryObjectStreamStatistics: + """ + Return statistics about the current state of this stream. + + .. versionadded:: 3.0 + """ + return self._state.statistics() + + def __enter__(self) -> MemoryObjectReceiveStream[T_co]: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.close() + + def __del__(self) -> None: + if not self._closed: + warnings.warn( + f"Unclosed <{self.__class__.__name__} at {id(self):x}>", + ResourceWarning, + stacklevel=1, + source=self, + ) + + +@dataclass(eq=False) +class MemoryObjectSendStream(Generic[T_contra], ObjectSendStream[T_contra]): + _state: MemoryObjectStreamState[T_contra] + _closed: bool = field(init=False, default=False) + + def __post_init__(self) -> None: + self._state.open_send_channels += 1 + + def send_nowait(self, item: T_contra) -> None: + """ + Send an item immediately if it can be done without waiting. + + :param item: the item to send + :raises ~anyio.ClosedResourceError: if this send stream has been closed + :raises ~anyio.BrokenResourceError: if the stream has been closed from the + receiving end + :raises ~anyio.WouldBlock: if the buffer is full and there are no tasks waiting + to receive + + """ + if self._closed: + raise ClosedResourceError + if not self._state.open_receive_channels: + raise BrokenResourceError + + while self._state.waiting_receivers: + receive_event, receiver = self._state.waiting_receivers.popitem(last=False) + if not receiver.task_info.has_pending_cancellation(): + receiver.item = item + receive_event.set() + return + + if len(self._state.buffer) < self._state.max_buffer_size: + self._state.buffer.append(item) + else: + raise WouldBlock + + async def send(self, item: T_contra) -> None: + """ + Send an item to the stream. + + If the buffer is full, this method blocks until there is again room in the + buffer or the item can be sent directly to a receiver. + + :param item: the item to send + :raises ~anyio.ClosedResourceError: if this send stream has been closed + :raises ~anyio.BrokenResourceError: if the stream has been closed from the + receiving end + + """ + await checkpoint() + try: + self.send_nowait(item) + except WouldBlock: + # Wait until there's someone on the receiving end + send_event = Event() + self._state.waiting_senders[send_event] = item + try: + await send_event.wait() + except BaseException: + self._state.waiting_senders.pop(send_event, None) + raise + + if send_event in self._state.waiting_senders: + del self._state.waiting_senders[send_event] + raise BrokenResourceError from None + + def clone(self) -> MemoryObjectSendStream[T_contra]: + """ + Create a clone of this send stream. + + Each clone can be closed separately. Only when all clones have been closed will + the sending end of the memory stream be considered closed by the receiving ends. + + :return: the cloned stream + + """ + if self._closed: + raise ClosedResourceError + + return MemoryObjectSendStream(_state=self._state) + + def close(self) -> None: + """ + Close the stream. + + This works the exact same way as :meth:`aclose`, but is provided as a special + case for the benefit of synchronous callbacks. + + """ + if not self._closed: + self._closed = True + self._state.open_send_channels -= 1 + if self._state.open_send_channels == 0: + receive_events = list(self._state.waiting_receivers.keys()) + self._state.waiting_receivers.clear() + for event in receive_events: + event.set() + + async def aclose(self) -> None: + self.close() + + def statistics(self) -> MemoryObjectStreamStatistics: + """ + Return statistics about the current state of this stream. + + .. versionadded:: 3.0 + """ + return self._state.statistics() + + def __enter__(self) -> MemoryObjectSendStream[T_contra]: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.close() + + def __del__(self) -> None: + if not self._closed: + warnings.warn( + f"Unclosed <{self.__class__.__name__} at {id(self):x}>", + ResourceWarning, + stacklevel=1, + source=self, + ) diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/stapled.py b/ocr/.venv/Lib/site-packages/anyio/streams/stapled.py new file mode 100644 index 00000000..80f64a2e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/stapled.py @@ -0,0 +1,141 @@ +from __future__ import annotations + +from collections.abc import Callable, Mapping, Sequence +from dataclasses import dataclass +from typing import Any, Generic, TypeVar + +from ..abc import ( + ByteReceiveStream, + ByteSendStream, + ByteStream, + Listener, + ObjectReceiveStream, + ObjectSendStream, + ObjectStream, + TaskGroup, +) + +T_Item = TypeVar("T_Item") +T_Stream = TypeVar("T_Stream") + + +@dataclass(eq=False) +class StapledByteStream(ByteStream): + """ + Combines two byte streams into a single, bidirectional byte stream. + + Extra attributes will be provided from both streams, with the receive stream + providing the values in case of a conflict. + + :param ByteSendStream send_stream: the sending byte stream + :param ByteReceiveStream receive_stream: the receiving byte stream + """ + + send_stream: ByteSendStream + receive_stream: ByteReceiveStream + + async def receive(self, max_bytes: int = 65536) -> bytes: + return await self.receive_stream.receive(max_bytes) + + async def send(self, item: bytes) -> None: + await self.send_stream.send(item) + + async def send_eof(self) -> None: + await self.send_stream.aclose() + + async def aclose(self) -> None: + await self.send_stream.aclose() + await self.receive_stream.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return { + **self.send_stream.extra_attributes, + **self.receive_stream.extra_attributes, + } + + +@dataclass(eq=False) +class StapledObjectStream(Generic[T_Item], ObjectStream[T_Item]): + """ + Combines two object streams into a single, bidirectional object stream. + + Extra attributes will be provided from both streams, with the receive stream + providing the values in case of a conflict. + + :param ObjectSendStream send_stream: the sending object stream + :param ObjectReceiveStream receive_stream: the receiving object stream + """ + + send_stream: ObjectSendStream[T_Item] + receive_stream: ObjectReceiveStream[T_Item] + + async def receive(self) -> T_Item: + return await self.receive_stream.receive() + + async def send(self, item: T_Item) -> None: + await self.send_stream.send(item) + + async def send_eof(self) -> None: + await self.send_stream.aclose() + + async def aclose(self) -> None: + await self.send_stream.aclose() + await self.receive_stream.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return { + **self.send_stream.extra_attributes, + **self.receive_stream.extra_attributes, + } + + +@dataclass(eq=False) +class MultiListener(Generic[T_Stream], Listener[T_Stream]): + """ + Combines multiple listeners into one, serving connections from all of them at once. + + Any MultiListeners in the given collection of listeners will have their listeners + moved into this one. + + Extra attributes are provided from each listener, with each successive listener + overriding any conflicting attributes from the previous one. + + :param listeners: listeners to serve + :type listeners: Sequence[Listener[T_Stream]] + """ + + listeners: Sequence[Listener[T_Stream]] + + def __post_init__(self) -> None: + listeners: list[Listener[T_Stream]] = [] + for listener in self.listeners: + if isinstance(listener, MultiListener): + listeners.extend(listener.listeners) + del listener.listeners[:] # type: ignore[attr-defined] + else: + listeners.append(listener) + + self.listeners = listeners + + async def serve( + self, handler: Callable[[T_Stream], Any], task_group: TaskGroup | None = None + ) -> None: + from .. import create_task_group + + async with create_task_group() as tg: + for listener in self.listeners: + tg.start_soon(listener.serve, handler, task_group) + + async def aclose(self) -> None: + for listener in self.listeners: + await listener.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + attributes: dict = {} + for listener in self.listeners: + attributes.update(listener.extra_attributes) + + return attributes diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/text.py b/ocr/.venv/Lib/site-packages/anyio/streams/text.py new file mode 100644 index 00000000..dfd8e7a2 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/text.py @@ -0,0 +1,169 @@ +from __future__ import annotations + +import codecs +import sys +from collections.abc import Callable, Mapping +from dataclasses import InitVar, dataclass, field +from typing import Any + +from ..abc import ( + AnyByteReceiveStream, + AnyByteSendStream, + AnyByteStream, + AnyByteStreamConnectable, + ObjectReceiveStream, + ObjectSendStream, + ObjectStream, + ObjectStreamConnectable, +) + +if sys.version_info >= (3, 12): + from typing import override +else: + from typing_extensions import override + + +@dataclass(eq=False) +class TextReceiveStream(ObjectReceiveStream[str]): + """ + Stream wrapper that decodes bytes to strings using the given encoding. + + Decoding is done using :class:`~codecs.IncrementalDecoder` which returns any + completely received unicode characters as soon as they come in. + + :param transport_stream: any bytes-based receive stream + :param encoding: character encoding to use for decoding bytes to strings (defaults + to ``utf-8``) + :param errors: handling scheme for decoding errors (defaults to ``strict``; see the + `codecs module documentation`_ for a comprehensive list of options) + + .. _codecs module documentation: + https://docs.python.org/3/library/codecs.html#codec-objects + """ + + transport_stream: AnyByteReceiveStream + encoding: InitVar[str] = "utf-8" + errors: InitVar[str] = "strict" + _decoder: codecs.IncrementalDecoder = field(init=False) + + def __post_init__(self, encoding: str, errors: str) -> None: + decoder_class = codecs.getincrementaldecoder(encoding) + self._decoder = decoder_class(errors=errors) + + async def receive(self) -> str: + while True: + chunk = await self.transport_stream.receive() + decoded = self._decoder.decode(chunk) + if decoded: + return decoded + + async def aclose(self) -> None: + await self.transport_stream.aclose() + self._decoder.reset() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return self.transport_stream.extra_attributes + + +@dataclass(eq=False) +class TextSendStream(ObjectSendStream[str]): + """ + Sends strings to the wrapped stream as bytes using the given encoding. + + :param AnyByteSendStream transport_stream: any bytes-based send stream + :param str encoding: character encoding to use for encoding strings to bytes + (defaults to ``utf-8``) + :param str errors: handling scheme for encoding errors (defaults to ``strict``; see + the `codecs module documentation`_ for a comprehensive list of options) + + .. _codecs module documentation: + https://docs.python.org/3/library/codecs.html#codec-objects + """ + + transport_stream: AnyByteSendStream + encoding: InitVar[str] = "utf-8" + errors: str = "strict" + _encoder: Callable[..., tuple[bytes, int]] = field(init=False) + + def __post_init__(self, encoding: str) -> None: + self._encoder = codecs.getencoder(encoding) + + async def send(self, item: str) -> None: + encoded = self._encoder(item, self.errors)[0] + await self.transport_stream.send(encoded) + + async def aclose(self) -> None: + await self.transport_stream.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return self.transport_stream.extra_attributes + + +@dataclass(eq=False) +class TextStream(ObjectStream[str]): + """ + A bidirectional stream that decodes bytes to strings on receive and encodes strings + to bytes on send. + + Extra attributes will be provided from both streams, with the receive stream + providing the values in case of a conflict. + + :param AnyByteStream transport_stream: any bytes-based stream + :param str encoding: character encoding to use for encoding/decoding strings to/from + bytes (defaults to ``utf-8``) + :param str errors: handling scheme for encoding errors (defaults to ``strict``; see + the `codecs module documentation`_ for a comprehensive list of options) + + .. _codecs module documentation: + https://docs.python.org/3/library/codecs.html#codec-objects + """ + + transport_stream: AnyByteStream + encoding: InitVar[str] = "utf-8" + errors: InitVar[str] = "strict" + _receive_stream: TextReceiveStream = field(init=False) + _send_stream: TextSendStream = field(init=False) + + def __post_init__(self, encoding: str, errors: str) -> None: + self._receive_stream = TextReceiveStream( + self.transport_stream, encoding=encoding, errors=errors + ) + self._send_stream = TextSendStream( + self.transport_stream, encoding=encoding, errors=errors + ) + + async def receive(self) -> str: + return await self._receive_stream.receive() + + async def send(self, item: str) -> None: + await self._send_stream.send(item) + + async def send_eof(self) -> None: + await self.transport_stream.send_eof() + + async def aclose(self) -> None: + await self._send_stream.aclose() + await self._receive_stream.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return { + **self._send_stream.extra_attributes, + **self._receive_stream.extra_attributes, + } + + +class TextConnectable(ObjectStreamConnectable[str]): + def __init__(self, connectable: AnyByteStreamConnectable): + """ + :param connectable: the bytestream endpoint to wrap + + """ + self.connectable = connectable + + @override + async def connect(self) -> TextStream: + stream = await self.connectable.connect() + return TextStream(stream) diff --git a/ocr/.venv/Lib/site-packages/anyio/streams/tls.py b/ocr/.venv/Lib/site-packages/anyio/streams/tls.py new file mode 100644 index 00000000..17fa200e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/streams/tls.py @@ -0,0 +1,417 @@ +from __future__ import annotations + +import logging +import re +import ssl +import sys +from collections.abc import Callable, Mapping +from dataclasses import dataclass +from functools import wraps +from ssl import SSLContext +from typing import Any, TypeVar + +from .. import ( + BrokenResourceError, + EndOfStream, + aclose_forcefully, + get_cancelled_exc_class, + to_thread, +) +from .._core._typedattr import TypedAttributeSet, typed_attribute +from ..abc import ( + AnyByteStream, + AnyByteStreamConnectable, + ByteStream, + ByteStreamConnectable, + Listener, + TaskGroup, +) + +if sys.version_info >= (3, 10): + from typing import TypeAlias +else: + from typing_extensions import TypeAlias + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +if sys.version_info >= (3, 12): + from typing import override +else: + from typing_extensions import override + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") +_PCTRTT: TypeAlias = tuple[tuple[str, str], ...] +_PCTRTTT: TypeAlias = tuple[_PCTRTT, ...] + + +class TLSAttribute(TypedAttributeSet): + """Contains Transport Layer Security related attributes.""" + + #: the selected ALPN protocol + alpn_protocol: str | None = typed_attribute() + #: the channel binding for type ``tls-unique`` + channel_binding_tls_unique: bytes = typed_attribute() + #: the selected cipher + cipher: tuple[str, str, int] = typed_attribute() + #: the peer certificate in dictionary form (see :meth:`ssl.SSLSocket.getpeercert` + # for more information) + peer_certificate: None | (dict[str, str | _PCTRTTT | _PCTRTT]) = typed_attribute() + #: the peer certificate in binary form + peer_certificate_binary: bytes | None = typed_attribute() + #: ``True`` if this is the server side of the connection + server_side: bool = typed_attribute() + #: ciphers shared by the client during the TLS handshake (``None`` if this is the + #: client side) + shared_ciphers: list[tuple[str, str, int]] | None = typed_attribute() + #: the :class:`~ssl.SSLObject` used for encryption + ssl_object: ssl.SSLObject = typed_attribute() + #: ``True`` if this stream does (and expects) a closing TLS handshake when the + #: stream is being closed + standard_compatible: bool = typed_attribute() + #: the TLS protocol version (e.g. ``TLSv1.2``) + tls_version: str = typed_attribute() + + +@dataclass(eq=False) +class TLSStream(ByteStream): + """ + A stream wrapper that encrypts all sent data and decrypts received data. + + This class has no public initializer; use :meth:`wrap` instead. + All extra attributes from :class:`~TLSAttribute` are supported. + + :var AnyByteStream transport_stream: the wrapped stream + + """ + + transport_stream: AnyByteStream + standard_compatible: bool + _ssl_object: ssl.SSLObject + _read_bio: ssl.MemoryBIO + _write_bio: ssl.MemoryBIO + + @classmethod + async def wrap( + cls, + transport_stream: AnyByteStream, + *, + server_side: bool | None = None, + hostname: str | None = None, + ssl_context: ssl.SSLContext | None = None, + standard_compatible: bool = True, + ) -> TLSStream: + """ + Wrap an existing stream with Transport Layer Security. + + This performs a TLS handshake with the peer. + + :param transport_stream: a bytes-transporting stream to wrap + :param server_side: ``True`` if this is the server side of the connection, + ``False`` if this is the client side (if omitted, will be set to ``False`` + if ``hostname`` has been provided, ``False`` otherwise). Used only to create + a default context when an explicit context has not been provided. + :param hostname: host name of the peer (if host name checking is desired) + :param ssl_context: the SSLContext object to use (if not provided, a secure + default will be created) + :param standard_compatible: if ``False``, skip the closing handshake when + closing the connection, and don't raise an exception if the peer does the + same + :raises ~ssl.SSLError: if the TLS handshake fails + + """ + if server_side is None: + server_side = not hostname + + if not ssl_context: + purpose = ( + ssl.Purpose.CLIENT_AUTH if server_side else ssl.Purpose.SERVER_AUTH + ) + ssl_context = ssl.create_default_context(purpose) + + # Re-enable detection of unexpected EOFs if it was disabled by Python + if hasattr(ssl, "OP_IGNORE_UNEXPECTED_EOF"): + ssl_context.options &= ~ssl.OP_IGNORE_UNEXPECTED_EOF + + bio_in = ssl.MemoryBIO() + bio_out = ssl.MemoryBIO() + + # External SSLContext implementations may do blocking I/O in wrap_bio(), + # but the standard library implementation won't + if type(ssl_context) is ssl.SSLContext: + ssl_object = ssl_context.wrap_bio( + bio_in, bio_out, server_side=server_side, server_hostname=hostname + ) + else: + ssl_object = await to_thread.run_sync( + ssl_context.wrap_bio, + bio_in, + bio_out, + server_side, + hostname, + None, + ) + + wrapper = cls( + transport_stream=transport_stream, + standard_compatible=standard_compatible, + _ssl_object=ssl_object, + _read_bio=bio_in, + _write_bio=bio_out, + ) + await wrapper._call_sslobject_method(ssl_object.do_handshake) + return wrapper + + async def _call_sslobject_method( + self, func: Callable[[Unpack[PosArgsT]], T_Retval], *args: Unpack[PosArgsT] + ) -> T_Retval: + while True: + try: + result = func(*args) + except ssl.SSLWantReadError: + try: + # Flush any pending writes first + if self._write_bio.pending: + await self.transport_stream.send(self._write_bio.read()) + + data = await self.transport_stream.receive() + except EndOfStream: + self._read_bio.write_eof() + except OSError as exc: + self._read_bio.write_eof() + self._write_bio.write_eof() + raise BrokenResourceError from exc + else: + self._read_bio.write(data) + except ssl.SSLWantWriteError: + await self.transport_stream.send(self._write_bio.read()) + except ssl.SSLSyscallError as exc: + self._read_bio.write_eof() + self._write_bio.write_eof() + raise BrokenResourceError from exc + except ssl.SSLError as exc: + self._read_bio.write_eof() + self._write_bio.write_eof() + if isinstance(exc, ssl.SSLEOFError) or ( + exc.strerror and "UNEXPECTED_EOF_WHILE_READING" in exc.strerror + ): + if self.standard_compatible: + raise BrokenResourceError from exc + else: + raise EndOfStream from None + + raise + else: + # Flush any pending writes first + if self._write_bio.pending: + await self.transport_stream.send(self._write_bio.read()) + + return result + + async def unwrap(self) -> tuple[AnyByteStream, bytes]: + """ + Does the TLS closing handshake. + + :return: a tuple of (wrapped byte stream, bytes left in the read buffer) + + """ + await self._call_sslobject_method(self._ssl_object.unwrap) + self._read_bio.write_eof() + self._write_bio.write_eof() + return self.transport_stream, self._read_bio.read() + + async def aclose(self) -> None: + if self.standard_compatible: + try: + await self.unwrap() + except BaseException: + await aclose_forcefully(self.transport_stream) + raise + + await self.transport_stream.aclose() + + async def receive(self, max_bytes: int = 65536) -> bytes: + data = await self._call_sslobject_method(self._ssl_object.read, max_bytes) + if not data: + raise EndOfStream + + return data + + async def send(self, item: bytes) -> None: + await self._call_sslobject_method(self._ssl_object.write, item) + + async def send_eof(self) -> None: + tls_version = self.extra(TLSAttribute.tls_version) + match = re.match(r"TLSv(\d+)(?:\.(\d+))?", tls_version) + if match: + major, minor = int(match.group(1)), int(match.group(2) or 0) + if (major, minor) < (1, 3): + raise NotImplementedError( + f"send_eof() requires at least TLSv1.3; current " + f"session uses {tls_version}" + ) + + raise NotImplementedError( + "send_eof() has not yet been implemented for TLS streams" + ) + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return { + **self.transport_stream.extra_attributes, + TLSAttribute.alpn_protocol: self._ssl_object.selected_alpn_protocol, + TLSAttribute.channel_binding_tls_unique: ( + self._ssl_object.get_channel_binding + ), + TLSAttribute.cipher: self._ssl_object.cipher, + TLSAttribute.peer_certificate: lambda: self._ssl_object.getpeercert(False), + TLSAttribute.peer_certificate_binary: lambda: self._ssl_object.getpeercert( + True + ), + TLSAttribute.server_side: lambda: self._ssl_object.server_side, + TLSAttribute.shared_ciphers: lambda: self._ssl_object.shared_ciphers() + if self._ssl_object.server_side + else None, + TLSAttribute.standard_compatible: lambda: self.standard_compatible, + TLSAttribute.ssl_object: lambda: self._ssl_object, + TLSAttribute.tls_version: self._ssl_object.version, + } + + +@dataclass(eq=False) +class TLSListener(Listener[TLSStream]): + """ + A convenience listener that wraps another listener and auto-negotiates a TLS session + on every accepted connection. + + If the TLS handshake times out or raises an exception, + :meth:`handle_handshake_error` is called to do whatever post-mortem processing is + deemed necessary. + + Supports only the :attr:`~TLSAttribute.standard_compatible` extra attribute. + + :param Listener listener: the listener to wrap + :param ssl_context: the SSL context object + :param standard_compatible: a flag passed through to :meth:`TLSStream.wrap` + :param handshake_timeout: time limit for the TLS handshake + (passed to :func:`~anyio.fail_after`) + """ + + listener: Listener[Any] + ssl_context: ssl.SSLContext + standard_compatible: bool = True + handshake_timeout: float = 30 + + @staticmethod + async def handle_handshake_error(exc: BaseException, stream: AnyByteStream) -> None: + """ + Handle an exception raised during the TLS handshake. + + This method does 3 things: + + #. Forcefully closes the original stream + #. Logs the exception (unless it was a cancellation exception) using the + ``anyio.streams.tls`` logger + #. Reraises the exception if it was a base exception or a cancellation exception + + :param exc: the exception + :param stream: the original stream + + """ + await aclose_forcefully(stream) + + # Log all except cancellation exceptions + if not isinstance(exc, get_cancelled_exc_class()): + # CPython (as of 3.11.5) returns incorrect `sys.exc_info()` here when using + # any asyncio implementation, so we explicitly pass the exception to log + # (https://github.com/python/cpython/issues/108668). Trio does not have this + # issue because it works around the CPython bug. + logging.getLogger(__name__).exception( + "Error during TLS handshake", exc_info=exc + ) + + # Only reraise base exceptions and cancellation exceptions + if not isinstance(exc, Exception) or isinstance(exc, get_cancelled_exc_class()): + raise + + async def serve( + self, + handler: Callable[[TLSStream], Any], + task_group: TaskGroup | None = None, + ) -> None: + @wraps(handler) + async def handler_wrapper(stream: AnyByteStream) -> None: + from .. import fail_after + + try: + with fail_after(self.handshake_timeout): + wrapped_stream = await TLSStream.wrap( + stream, + ssl_context=self.ssl_context, + standard_compatible=self.standard_compatible, + ) + except BaseException as exc: + await self.handle_handshake_error(exc, stream) + else: + await handler(wrapped_stream) + + await self.listener.serve(handler_wrapper, task_group) + + async def aclose(self) -> None: + await self.listener.aclose() + + @property + def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: + return { + TLSAttribute.standard_compatible: lambda: self.standard_compatible, + } + + +class TLSConnectable(ByteStreamConnectable): + """ + Wraps another connectable and does TLS negotiation after a successful connection. + + :param connectable: the connectable to wrap + :param hostname: host name of the server (if host name checking is desired) + :param ssl_context: the SSLContext object to use (if not provided, a secure default + will be created) + :param standard_compatible: if ``False``, skip the closing handshake when closing + the connection, and don't raise an exception if the server does the same + """ + + def __init__( + self, + connectable: AnyByteStreamConnectable, + *, + hostname: str | None = None, + ssl_context: ssl.SSLContext | None = None, + standard_compatible: bool = True, + ) -> None: + self.connectable = connectable + self.ssl_context: SSLContext = ssl_context or ssl.create_default_context( + ssl.Purpose.SERVER_AUTH + ) + if not isinstance(self.ssl_context, ssl.SSLContext): + raise TypeError( + "ssl_context must be an instance of ssl.SSLContext, not " + f"{type(self.ssl_context).__name__}" + ) + self.hostname = hostname + self.standard_compatible = standard_compatible + + @override + async def connect(self) -> TLSStream: + stream = await self.connectable.connect() + try: + return await TLSStream.wrap( + stream, + hostname=self.hostname, + ssl_context=self.ssl_context, + standard_compatible=self.standard_compatible, + ) + except BaseException: + await aclose_forcefully(stream) + raise diff --git a/ocr/.venv/Lib/site-packages/anyio/to_interpreter.py b/ocr/.venv/Lib/site-packages/anyio/to_interpreter.py new file mode 100644 index 00000000..bafd221f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/to_interpreter.py @@ -0,0 +1,239 @@ +from __future__ import annotations + +import atexit +import os +import sys +from collections import deque +from collections.abc import Callable +from typing import Any, Final, TypeVar + +from . import current_time, to_thread +from ._core._exceptions import BrokenWorkerInterpreter +from ._core._synchronization import CapacityLimiter +from .lowlevel import RunVar + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +if sys.version_info >= (3, 14): + from concurrent.interpreters import ExecutionFailed, create + + def _interp_call(func: Callable[..., Any], args: tuple[Any, ...]): + try: + retval = func(*args) + except BaseException as exc: + return exc, True + else: + return retval, False + + class Worker: + last_used: float = 0 + + def __init__(self) -> None: + self._interpreter = create() + + def destroy(self) -> None: + self._interpreter.close() + + def call( + self, + func: Callable[..., T_Retval], + args: tuple[Any, ...], + ) -> T_Retval: + try: + res, is_exception = self._interpreter.call(_interp_call, func, args) + except ExecutionFailed as exc: + raise BrokenWorkerInterpreter(exc.excinfo) from exc + + if is_exception: + raise res + + return res +elif sys.version_info >= (3, 13): + import _interpqueues + import _interpreters + + UNBOUND: Final = 2 # I have no clue how this works, but it was used in the stdlib + FMT_UNPICKLED: Final = 0 + FMT_PICKLED: Final = 1 + QUEUE_PICKLE_ARGS: Final = (FMT_PICKLED, UNBOUND) + QUEUE_UNPICKLE_ARGS: Final = (FMT_UNPICKLED, UNBOUND) + + _run_func = compile( + """ +import _interpqueues +from _interpreters import NotShareableError +from pickle import loads, dumps, HIGHEST_PROTOCOL + +QUEUE_PICKLE_ARGS = (1, 2) +QUEUE_UNPICKLE_ARGS = (0, 2) + +item = _interpqueues.get(queue_id)[0] +try: + func, args = loads(item) + retval = func(*args) +except BaseException as exc: + is_exception = True + retval = exc +else: + is_exception = False + +try: + _interpqueues.put(queue_id, (retval, is_exception), *QUEUE_UNPICKLE_ARGS) +except NotShareableError: + retval = dumps(retval, HIGHEST_PROTOCOL) + _interpqueues.put(queue_id, (retval, is_exception), *QUEUE_PICKLE_ARGS) + """, + "", + "exec", + ) + + class Worker: + last_used: float = 0 + + def __init__(self) -> None: + self._interpreter_id = _interpreters.create() + self._queue_id = _interpqueues.create(1, *QUEUE_UNPICKLE_ARGS) + _interpreters.set___main___attrs( + self._interpreter_id, {"queue_id": self._queue_id} + ) + + def destroy(self) -> None: + _interpqueues.destroy(self._queue_id) + _interpreters.destroy(self._interpreter_id) + + def call( + self, + func: Callable[..., T_Retval], + args: tuple[Any, ...], + ) -> T_Retval: + import pickle + + item = pickle.dumps((func, args), pickle.HIGHEST_PROTOCOL) + _interpqueues.put(self._queue_id, item, *QUEUE_PICKLE_ARGS) + exc_info = _interpreters.exec(self._interpreter_id, _run_func) + if exc_info: + raise BrokenWorkerInterpreter(exc_info) + + res = _interpqueues.get(self._queue_id) + (res, is_exception), fmt = res[:2] + if fmt == FMT_PICKLED: + res = pickle.loads(res) + + if is_exception: + raise res + + return res +else: + + class Worker: + last_used: float = 0 + + def __init__(self) -> None: + raise RuntimeError("subinterpreters require at least Python 3.13") + + def call( + self, + func: Callable[..., T_Retval], + args: tuple[Any, ...], + ) -> T_Retval: + raise NotImplementedError + + def destroy(self) -> None: + pass + + +DEFAULT_CPU_COUNT: Final = 8 # this is just an arbitrarily selected value +MAX_WORKER_IDLE_TIME = ( + 30 # seconds a subinterpreter can be idle before becoming eligible for pruning +) + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") + +_idle_workers = RunVar[deque[Worker]]("_available_workers") +_default_interpreter_limiter = RunVar[CapacityLimiter]("_default_interpreter_limiter") + + +def _stop_workers(workers: deque[Worker]) -> None: + for worker in workers: + worker.destroy() + + workers.clear() + + +async def run_sync( + func: Callable[[Unpack[PosArgsT]], T_Retval], + *args: Unpack[PosArgsT], + limiter: CapacityLimiter | None = None, +) -> T_Retval: + """ + Call the given function with the given arguments in a subinterpreter. + + .. warning:: On Python 3.13, the :mod:`concurrent.interpreters` module was not yet + available, so the code path for that Python version relies on an undocumented, + private API. As such, it is recommended to not rely on this function for anything + mission-critical on Python 3.13. + + :param func: a callable + :param args: the positional arguments for the callable + :param limiter: capacity limiter to use to limit the total number of subinterpreters + running (if omitted, the default limiter is used) + :return: the result of the call + :raises BrokenWorkerInterpreter: if there's an internal error in a subinterpreter + + """ + if limiter is None: + limiter = current_default_interpreter_limiter() + + try: + idle_workers = _idle_workers.get() + except LookupError: + idle_workers = deque() + _idle_workers.set(idle_workers) + atexit.register(_stop_workers, idle_workers) + + async with limiter: + try: + worker = idle_workers.pop() + except IndexError: + worker = Worker() + + try: + return await to_thread.run_sync( + worker.call, + func, + args, + limiter=limiter, + ) + finally: + # Prune workers that have been idle for too long + now = current_time() + while idle_workers: + if now - idle_workers[0].last_used <= MAX_WORKER_IDLE_TIME: + break + + await to_thread.run_sync(idle_workers.popleft().destroy, limiter=limiter) + + worker.last_used = current_time() + idle_workers.append(worker) + + +def current_default_interpreter_limiter() -> CapacityLimiter: + """ + Return the capacity limiter used by default to limit the number of concurrently + running subinterpreters. + + Defaults to the number of CPU cores. + + :return: a capacity limiter object + + """ + try: + return _default_interpreter_limiter.get() + except LookupError: + limiter = CapacityLimiter(os.cpu_count() or DEFAULT_CPU_COUNT) + _default_interpreter_limiter.set(limiter) + return limiter diff --git a/ocr/.venv/Lib/site-packages/anyio/to_process.py b/ocr/.venv/Lib/site-packages/anyio/to_process.py new file mode 100644 index 00000000..495de2ae --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/to_process.py @@ -0,0 +1,258 @@ +from __future__ import annotations + +import os +import pickle +import subprocess +import sys +from collections import deque +from collections.abc import Callable +from importlib.util import module_from_spec, spec_from_file_location +from typing import TypeVar, cast + +from ._core._eventloop import current_time, get_async_backend, get_cancelled_exc_class +from ._core._exceptions import BrokenWorkerProcess +from ._core._subprocesses import open_process +from ._core._synchronization import CapacityLimiter +from ._core._tasks import CancelScope, fail_after +from .abc import ByteReceiveStream, ByteSendStream, Process +from .lowlevel import RunVar, checkpoint_if_cancelled +from .streams.buffered import BufferedByteReceiveStream + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +WORKER_MAX_IDLE_TIME = 300 # 5 minutes + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") + +_process_pool_workers: RunVar[set[Process]] = RunVar("_process_pool_workers") +_process_pool_idle_workers: RunVar[deque[tuple[Process, float]]] = RunVar( + "_process_pool_idle_workers" +) +_default_process_limiter: RunVar[CapacityLimiter] = RunVar("_default_process_limiter") + + +async def run_sync( # type: ignore[return] + func: Callable[[Unpack[PosArgsT]], T_Retval], + *args: Unpack[PosArgsT], + cancellable: bool = False, + limiter: CapacityLimiter | None = None, +) -> T_Retval: + """ + Call the given function with the given arguments in a worker process. + + If the ``cancellable`` option is enabled and the task waiting for its completion is + cancelled, the worker process running it will be abruptly terminated using SIGKILL + (or ``terminateProcess()`` on Windows). + + :param func: a callable + :param args: positional arguments for the callable + :param cancellable: ``True`` to allow cancellation of the operation while it's + running + :param limiter: capacity limiter to use to limit the total amount of processes + running (if omitted, the default limiter is used) + :return: an awaitable that yields the return value of the function. + + """ + + async def send_raw_command(pickled_cmd: bytes) -> object: + try: + await stdin.send(pickled_cmd) + response = await buffered.receive_until(b"\n", 50) + status, length = response.split(b" ") + if status not in (b"RETURN", b"EXCEPTION"): + raise RuntimeError( + f"Worker process returned unexpected response: {response!r}" + ) + + pickled_response = await buffered.receive_exactly(int(length)) + except BaseException as exc: + workers.discard(process) + try: + process.kill() + with CancelScope(shield=True): + await process.aclose() + except ProcessLookupError: + pass + + if isinstance(exc, get_cancelled_exc_class()): + raise + else: + raise BrokenWorkerProcess from exc + + retval = pickle.loads(pickled_response) + if status == b"EXCEPTION": + assert isinstance(retval, BaseException) + raise retval + else: + return retval + + # First pickle the request before trying to reserve a worker process + await checkpoint_if_cancelled() + request = pickle.dumps(("run", func, args), protocol=pickle.HIGHEST_PROTOCOL) + + # If this is the first run in this event loop thread, set up the necessary variables + try: + workers = _process_pool_workers.get() + idle_workers = _process_pool_idle_workers.get() + except LookupError: + workers = set() + idle_workers = deque() + _process_pool_workers.set(workers) + _process_pool_idle_workers.set(idle_workers) + get_async_backend().setup_process_pool_exit_at_shutdown(workers) + + async with limiter or current_default_process_limiter(): + # Pop processes from the pool (starting from the most recently used) until we + # find one that hasn't exited yet + process: Process + while idle_workers: + process, idle_since = idle_workers.pop() + if process.returncode is None: + stdin = cast(ByteSendStream, process.stdin) + buffered = BufferedByteReceiveStream( + cast(ByteReceiveStream, process.stdout) + ) + + # Prune any other workers that have been idle for WORKER_MAX_IDLE_TIME + # seconds or longer + now = current_time() + killed_processes: list[Process] = [] + while idle_workers: + if now - idle_workers[0][1] < WORKER_MAX_IDLE_TIME: + break + + process_to_kill, idle_since = idle_workers.popleft() + process_to_kill.kill() + workers.remove(process_to_kill) + killed_processes.append(process_to_kill) + + with CancelScope(shield=True): + for killed_process in killed_processes: + await killed_process.aclose() + + break + + workers.remove(process) + else: + command = [sys.executable, "-u", "-m", __name__] + process = await open_process( + command, stdin=subprocess.PIPE, stdout=subprocess.PIPE + ) + try: + stdin = cast(ByteSendStream, process.stdin) + buffered = BufferedByteReceiveStream( + cast(ByteReceiveStream, process.stdout) + ) + with fail_after(20): + message = await buffered.receive(6) + + if message != b"READY\n": + raise BrokenWorkerProcess( + f"Worker process returned unexpected response: {message!r}" + ) + + main_module_path = getattr(sys.modules["__main__"], "__file__", None) + pickled = pickle.dumps( + ("init", sys.path, main_module_path), + protocol=pickle.HIGHEST_PROTOCOL, + ) + await send_raw_command(pickled) + except (BrokenWorkerProcess, get_cancelled_exc_class()): + raise + except BaseException as exc: + process.kill() + raise BrokenWorkerProcess( + "Error during worker process initialization" + ) from exc + + workers.add(process) + + with CancelScope(shield=not cancellable): + try: + return cast(T_Retval, await send_raw_command(request)) + finally: + if process in workers: + idle_workers.append((process, current_time())) + + +def current_default_process_limiter() -> CapacityLimiter: + """ + Return the capacity limiter that is used by default to limit the number of worker + processes. + + :return: a capacity limiter object + + """ + try: + return _default_process_limiter.get() + except LookupError: + limiter = CapacityLimiter(os.cpu_count() or 2) + _default_process_limiter.set(limiter) + return limiter + + +def process_worker() -> None: + # Redirect standard streams to os.devnull so that user code won't interfere with the + # parent-worker communication + stdin = sys.stdin + stdout = sys.stdout + sys.stdin = open(os.devnull) + sys.stdout = open(os.devnull, "w") + + stdout.buffer.write(b"READY\n") + while True: + retval = exception = None + try: + command, *args = pickle.load(stdin.buffer) + except EOFError: + return + except BaseException as exc: + exception = exc + else: + if command == "run": + func, args = args + try: + retval = func(*args) + except BaseException as exc: + exception = exc + elif command == "init": + main_module_path: str | None + sys.path, main_module_path = args + del sys.modules["__main__"] + if main_module_path and os.path.isfile(main_module_path): + # Load the parent's main module but as __mp_main__ instead of + # __main__ (like multiprocessing does) to avoid infinite recursion + try: + spec = spec_from_file_location("__mp_main__", main_module_path) + if spec and spec.loader: + main = module_from_spec(spec) + spec.loader.exec_module(main) + sys.modules["__main__"] = main + except BaseException as exc: + exception = exc + try: + if exception is not None: + status = b"EXCEPTION" + pickled = pickle.dumps(exception, pickle.HIGHEST_PROTOCOL) + else: + status = b"RETURN" + pickled = pickle.dumps(retval, pickle.HIGHEST_PROTOCOL) + except BaseException as exc: + exception = exc + status = b"EXCEPTION" + pickled = pickle.dumps(exc, pickle.HIGHEST_PROTOCOL) + + stdout.buffer.write(b"%s %d\n" % (status, len(pickled))) + stdout.buffer.write(pickled) + + # Respect SIGTERM + if isinstance(exception, SystemExit): + raise exception + + +if __name__ == "__main__": + process_worker() diff --git a/ocr/.venv/Lib/site-packages/anyio/to_thread.py b/ocr/.venv/Lib/site-packages/anyio/to_thread.py new file mode 100644 index 00000000..5070516e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/anyio/to_thread.py @@ -0,0 +1,69 @@ +from __future__ import annotations + +import sys +from collections.abc import Callable +from typing import TypeVar +from warnings import warn + +from ._core._eventloop import get_async_backend +from .abc import CapacityLimiter + +if sys.version_info >= (3, 11): + from typing import TypeVarTuple, Unpack +else: + from typing_extensions import TypeVarTuple, Unpack + +T_Retval = TypeVar("T_Retval") +PosArgsT = TypeVarTuple("PosArgsT") + + +async def run_sync( + func: Callable[[Unpack[PosArgsT]], T_Retval], + *args: Unpack[PosArgsT], + abandon_on_cancel: bool = False, + cancellable: bool | None = None, + limiter: CapacityLimiter | None = None, +) -> T_Retval: + """ + Call the given function with the given arguments in a worker thread. + + If the ``cancellable`` option is enabled and the task waiting for its completion is + cancelled, the thread will still run its course but its return value (or any raised + exception) will be ignored. + + :param func: a callable + :param args: positional arguments for the callable + :param abandon_on_cancel: ``True`` to abandon the thread (leaving it to run + unchecked on own) if the host task is cancelled, ``False`` to ignore + cancellations in the host task until the operation has completed in the worker + thread + :param cancellable: deprecated alias of ``abandon_on_cancel``; will override + ``abandon_on_cancel`` if both parameters are passed + :param limiter: capacity limiter to use to limit the total amount of threads running + (if omitted, the default limiter is used) + :return: an awaitable that yields the return value of the function. + + """ + if cancellable is not None: + abandon_on_cancel = cancellable + warn( + "The `cancellable=` keyword argument to `anyio.to_thread.run_sync` is " + "deprecated since AnyIO 4.1.0; use `abandon_on_cancel=` instead", + DeprecationWarning, + stacklevel=2, + ) + + return await get_async_backend().run_sync_in_worker_thread( + func, args, abandon_on_cancel=abandon_on_cancel, limiter=limiter + ) + + +def current_default_thread_limiter() -> CapacityLimiter: + """ + Return the capacity limiter that is used by default to limit the number of + concurrent threads. + + :return: a capacity limiter object + + """ + return get_async_backend().current_default_thread_limiter() diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/METADATA b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/METADATA new file mode 100644 index 00000000..ce6be012 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/METADATA @@ -0,0 +1,154 @@ +Metadata-Version: 2.4 +Name: cachetools +Version: 6.2.1 +Summary: Extensible memoizing collections and decorators +Home-page: https://github.com/tkem/cachetools/ +Author: Thomas Kemmer +Author-email: tkemmer@computer.org +License: MIT +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Other Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.9 +License-File: LICENSE +Dynamic: license-file + +cachetools +======================================================================== + +.. image:: https://img.shields.io/pypi/v/cachetools + :target: https://pypi.org/project/cachetools/ + :alt: Latest PyPI version + +.. image:: https://img.shields.io/github/actions/workflow/status/tkem/cachetools/ci.yml + :target: https://github.com/tkem/cachetools/actions/workflows/ci.yml + :alt: CI build status + +.. image:: https://img.shields.io/readthedocs/cachetools + :target: https://cachetools.readthedocs.io/ + :alt: Documentation build status + +.. image:: https://img.shields.io/codecov/c/github/tkem/cachetools/master.svg + :target: https://codecov.io/gh/tkem/cachetools + :alt: Test coverage + +.. image:: https://img.shields.io/librariesio/sourcerank/pypi/cachetools + :target: https://libraries.io/pypi/cachetools + :alt: Libraries.io SourceRank + +.. image:: https://img.shields.io/github/license/tkem/cachetools + :target: https://raw.github.com/tkem/cachetools/master/LICENSE + :alt: License + +.. image:: https://img.shields.io/badge/code%20style-black-000000.svg + :target: https://github.com/psf/black + :alt: Code style: black + + +This module provides various memoizing collections and decorators, +including variants of the Python Standard Library's `@lru_cache`_ +function decorator. + +.. code-block:: python + + from cachetools import cached, LRUCache, TTLCache + + # speed up calculating Fibonacci numbers with dynamic programming + @cached(cache={}) + def fib(n): + return n if n < 2 else fib(n - 1) + fib(n - 2) + + # cache least recently used Python Enhancement Proposals + @cached(cache=LRUCache(maxsize=32)) + def get_pep(num): + url = 'http://www.python.org/dev/peps/pep-%04d/' % num + with urllib.request.urlopen(url) as s: + return s.read() + + # cache weather data for no longer than ten minutes + @cached(cache=TTLCache(maxsize=1024, ttl=600)) + def get_weather(place): + return owm.weather_at_place(place).get_weather() + +For the purpose of this module, a *cache* is a mutable_ mapping_ of a +fixed maximum size. When the cache is full, i.e. by adding another +item the cache would exceed its maximum size, the cache must choose +which item(s) to discard based on a suitable `cache algorithm`_. + +This module provides multiple cache classes based on different cache +algorithms, as well as decorators for easily memoizing function and +method calls. + + +Installation +------------------------------------------------------------------------ + +cachetools is available from PyPI_ and can be installed by running:: + + pip install cachetools + +Typing stubs for this package are provided by typeshed_ and can be +installed by running:: + + pip install types-cachetools + + +Project Resources +------------------------------------------------------------------------ + +- `Documentation`_ +- `Issue tracker`_ +- `Source code`_ +- `Change log`_ + + +Related Projects +------------------------------------------------------------------------ + +- asyncache_: Helpers to use cachetools_ with asyncio. +- cacheing_: Pure Python Cacheing Library. +- CacheToolsUtils_: Stackable cache classes for sharing, encryption, + statistics *and more* on top of cachetools_, redis_ and memcached_. +- shelved-cache_: Persistent cache implementation for Python + cachetools_. + + +License +------------------------------------------------------------------------ + +Copyright (c) 2014-2025 Thomas Kemmer. + +Licensed under the `MIT License`_. + + +.. _@lru_cache: https://docs.python.org/3/library/functools.html#functools.lru_cache +.. _mutable: https://docs.python.org/dev/glossary.html#term-mutable +.. _mapping: https://docs.python.org/dev/glossary.html#term-mapping +.. _cache algorithm: https://en.wikipedia.org/wiki/Cache_algorithms + +.. _PyPI: https://pypi.org/project/cachetools/ +.. _typeshed: https://github.com/python/typeshed/ +.. _Documentation: https://cachetools.readthedocs.io/ +.. _Issue tracker: https://github.com/tkem/cachetools/issues/ +.. _Source code: https://github.com/tkem/cachetools/ +.. _Change log: https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst +.. _MIT License: https://raw.github.com/tkem/cachetools/master/LICENSE + +.. _asyncache: https://pypi.org/project/asyncache/ +.. _cacheing: https://pypi.org/project/cacheing/ +.. _CacheToolsUtils: https://pypi.org/project/CacheToolsUtils/ +.. _shelved-cache: https://pypi.org/project/shelved-cache/ +.. _cachetools: https://pypi.org/project/cachetools/ +.. _redis: https://redis.io/ +.. _memcached: https://memcached.org/ diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/RECORD b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/RECORD new file mode 100644 index 00000000..0479a03d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/RECORD @@ -0,0 +1,16 @@ +cachetools-6.2.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +cachetools-6.2.1.dist-info/METADATA,sha256=51nmTrD9ZQiqCEXj4EnCU6Ygt9bvnMJxCMYM_oC2InY,5494 +cachetools-6.2.1.dist-info/RECORD,, +cachetools-6.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 +cachetools-6.2.1.dist-info/licenses/LICENSE,sha256=I8Tv96HAJ6l3oLecRJfhdYLDNMXxfvasjKC1LR59hBc,1085 +cachetools-6.2.1.dist-info/top_level.txt,sha256=ai2FH78TGwoBcCgVfoqbzk5IQCtnDukdSs4zKuVPvDs,11 +cachetools/__init__.py,sha256=bZVC0WGBzkghl7eNGqM9uLGQrV56FtBWoX0jlEYp5kM,20974 +cachetools/__pycache__/__init__.cpython-310.pyc,, +cachetools/__pycache__/_cached.cpython-310.pyc,, +cachetools/__pycache__/_cachedmethod.cpython-310.pyc,, +cachetools/__pycache__/func.cpython-310.pyc,, +cachetools/__pycache__/keys.cpython-310.pyc,, +cachetools/_cached.py,sha256=-ipQTCxwX-mNM_cqPP4rGDOoPX1RpMzMWawhapmFe7M,6350 +cachetools/_cachedmethod.py,sha256=Rk2M14yCNUNkZhOivvYXGQeniOu93xT8f37ZOzKlx9k,3413 +cachetools/func.py,sha256=cB2gBDCRDoZMeikezuGvaDxRhZ4P44UmCa8r-3UDhTE,3117 +cachetools/keys.py,sha256=AOgfoi-oioBOnEEk115_9qs0HKISrYnbcV4F0hyZ1yk,1777 diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/WHEEL new file mode 100644 index 00000000..e7fa31b6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (80.9.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/licenses/LICENSE new file mode 100644 index 00000000..762a2f0b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/licenses/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014-2025 Thomas Kemmer + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/top_level.txt b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/top_level.txt new file mode 100644 index 00000000..50d14084 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools-6.2.1.dist-info/top_level.txt @@ -0,0 +1 @@ +cachetools diff --git a/ocr/.venv/Lib/site-packages/cachetools/__init__.py b/ocr/.venv/Lib/site-packages/cachetools/__init__.py new file mode 100644 index 00000000..adc746db --- /dev/null +++ b/ocr/.venv/Lib/site-packages/cachetools/__init__.py @@ -0,0 +1,712 @@ +"""Extensible memoizing collections and decorators.""" + +__all__ = ( + "Cache", + "FIFOCache", + "LFUCache", + "LRUCache", + "RRCache", + "TLRUCache", + "TTLCache", + "cached", + "cachedmethod", +) + +__version__ = "6.2.1" + +import collections +import collections.abc +import functools +import heapq +import random +import time + +from . import keys + + +class _DefaultSize: + __slots__ = () + + def __getitem__(self, _): + return 1 + + def __setitem__(self, _, value): + assert value == 1 + + def pop(self, _): + return 1 + + +class Cache(collections.abc.MutableMapping): + """Mutable mapping to serve as a simple cache or cache base class.""" + + __marker = object() + + __size = _DefaultSize() + + def __init__(self, maxsize, getsizeof=None): + if getsizeof: + self.getsizeof = getsizeof + if self.getsizeof is not Cache.getsizeof: + self.__size = dict() + self.__data = dict() + self.__currsize = 0 + self.__maxsize = maxsize + + def __repr__(self): + return "%s(%s, maxsize=%r, currsize=%r)" % ( + self.__class__.__name__, + repr(self.__data), + self.__maxsize, + self.__currsize, + ) + + def __getitem__(self, key): + try: + return self.__data[key] + except KeyError: + return self.__missing__(key) + + def __setitem__(self, key, value): + maxsize = self.__maxsize + size = self.getsizeof(value) + if size > maxsize: + raise ValueError("value too large") + if key not in self.__data or self.__size[key] < size: + while self.__currsize + size > maxsize: + self.popitem() + if key in self.__data: + diffsize = size - self.__size[key] + else: + diffsize = size + self.__data[key] = value + self.__size[key] = size + self.__currsize += diffsize + + def __delitem__(self, key): + size = self.__size.pop(key) + del self.__data[key] + self.__currsize -= size + + def __contains__(self, key): + return key in self.__data + + def __missing__(self, key): + raise KeyError(key) + + def __iter__(self): + return iter(self.__data) + + def __len__(self): + return len(self.__data) + + def get(self, key, default=None): + if key in self: + return self[key] + else: + return default + + def pop(self, key, default=__marker): + if key in self: + value = self[key] + del self[key] + elif default is self.__marker: + raise KeyError(key) + else: + value = default + return value + + def setdefault(self, key, default=None): + if key in self: + value = self[key] + else: + self[key] = value = default + return value + + @property + def maxsize(self): + """The maximum size of the cache.""" + return self.__maxsize + + @property + def currsize(self): + """The current size of the cache.""" + return self.__currsize + + @staticmethod + def getsizeof(value): + """Return the size of a cache element's value.""" + return 1 + + +class FIFOCache(Cache): + """First In First Out (FIFO) cache implementation.""" + + def __init__(self, maxsize, getsizeof=None): + Cache.__init__(self, maxsize, getsizeof) + self.__order = collections.OrderedDict() + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + cache_setitem(self, key, value) + try: + self.__order.move_to_end(key) + except KeyError: + self.__order[key] = None + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + cache_delitem(self, key) + del self.__order[key] + + def popitem(self): + """Remove and return the `(key, value)` pair first inserted.""" + try: + key = next(iter(self.__order)) + except StopIteration: + raise KeyError("%s is empty" % type(self).__name__) from None + else: + return (key, self.pop(key)) + + +class LFUCache(Cache): + """Least Frequently Used (LFU) cache implementation.""" + + class _Link: + __slots__ = ("count", "keys", "next", "prev") + + def __init__(self, count): + self.count = count + self.keys = set() + + def unlink(self): + next = self.next + prev = self.prev + prev.next = next + next.prev = prev + + def __init__(self, maxsize, getsizeof=None): + Cache.__init__(self, maxsize, getsizeof) + self.__root = root = LFUCache._Link(0) # sentinel + root.prev = root.next = root + self.__links = {} + + def __getitem__(self, key, cache_getitem=Cache.__getitem__): + value = cache_getitem(self, key) + if key in self: # __missing__ may not store item + self.__touch(key) + return value + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + cache_setitem(self, key, value) + if key in self.__links: + return self.__touch(key) + root = self.__root + link = root.next + if link.count != 1: + link = LFUCache._Link(1) + link.next = root.next + root.next = link.next.prev = link + link.prev = root + link.keys.add(key) + self.__links[key] = link + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + cache_delitem(self, key) + link = self.__links.pop(key) + link.keys.remove(key) + if not link.keys: + link.unlink() + + def popitem(self): + """Remove and return the `(key, value)` pair least frequently used.""" + root = self.__root + curr = root.next + if curr is root: + raise KeyError("%s is empty" % type(self).__name__) from None + key = next(iter(curr.keys)) # remove an arbitrary element + return (key, self.pop(key)) + + def __touch(self, key): + """Increment use count""" + link = self.__links[key] + curr = link.next + if curr.count != link.count + 1: + if len(link.keys) == 1: + link.count += 1 + return + curr = LFUCache._Link(link.count + 1) + curr.next = link.next + link.next = curr.next.prev = curr + curr.prev = link + curr.keys.add(key) + link.keys.remove(key) + if not link.keys: + link.unlink() + self.__links[key] = curr + + +class LRUCache(Cache): + """Least Recently Used (LRU) cache implementation.""" + + def __init__(self, maxsize, getsizeof=None): + Cache.__init__(self, maxsize, getsizeof) + self.__order = collections.OrderedDict() + + def __getitem__(self, key, cache_getitem=Cache.__getitem__): + value = cache_getitem(self, key) + if key in self: # __missing__ may not store item + self.__touch(key) + return value + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + cache_setitem(self, key, value) + self.__touch(key) + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + cache_delitem(self, key) + del self.__order[key] + + def popitem(self): + """Remove and return the `(key, value)` pair least recently used.""" + try: + key = next(iter(self.__order)) + except StopIteration: + raise KeyError("%s is empty" % type(self).__name__) from None + else: + return (key, self.pop(key)) + + def __touch(self, key): + """Mark as recently used""" + try: + self.__order.move_to_end(key) + except KeyError: + self.__order[key] = None + + +class RRCache(Cache): + """Random Replacement (RR) cache implementation.""" + + def __init__(self, maxsize, choice=random.choice, getsizeof=None): + Cache.__init__(self, maxsize, getsizeof) + self.__choice = choice + self.__index = {} + self.__keys = [] + + @property + def choice(self): + """The `choice` function used by the cache.""" + return self.__choice + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + cache_setitem(self, key, value) + if key not in self.__index: + self.__index[key] = len(self.__keys) + self.__keys.append(key) + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + cache_delitem(self, key) + index = self.__index.pop(key) + if index != len(self.__keys) - 1: + last = self.__keys[-1] + self.__keys[index] = last + self.__index[last] = index + self.__keys.pop() + + def popitem(self): + """Remove and return a random `(key, value)` pair.""" + try: + key = self.__choice(self.__keys) + except IndexError: + raise KeyError("%s is empty" % type(self).__name__) from None + else: + return (key, self.pop(key)) + + +class _TimedCache(Cache): + """Base class for time aware cache implementations.""" + + class _Timer: + def __init__(self, timer): + self.__timer = timer + self.__nesting = 0 + + def __call__(self): + if self.__nesting == 0: + return self.__timer() + else: + return self.__time + + def __enter__(self): + if self.__nesting == 0: + self.__time = time = self.__timer() + else: + time = self.__time + self.__nesting += 1 + return time + + def __exit__(self, *exc): + self.__nesting -= 1 + + def __reduce__(self): + return _TimedCache._Timer, (self.__timer,) + + def __getattr__(self, name): + return getattr(self.__timer, name) + + def __init__(self, maxsize, timer=time.monotonic, getsizeof=None): + Cache.__init__(self, maxsize, getsizeof) + self.__timer = _TimedCache._Timer(timer) + + def __repr__(self, cache_repr=Cache.__repr__): + with self.__timer as time: + self.expire(time) + return cache_repr(self) + + def __len__(self, cache_len=Cache.__len__): + with self.__timer as time: + self.expire(time) + return cache_len(self) + + @property + def currsize(self): + with self.__timer as time: + self.expire(time) + return super().currsize + + @property + def timer(self): + """The timer function used by the cache.""" + return self.__timer + + def clear(self): + with self.__timer as time: + self.expire(time) + Cache.clear(self) + + def get(self, *args, **kwargs): + with self.__timer: + return Cache.get(self, *args, **kwargs) + + def pop(self, *args, **kwargs): + with self.__timer: + return Cache.pop(self, *args, **kwargs) + + def setdefault(self, *args, **kwargs): + with self.__timer: + return Cache.setdefault(self, *args, **kwargs) + + +class TTLCache(_TimedCache): + """LRU Cache implementation with per-item time-to-live (TTL) value.""" + + class _Link: + __slots__ = ("key", "expires", "next", "prev") + + def __init__(self, key=None, expires=None): + self.key = key + self.expires = expires + + def __reduce__(self): + return TTLCache._Link, (self.key, self.expires) + + def unlink(self): + next = self.next + prev = self.prev + prev.next = next + next.prev = prev + + def __init__(self, maxsize, ttl, timer=time.monotonic, getsizeof=None): + _TimedCache.__init__(self, maxsize, timer, getsizeof) + self.__root = root = TTLCache._Link() + root.prev = root.next = root + self.__links = collections.OrderedDict() + self.__ttl = ttl + + def __contains__(self, key): + try: + link = self.__links[key] # no reordering + except KeyError: + return False + else: + return self.timer() < link.expires + + def __getitem__(self, key, cache_getitem=Cache.__getitem__): + try: + link = self.__getlink(key) + except KeyError: + expired = False + else: + expired = not (self.timer() < link.expires) + if expired: + return self.__missing__(key) + else: + return cache_getitem(self, key) + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + with self.timer as time: + self.expire(time) + cache_setitem(self, key, value) + try: + link = self.__getlink(key) + except KeyError: + self.__links[key] = link = TTLCache._Link(key) + else: + link.unlink() + link.expires = time + self.__ttl + link.next = root = self.__root + link.prev = prev = root.prev + prev.next = root.prev = link + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + cache_delitem(self, key) + link = self.__links.pop(key) + link.unlink() + if not (self.timer() < link.expires): + raise KeyError(key) + + def __iter__(self): + root = self.__root + curr = root.next + while curr is not root: + # "freeze" time for iterator access + with self.timer as time: + if time < curr.expires: + yield curr.key + curr = curr.next + + def __setstate__(self, state): + self.__dict__.update(state) + root = self.__root + root.prev = root.next = root + for link in sorted(self.__links.values(), key=lambda obj: obj.expires): + link.next = root + link.prev = prev = root.prev + prev.next = root.prev = link + self.expire(self.timer()) + + @property + def ttl(self): + """The time-to-live value of the cache's items.""" + return self.__ttl + + def expire(self, time=None): + """Remove expired items from the cache and return an iterable of the + expired `(key, value)` pairs. + + """ + if time is None: + time = self.timer() + root = self.__root + curr = root.next + links = self.__links + expired = [] + cache_delitem = Cache.__delitem__ + cache_getitem = Cache.__getitem__ + while curr is not root and not (time < curr.expires): + expired.append((curr.key, cache_getitem(self, curr.key))) + cache_delitem(self, curr.key) + del links[curr.key] + next = curr.next + curr.unlink() + curr = next + return expired + + def popitem(self): + """Remove and return the `(key, value)` pair least recently used that + has not already expired. + + """ + with self.timer as time: + self.expire(time) + try: + key = next(iter(self.__links)) + except StopIteration: + raise KeyError("%s is empty" % type(self).__name__) from None + else: + return (key, self.pop(key)) + + def __getlink(self, key): + value = self.__links[key] + self.__links.move_to_end(key) + return value + + +class TLRUCache(_TimedCache): + """Time aware Least Recently Used (TLRU) cache implementation.""" + + @functools.total_ordering + class _Item: + __slots__ = ("key", "expires", "removed") + + def __init__(self, key=None, expires=None): + self.key = key + self.expires = expires + self.removed = False + + def __lt__(self, other): + return self.expires < other.expires + + def __init__(self, maxsize, ttu, timer=time.monotonic, getsizeof=None): + _TimedCache.__init__(self, maxsize, timer, getsizeof) + self.__items = collections.OrderedDict() + self.__order = [] + self.__ttu = ttu + + def __contains__(self, key): + try: + item = self.__items[key] # no reordering + except KeyError: + return False + else: + return self.timer() < item.expires + + def __getitem__(self, key, cache_getitem=Cache.__getitem__): + try: + item = self.__getitem(key) + except KeyError: + expired = False + else: + expired = not (self.timer() < item.expires) + if expired: + return self.__missing__(key) + else: + return cache_getitem(self, key) + + def __setitem__(self, key, value, cache_setitem=Cache.__setitem__): + with self.timer as time: + expires = self.__ttu(key, value, time) + if not (time < expires): + return # skip expired items + self.expire(time) + cache_setitem(self, key, value) + # removing an existing item would break the heap structure, so + # only mark it as removed for now + try: + self.__getitem(key).removed = True + except KeyError: + pass + self.__items[key] = item = TLRUCache._Item(key, expires) + heapq.heappush(self.__order, item) + + def __delitem__(self, key, cache_delitem=Cache.__delitem__): + with self.timer as time: + # no self.expire() for performance reasons, e.g. self.clear() [#67] + cache_delitem(self, key) + item = self.__items.pop(key) + item.removed = True + if not (time < item.expires): + raise KeyError(key) + + def __iter__(self): + for curr in self.__order: + # "freeze" time for iterator access + with self.timer as time: + if time < curr.expires and not curr.removed: + yield curr.key + + @property + def ttu(self): + """The local time-to-use function used by the cache.""" + return self.__ttu + + def expire(self, time=None): + """Remove expired items from the cache and return an iterable of the + expired `(key, value)` pairs. + + """ + if time is None: + time = self.timer() + items = self.__items + order = self.__order + # clean up the heap if too many items are marked as removed + if len(order) > len(items) * 2: + self.__order = order = [item for item in order if not item.removed] + heapq.heapify(order) + expired = [] + cache_delitem = Cache.__delitem__ + cache_getitem = Cache.__getitem__ + while order and (order[0].removed or not (time < order[0].expires)): + item = heapq.heappop(order) + if not item.removed: + expired.append((item.key, cache_getitem(self, item.key))) + cache_delitem(self, item.key) + del items[item.key] + return expired + + def popitem(self): + """Remove and return the `(key, value)` pair least recently used that + has not already expired. + + """ + with self.timer as time: + self.expire(time) + try: + key = next(iter(self.__items)) + except StopIteration: + raise KeyError("%s is empty" % self.__class__.__name__) from None + else: + return (key, self.pop(key)) + + def __getitem(self, key): + value = self.__items[key] + self.__items.move_to_end(key) + return value + + +_CacheInfo = collections.namedtuple( + "CacheInfo", ["hits", "misses", "maxsize", "currsize"] +) + + +def cached(cache, key=keys.hashkey, lock=None, condition=None, info=False): + """Decorator to wrap a function with a memoizing callable that saves + results in a cache. + + """ + from ._cached import _wrapper + + if isinstance(condition, bool): + from warnings import warn + + warn( + "passing `info` as positional parameter is deprecated", + DeprecationWarning, + stacklevel=2, + ) + info = condition + condition = None + + def decorator(func): + if info: + if isinstance(cache, Cache): + + def make_info(hits, misses): + return _CacheInfo(hits, misses, cache.maxsize, cache.currsize) + + elif isinstance(cache, collections.abc.Mapping): + + def make_info(hits, misses): + return _CacheInfo(hits, misses, None, len(cache)) + + else: + + def make_info(hits, misses): + return _CacheInfo(hits, misses, 0, 0) + + return _wrapper(func, cache, key, lock, condition, info=make_info) + else: + return _wrapper(func, cache, key, lock, condition) + + return decorator + + +def cachedmethod(cache, key=keys.methodkey, lock=None, condition=None): + """Decorator to wrap a class or instance method with a memoizing + callable that saves results in a cache. + + """ + from ._cachedmethod import _wrapper + + def decorator(method): + return _wrapper(method, cache, key, lock, condition) + + return decorator diff --git a/ocr/.venv/Lib/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..daa48b14b4c491d4b10a9e68bfabc625891d4ff3 GIT binary patch literal 22510 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/cachetools/__pycache__/_cached.cpython-310.pyc b/ocr/.venv/Lib/site-packages/cachetools/__pycache__/_cached.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af5c31d7c5a23711d9bad7ceac2366c40c95f0d6 GIT binary patch literal 7365 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/cachetools/__pycache__/func.cpython-310.pyc b/ocr/.venv/Lib/site-packages/cachetools/__pycache__/func.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c3281b8c2882c2b74c546c39fdbaba098da7ede GIT binary patch literal 3357 zcmcgu&2Jk;6yMoh+iNFw+%!#-LdA;q5L4p9wW`{pR6&(OD!HjZizR2XGf6hx4|jH) zlE{^i5~;ax1cbx^j`=S*@;B_2Q_sC|;`hcM`JjlLGSa;L&70Xb^FC+NYPDjZm42EI z7bgwlFB+U~HU^K-vp+$&;TfEHjGNqwOwZI`%d_;?_H6wvcm;gzs2G>L5;Jb7Pw zd*!&|RpJS6BA)anjj4usd=9NQ(S48!|^6GqoPaYcH6@G(H z@%kb2rh%^TX`rh>SNROk46h1%=NhkVTKpQH1!tC5`E^m)xelJq=lDE$bKH7nG(OmW zxW3s-0+psw){JDY6ZpZlSa*Xo?)oa+h=d!9I1Ts1WXshn!!&WZ2vX^*RA$XaA+KzP zo9W=kyc}%~WdM%E<&Ko2d8MKOd<#1os|}Wym(qlX3Uc2vupqF!{ABs*5*;LWR+gWS zP-}=vt=5pWwzi@Xq!a^M&w=b0VlN9w`srq2@CZF~L4*O{8SooC2zy$><`%aPjROXs z6=0WQUhh0lHqu_gM|%V$Vblm0(U;J(SrBFX#`=abcdS0^o4?!eqw&l*W~&WbRxzJD zolcm9s?*8s*jL-R6(*YvE4MQdZRQrNk{47M3wdnFIjsMCZRuY7c_w7m-q{gpvekYp zvKK1twx4!I^0gmDLUq1)(oO@}ZtjX?x4jZ>w6jo&#jYQ`@V7+P))vv8y-S{JcK75o zL|;MAOpsZ&KYw1!=IEFK`C`-vQ`hQJCXjNH1nI*zn7lT^njz;g%uBKVT^8<(84UD> zwz)s|uMLNbR$+74DDh(f8&x`;IOV;F@MNd+vgb#G8LdI?bYCI&w zhk2+_g*M48tUToz=YHhJ8{B_z z6MXHOim`uZkeAK-Q5yJB_Mkb=@)OqRzeZ6`;aAVm8{yPmY1_}X0c4G~DuLv6tyHJ$ zOE^^_lqudR5~WMirB~AL!i&e2{D}V1uDnfX?8Ur1J_F5aU)I?yt23KoSIa*++<2`P zfW$i|_LH&f1|c1z#eopQ8N~u57v&v*x8H*-2b3qHMwr$tp}%_s(uaF{hO8(f1nRQ` z#EL>0IAC&4p%`%U0PZI~@h}G-p+16x);6sDpC6A(sjE_#EaLhnb@o-LwlO}bz;I0D zQ&CpizH&2vS7a3zt=FaB*N3^Z?n;sMB9*xtekQn!itW40q0E%~BpHIIJ>@P?oo#3V zezcWJ>=rjGdb}z>g@O%B+ah;H`^qx7@)i;8q_L+Yl?UR#qo8z(lgwc=tZr)le_By4 zVlk}n%cWUiMfkA7vJ@|SB2m$viyF(_1>7KCieH}l z2a2~ua7OLc#nql5rQYXx3lk4%Qmaj)GZmH?qpZmuV{k5O%u`u2Kgb$n2Xd#6nbUbg zTx5=3kC^%K(qg9NCp?Yamgq))AYvHMU1+r~94~lHQX)|S!z*Pw4Fe%>V{kr$$VgwI zXD1mn%cf09{O}uuQ$T3c2p7VQ~^MN z1}Kjo)sk-NyeM@H_c-Bv~D@& ON~Kb()TV25wSNG=_#5y5 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/cachetools/__pycache__/keys.cpython-310.pyc b/ocr/.venv/Lib/site-packages/cachetools/__pycache__/keys.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81ed1144087b450e88bb3752229bb6923683a141 GIT binary patch literal 2442 zcma)7TW=gS6t-t(uSvF5X;WHCG1qn_*dig+3Pn*%s{#V05-A|97L6ujCz)g}8{3;#TAKHC%^B6+0E|;w90lqK2ZlEeV)lDva8JzHL6!$E`=KximT^AbRx^Bz4UtipR{~UsY>?Unmpc=H-_vypWdfyqPO>bvM75P^0kutls==YxVRsI7pY{Lg% z^@>>cI{PZ$?|qYO^h{#aNBtyehb@D>V3;te2GnA=ITGN$LC=i$&V1 zg&|hMa2d*TqPoS0m*+sZ1FwLA*gwOd37ft^g1DTy6aH&w^BS$c2JwR5^Z$ z9JclbQ99WHbFzrxN(~0fihGuN33Gjk#AOm!NSt}^W<8$}hKorA@gHifskd;+aXscvdL1JeHDYJW!MS8dGl>xpm zWp(#}#u-PQj})x;2{K_1{Oi2#X<9oM)zfSy-=0shnJ38TKl!il1wP#QA0Gxrp+?#5 zaru!b>Qu4;ox58mxv$@XVJ%3U#lgWNRy*k9toJnO=V&KrQ`#RxAz}fI6ErG1mP;0D>_(3#Xn(Zp_$!XQ4VObX~L2j?7t1e=f=>aRom0z5y~jyTW) z)Ax8Ydnk|7!cYcuCt~MyJ}&wG94lpGWlQDir@mgjO9ttkc|R|+;TxyF!Olur;NN0a zJJXZr@DP?M9(r&NPow7@fiqx2ftbUj-@~c4uPL)j9_m{d=V0mESi6Tl0dyTKx+v@G zbeOKuZ$iMzG~T5TLg(!evQN-m)ouC9{3fcdrqvgmAlE4?_1h50!%trtw3lQfS=aB7 zn9D%AVTIP;B|+L+yP>Hly0V<6C@#)Fs^$7733@*+Qypga&5YG)eJSfJ=3.7 +License-File: LICENSE +Dynamic: author +Dynamic: author-email +Dynamic: classifier +Dynamic: description +Dynamic: home-page +Dynamic: license +Dynamic: license-file +Dynamic: project-url +Dynamic: requires-python +Dynamic: summary + +Certifi: Python SSL Certificates +================================ + +Certifi provides Mozilla's carefully curated collection of Root Certificates for +validating the trustworthiness of SSL certificates while verifying the identity +of TLS hosts. It has been extracted from the `Requests`_ project. + +Installation +------------ + +``certifi`` is available on PyPI. Simply install it with ``pip``:: + + $ pip install certifi + +Usage +----- + +To reference the installed certificate authority (CA) bundle, you can use the +built-in function:: + + >>> import certifi + + >>> certifi.where() + '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' + +Or from the command line:: + + $ python -m certifi + /usr/local/lib/python3.7/site-packages/certifi/cacert.pem + +Enjoy! + +.. _`Requests`: https://requests.readthedocs.io/en/master/ + +Addition/Removal of Certificates +-------------------------------- + +Certifi does not support any addition/removal or other modification of the +CA trust store content. This project is intended to provide a reliable and +highly portable root of trust to python deployments. Look to upstream projects +for methods to use alternate trust. diff --git a/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/RECORD b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/RECORD new file mode 100644 index 00000000..464cef05 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/RECORD @@ -0,0 +1,14 @@ +certifi-2025.10.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +certifi-2025.10.5.dist-info/METADATA,sha256=RzyR4sT6xRN1pNNy24IHVOlZuDJh1BNfaMa04zEadtk,2474 +certifi-2025.10.5.dist-info/RECORD,, +certifi-2025.10.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 +certifi-2025.10.5.dist-info/licenses/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 +certifi-2025.10.5.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 +certifi/__init__.py,sha256=jWkaYHMk4oIPSSBEK5bLMbO_qrkyNm_cRFx-D16-3Ks,94 +certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 +certifi/__pycache__/__init__.cpython-310.pyc,, +certifi/__pycache__/__main__.cpython-310.pyc,, +certifi/__pycache__/core.cpython-310.pyc,, +certifi/cacert.pem,sha256=IIn8WiWDZAH67pn3IkYLAbOTmZdGoPuBeUNmbW7MBFg,291366 +certifi/core.py,sha256=XFXycndG5pf37ayeF8N32HUuDafsyhkVMbO4BAPWHa0,3394 +certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/WHEEL new file mode 100644 index 00000000..e7fa31b6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (80.9.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/licenses/LICENSE new file mode 100644 index 00000000..62b076cd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/licenses/LICENSE @@ -0,0 +1,20 @@ +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/top_level.txt b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/top_level.txt new file mode 100644 index 00000000..963eac53 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi-2025.10.5.dist-info/top_level.txt @@ -0,0 +1 @@ +certifi diff --git a/ocr/.venv/Lib/site-packages/certifi/__init__.py b/ocr/.venv/Lib/site-packages/certifi/__init__.py new file mode 100644 index 00000000..c4b6c0bb --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2025.10.05" diff --git a/ocr/.venv/Lib/site-packages/certifi/__main__.py b/ocr/.venv/Lib/site-packages/certifi/__main__.py new file mode 100644 index 00000000..8945b5da --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/ocr/.venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2090edd17a7c18259a4e632aabd3b95b72cf43f GIT binary patch literal 291 zcmYk1!Ait15QdYq-IkRF@d>>4V66*#5fMc%g6KgOp#+E8j5WJ$Qj%EF2k{+zrCdGv z3Z6`FJ22ny^UwS+da;<3Q0do!dC>i=v~{V0Cm>^_&tCT zjg?vfd=ryS0Tce#SEqb!gT*%+)T-szXtz!e{C+_77>?1w7}K1n+s2gsKHvL`-mfA7uza;-VBMM zN3SSx!7V-R@DX>p_uS|1*0(tYS`xVrJ3uyQgR!ODAnTkz7x^ESk1iu(Xx=s&8m)}` z_y7{tB+l1C9RJ3F(yfG4%OynEcv-GR+eCq(nJl_YDlmQyQj2>biDgR1iV0`3Sk@MM z-A_p44U^LBW}K&Xakw+VkoI1g(V%W8MWf%440}{BU-Q#LHn$AL$`ab9U}vBfy6xCi z2hD9(RiM+^IcsytrYmSx>_XfzB{alcmM^jb6#Mz#L7LW?Xwr1rJsEmbw|rT_F}9DW Ri4}?_gpvuS*drkh$v0#;dA0xm literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/certifi/__pycache__/core.cpython-310.pyc b/ocr/.venv/Lib/site-packages/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d8cc44bdd5d0d0be0a6fc48be816a4103a43576 GIT binary patch literal 1404 zcmZ`(&5s*36t_K}nS7F#iWY?CIuZm991uc?Z9oDE1?VmUMI()-V<+ouGLD|TOWQ*) z?UgIym>l~r`O0bkg`RkxNq38OYst^=jlX`s-+La_?=W{@3*K%X2H#@W z|DfSyPB`UkP3N>3*_`nq_j&NrpL>F?d>)tGYk!%Z}gDB-M(v3Iy9k_F>2 z@8J6GAxd}`qaJ6+?(81!>(2+9;e2>wU;lsm2G{$t(KC@$0*qY9$@XdT{Hi6%$*I)o zM)C8tNI{r$sC8;iMJj7;%JsT5Qq}2NRjs2IX;r$DCR?#d6{OPWv{JPZwb7I05=9_0 z8@2~kE_%BK7)-J2F&aa5l%r&v>^-DHj!8ym8MEDDdNlq1(Md5q`NPIVA)ZK66t4)l z-Hmzu>-4MqH!VQttCdjoGXGBKGo!Zo&s$Odj;Mtxj(*Hl1^MJc)ED_r@^P-E5ua|$ z>a1J}ogdWrtWqFQ5<6_JX}J}ZdE&CJ8JaPL2#1Vax>R3w8{bByE*5evY~ZZE!PLiP z4bv~sG05(mzz2pJ#_0>X^Elh%So$U~{w~}T^ofafvFYq7#r4PJl{d4|0p#oCTJtQi zy*C2=a&+#qKmKU4Hq{#x<}yw`dB=E!~Z@8??(9v&K^>7 z*EH|+1uL2H4BPpKR0O-wL~l|7J$H5tLmX_p#M-(N8Q#Nh;Hnw!ICIw-S1z{!Z^Zi& zCl8_~y;js4NUxrW6U*tzTOGY)0#4$Lf@65=9ZrWw*c)92G-Ke3c$ST9R1{oQSO}he zs#~}YsqJ0hL&8U1$aS7@E-gJPWUOF literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/certifi/cacert.pem b/ocr/.venv/Lib/site-packages/certifi/cacert.pem new file mode 100644 index 00000000..0b68ebfe --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi/cacert.pem @@ -0,0 +1,4800 @@ + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 +MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 +ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD +VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j +b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq +scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO +xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H +LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX +uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD +yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ +JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q +rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN +BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L +hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB +QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ +HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu +Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg +QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB +BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA +A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb +laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 +awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo +JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw +LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT +VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk +LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb +UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ +QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ +naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls +QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +MIIF7zCCA9egAwIBAgIIDdPjvGz5a7EwDQYJKoZIhvcNAQELBQAwgYQxEjAQBgNV +BAUTCUc2MzI4NzUxMDELMAkGA1UEBhMCRVMxJzAlBgNVBAoTHkFORiBBdXRvcmlk +YWQgZGUgQ2VydGlmaWNhY2lvbjEUMBIGA1UECxMLQU5GIENBIFJhaXoxIjAgBgNV +BAMTGUFORiBTZWN1cmUgU2VydmVyIFJvb3QgQ0EwHhcNMTkwOTA0MTAwMDM4WhcN +MzkwODMwMTAwMDM4WjCBhDESMBAGA1UEBRMJRzYzMjg3NTEwMQswCQYDVQQGEwJF +UzEnMCUGA1UEChMeQU5GIEF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uMRQwEgYD +VQQLEwtBTkYgQ0EgUmFpejEiMCAGA1UEAxMZQU5GIFNlY3VyZSBTZXJ2ZXIgUm9v +dCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANvrayvmZFSVgpCj +cqQZAZ2cC4Ffc0m6p6zzBE57lgvsEeBbphzOG9INgxwruJ4dfkUyYA8H6XdYfp9q +yGFOtibBTI3/TO80sh9l2Ll49a2pcbnvT1gdpd50IJeh7WhM3pIXS7yr/2WanvtH +2Vdy8wmhrnZEE26cLUQ5vPnHO6RYPUG9tMJJo8gN0pcvB2VSAKduyK9o7PQUlrZX +H1bDOZ8rbeTzPvY1ZNoMHKGESy9LS+IsJJ1tk0DrtSOOMspvRdOoiXsezx76W0OL +zc2oD2rKDF65nkeP8Nm2CgtYZRczuSPkdxl9y0oukntPLxB3sY0vaJxizOBQ+OyR +p1RMVwnVdmPF6GUe7m1qzwmd+nxPrWAI/VaZDxUse6mAq4xhj0oHdkLePfTdsiQz +W7i1o0TJrH93PB0j7IKppuLIBkwC/qxcmZkLLxCKpvR/1Yd0DVlJRfbwcVw5Kda/ +SiOL9V8BY9KHcyi1Swr1+KuCLH5zJTIdC2MKF4EA/7Z2Xue0sUDKIbvVgFHlSFJn +LNJhiQcND85Cd8BEc5xEUKDbEAotlRyBr+Qc5RQe8TZBAQIvfXOn3kLMTOmJDVb3 +n5HUA8ZsyY/b2BzgQJhdZpmYgG4t/wHFzstGH6wCxkPmrqKEPMVOHj1tyRRM4y5B +u8o5vzY8KhmqQYdOpc5LMnndkEl/AgMBAAGjYzBhMB8GA1UdIwQYMBaAFJxf0Gxj +o1+TypOYCK2Mh6UsXME3MB0GA1UdDgQWBBScX9BsY6Nfk8qTmAitjIelLFzBNzAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOC +AgEATh65isagmD9uw2nAalxJUqzLK114OMHVVISfk/CHGT0sZonrDUL8zPB1hT+L +9IBdeeUXZ701guLyPI59WzbLWoAAKfLOKyzxj6ptBZNscsdW699QIyjlRRA96Gej +rw5VD5AJYu9LWaL2U/HANeQvwSS9eS9OICI7/RogsKQOLHDtdD+4E5UGUcjohybK +pFtqFiGS3XNgnhAY3jyB6ugYw3yJ8otQPr0R4hUDqDZ9MwFsSBXXiJCZBMXM5gf0 +vPSQ7RPi6ovDj6MzD8EpTBNO2hVWcXNyglD2mjN8orGoGjR0ZVzO0eurU+AagNjq +OknkJjCb5RyKqKkVMoaZkgoQI1YS4PbOTOK7vtuNknMBZi9iPrJyJ0U27U1W45eZ +/zo1PqVUSlJZS2Db7v54EX9K3BR5YLZrZAPbFYPhor72I5dQ8AkzNqdxliXzuUJ9 +2zg/LFis6ELhDtjTO0wugumDLmsx2d1Hhk9tl5EuT+IocTUW0fJz/iUrB0ckYyfI ++PbZa/wSMVYIwFNCr5zQM378BvAxRAMU8Vjq8moNqRGyg77FGr8H6lnco4g175x2 +MjxNBiLOFeXdntiP2t7SxDnlF4HPOEfrf4htWRvfn0IUrn7PqLBmZdo3r5+qPeoo +tt7VMVgWglvquxl1AnMaykgaIZOQCo6ThKd9OyMYkomgjaw= +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +MIIFwDCCA6igAwIBAgIQHr9ZULjJgDdMBvfrVU+17TANBgkqhkiG9w0BAQ0FADB6 +MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEu +MScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNV +BAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwHhcNMTgwMzE2MTIxMDEzWhcNNDMw +MzE2MTIxMDEzWjB6MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEg +U3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRo +b3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQDRLY67tzbqbTeRn06TpwXkKQMlzhyC93yZ +n0EGze2jusDbCSzBfN8pfktlL5On1AFrAygYo9idBcEq2EXxkd7fO9CAAozPOA/q +p1x4EaTByIVcJdPTsuclzxFUl6s1wB52HO8AU5853BSlLCIls3Jy/I2z5T4IHhQq +NwuIPMqw9MjCoa68wb4pZ1Xi/K1ZXP69VyywkI3C7Te2fJmItdUDmj0VDT06qKhF +8JVOJVkdzZhpu9PMMsmN74H+rX2Ju7pgE8pllWeg8xn2A1bUatMn4qGtg/BKEiJ3 +HAVz4hlxQsDsdUaakFjgao4rpUYwBI4Zshfjvqm6f1bxJAPXsiEodg42MEx51UGa +mqi4NboMOvJEGyCI98Ul1z3G4z5D3Yf+xOr1Uz5MZf87Sst4WmsXXw3Hw09Omiqi +7VdNIuJGmj8PkTQkfVXjjJU30xrwCSss0smNtA0Aq2cpKNgB9RkEth2+dv5yXMSF +ytKAQd8FqKPVhJBPC/PgP5sZ0jeJP/J7UhyM9uH3PAeXjA6iWYEMspA90+NZRu0P +qafegGtaqge2Gcu8V/OXIXoMsSt0Puvap2ctTMSYnjYJdmZm/Bo/6khUHL4wvYBQ +v3y1zgD2DGHZ5yQD4OMBgQ692IU0iL2yNqh7XAjlRICMb/gv1SHKHRzQ+8S1h9E6 +Tsd2tTVItQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSM+xx1 +vALTn04uSNn5YFSqxLNP+jAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQENBQAD +ggIBAEii1QALLtA/vBzVtVRJHlpr9OTy4EA34MwUe7nJ+jW1dReTagVphZzNTxl4 +WxmB82M+w85bj/UvXgF2Ez8sALnNllI5SW0ETsXpD4YN4fqzX4IS8TrOZgYkNCvo +zMrnadyHncI013nR03e4qllY/p0m+jiGPp2Kh2RX5Rc64vmNueMzeMGQ2Ljdt4NR +5MTMI9UGfOZR0800McD2RrsLrfw9EAUqO0qRJe6M1ISHgCq8CYyqOhNf6DR5UMEQ +GfnTKB7U0VEwKbOukGfWHwpjscWpxkIxYxeU72nLL/qMFH3EQxiJ2fAyQOaA4kZf +5ePBAFmo+eggvIksDkc0C+pXwlM2/KfUrzHN/gLldfq5Jwn58/U7yn2fqSLLiMmq +0Uc9NneoWWRrJ8/vJ8HjJLWG965+Mk2weWjROeiQWMODvA8s1pfrzgzhIMfatz7D +P78v3DSk+yshzWePS/Tj6tQ/50+6uaWTRRxmHyH6ZF5v4HaUMst19W7l9o/HuKTM +qJZ9ZPskWkoDbGs4xugDQ5r3V7mzKWmTOPQD8rv7gmsHINFSH5pkAnuYZttcTVoP +0ISVoDwUQwbKytu4QTbaakRnh6+v40URFWkIsr4WOZckbxJF0WddCajJFdr60qZf +E2Efv4WstK2tBZQIgx51F9NxO5NQI1mg7TyRVJ12AMXDuDjb +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 1977337328857672817 +# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 +# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe +# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 +MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc +tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd +IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j +b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC +AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw +ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m +iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF +Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ +hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P +Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE +EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV +1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t +CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR +5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw +f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 +ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK +GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV +-----END CERTIFICATE----- + +# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus ECC Root CA" +# Serial: 630369271402956006249506845124680065938238527194 +# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 +# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 +# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 +-----BEGIN CERTIFICATE----- +MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw +RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY +BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz +MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u +LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 +v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd +e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw +V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA +AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG +GJTO +-----END CERTIFICATE----- + +# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus Root CA" +# Serial: 387574501246983434957692974888460947164905180485 +# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc +# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 +# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 +-----BEGIN CERTIFICATE----- +MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL +BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x +FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx +MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s +THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc +IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU +AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ +GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 +8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH +flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt +J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim +0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN +pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ +UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW +OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB +AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet +8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd +nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j +bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM +Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv +TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS +S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr +I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 +b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB +UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P +Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven +sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X2 O=Internet Security Research Group +# Subject: CN=ISRG Root X2 O=Internet Security Research Group +# Label: "ISRG Root X2" +# Serial: 87493402998870891108772069816698636114 +# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 +# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af +# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 +-----BEGIN CERTIFICATE----- +MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw +CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg +R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 +MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT +ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw +EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW ++1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 +ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI +zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW +tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 +/q4AaOeMSQ+2b1tbFfLn +-----END CERTIFICATE----- + +# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Label: "HiPKI Root CA - G1" +# Serial: 60966262342023497858655262305426234976 +# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 +# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 +# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc +-----BEGIN CERTIFICATE----- +MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa +Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 +YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw +qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv +Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 +lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz +Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ +KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK +FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj +HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr +y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ +/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM +a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 +fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG +SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi +7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc +SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza +ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc +XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg +iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho +L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF +Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr +kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ +vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU +YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 159662223612894884239637590694 +# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc +# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 +# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 +-----BEGIN CERTIFICATE----- +MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD +VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw +MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g +UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT +BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx +uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV +HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ ++wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 +bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 159662320309726417404178440727 +# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 +# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a +# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo +27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w +Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw +TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl +qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH +szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 +Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk +MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p +aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN +VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb +C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe +QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy +h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 +7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J +ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef +MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ +Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT +6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ +0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm +2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb +bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 159662449406622349769042896298 +# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc +# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 +# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt +nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY +6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu +MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k +RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg +f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV ++3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo +dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa +G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq +gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H +vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 +0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC +B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u +NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg +yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev +HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 +xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR +TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg +JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV +7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl +6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 159662495401136852707857743206 +# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 +# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 +# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G +jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 +4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 +VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm +ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 159662532700760215368942768210 +# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 +# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 +# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi +QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR +HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D +9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 +p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD +-----END CERTIFICATE----- + +# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj +# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj +# Label: "Telia Root CA v2" +# Serial: 7288924052977061235122729490515358 +# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 +# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd +# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx +CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE +AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 +NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ +MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq +AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 +vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 +lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD +n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT +7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o +6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC +TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 +WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R +DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI +pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj +YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy +rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ +8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi +0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM +A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS +SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K +TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF +6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er +3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt +Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT +VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW +ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA +rBPuUBQemMc= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 1 2020" +# Serial: 165870826978392376648679885835942448534 +# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed +# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 +# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 +NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS +zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 +QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ +VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW +wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV +dWNbFJWcHwHP2NVypw87 +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 1 2020" +# Serial: 126288379621884218666039612629459926992 +# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e +# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 +# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 +NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC +/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD +wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 +OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA +y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb +gfM0agPnIjhQW+0ZT0MW +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS ECC P384 Root G5" +# Serial: 13129116028163249804115411775095713523 +# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed +# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee +# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 +-----BEGIN CERTIFICATE----- +MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp +Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 +MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ +bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS +7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp +0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS +B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 +BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ +LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 +DXZDjC5Ty3zfDBeWUA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS RSA4096 Root G5" +# Serial: 11930366277458970227240571539258396554 +# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 +# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 +# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN +MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT +HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN +NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs +IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ +ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 +2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp +wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM +pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD +nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po +sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx +Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd +Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX +KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe +XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL +tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv +TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN +AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw +GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H +PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF +O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ +REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik +AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv +/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ +p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw +MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF +qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK +ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root R1 O=Certainly +# Subject: CN=Certainly Root R1 O=Certainly +# Label: "Certainly Root R1" +# Serial: 188833316161142517227353805653483829216 +# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 +# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af +# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw +PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy +dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 +YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 +1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT +vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed +aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 +1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 +r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 +cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ +wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ +6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA +2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH +Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR +eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u +d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr +PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d +8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi +1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd +rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di +taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 +lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj +yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn +Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy +yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n +wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 +OV+KmalBWQewLK8= +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root E1 O=Certainly +# Subject: CN=Certainly Root E1 O=Certainly +# Label: "Certainly Root E1" +# Serial: 8168531406727139161245376702891150584 +# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 +# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b +# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 +-----BEGIN CERTIFICATE----- +MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw +CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu +bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ +BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s +eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK ++IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 +QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 +hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm +ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG +BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication ECC RootCA1" +# Serial: 15446673492073852651 +# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 +# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 +# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 +-----BEGIN CERTIFICATE----- +MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT +AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD +VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx +NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT +HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 +IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl +dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK +ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu +9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O +be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA1" +# Serial: 113562791157148395269083148143378328608 +# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 +# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a +# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU +MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI +T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz +MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF +SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh +bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z +xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ +spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 +58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR +at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll +5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq +nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK +V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ +pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO +z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn +jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ +WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF +7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 +YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli +awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u ++2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 +X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN +SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo +P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI ++pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz +znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 +eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 +YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy +r/6zcCwupvI= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA2" +# Serial: 58605626836079930195615843123109055211 +# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c +# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 +# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 +-----BEGIN CERTIFICATE----- +MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw +CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ +VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy +MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ +TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS +b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B +IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ ++kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK +sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA +94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B +43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root E46" +# Serial: 88989738453351742415770396670917916916 +# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 +# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a +# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 +-----BEGIN CERTIFICATE----- +MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw +CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T +ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN +MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG +A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT +ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC +WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ +6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B +Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa +qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q +4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root R46" +# Serial: 156256931880233212765902055439220583700 +# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 +# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 +# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 +-----BEGIN CERTIFICATE----- +MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD +Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw +HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY +MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp +YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa +ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz +SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf +iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X +ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 +IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS +VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE +SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu ++Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt +8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L +HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt +zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P +AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c +mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ +YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 +gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA +Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB +JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX +DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui +TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 +dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 +LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp +0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY +QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS RSA Root CA 2022" +# Serial: 148535279242832292258835760425842727825 +# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da +# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca +# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed +-----BEGIN CERTIFICATE----- +MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO +MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD +DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX +DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw +b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP +L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY +t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins +S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 +PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO +L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 +R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w +dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS ++YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS +d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG +AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f +gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z +NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt +hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM +QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf +R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ +DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW +P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy +lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq +bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w +AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q +r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji +Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU +98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS ECC Root CA 2022" +# Serial: 26605119622390491762507526719404364228 +# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 +# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 +# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 +-----BEGIN CERTIFICATE----- +MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT +U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 +MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh +dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm +acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN +SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME +GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW +uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp +15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN +b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA ECC TLS 2021" +# Serial: 81873346711060652204712539181482831616 +# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 +# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd +# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 +-----BEGIN CERTIFICATE----- +MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w +LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w +CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 +MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF +Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X +tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 +AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 +KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD +aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu +CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo +9H1/IISpQuQo +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA RSA TLS 2021" +# Serial: 111436099570196163832749341232207667876 +# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 +# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 +# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f +-----BEGIN CERTIFICATE----- +MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM +MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx +MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 +MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD +QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z +4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv +Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ +kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs +GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln +nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh +3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD +0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy +geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 +ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB +c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI +pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS +4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs +o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ +qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw +xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM +rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 +AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR +0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY +o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 +dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE +oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G3" +# Serial: 576386314500428537169965010905813481816650257167 +# MD5 Fingerprint: 30:42:1b:b7:bb:81:75:35:e4:16:4f:53:d2:94:de:04 +# SHA1 Fingerprint: 63:cf:b6:c1:27:2b:56:e4:88:8e:1c:23:9a:b6:2e:81:47:24:c3:c7 +# SHA256 Fingerprint: e0:d3:22:6a:eb:11:63:c2:e4:8f:f9:be:3b:50:b4:c6:43:1b:e7:bb:1e:ac:c5:c3:6b:5d:5e:c5:09:03:9a:08 +-----BEGIN CERTIFICATE----- +MIIFpTCCA42gAwIBAgIUZPYOZXdhaqs7tOqFhLuxibhxkw8wDQYJKoZIhvcNAQEM +BQAwWjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dp +ZXMsIEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHMzAe +Fw0yMTA1MjAwMjEwMTlaFw00NjA1MTkwMjEwMTlaMFoxCzAJBgNVBAYTAkNOMSUw +IwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtU +cnVzdEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDAMYJhkuSUGwoqZdC+BqmHO1ES6nBBruL7dOoKjbmzTNyPtxNS +T1QY4SxzlZHFZjtqz6xjbYdT8PfxObegQ2OwxANdV6nnRM7EoYNl9lA+sX4WuDqK +AtCWHwDNBSHvBm3dIZwZQ0WhxeiAysKtQGIXBsaqvPPW5vxQfmZCHzyLpnl5hkA1 +nyDvP+uLRx+PjsXUjrYsyUQE49RDdT/VP68czH5GX6zfZBCK70bwkPAPLfSIC7Ep +qq+FqklYqL9joDiR5rPmd2jE+SoZhLsO4fWvieylL1AgdB4SQXMeJNnKziyhWTXA +yB1GJ2Faj/lN03J5Zh6fFZAhLf3ti1ZwA0pJPn9pMRJpxx5cynoTi+jm9WAPzJMs +hH/x/Gr8m0ed262IPfN2dTPXS6TIi/n1Q1hPy8gDVI+lhXgEGvNz8teHHUGf59gX +zhqcD0r83ERoVGjiQTz+LISGNzzNPy+i2+f3VANfWdP3kXjHi3dqFuVJhZBFcnAv +kV34PmVACxmZySYgWmjBNb9Pp1Hx2BErW+Canig7CjoKH8GB5S7wprlppYiU5msT +f9FkPz2ccEblooV7WIQn3MSAPmeamseaMQ4w7OYXQJXZRe0Blqq/DPNL0WP3E1jA +uPP6Z92bfW1K/zJMtSU7/xxnD4UiWQWRkUF3gdCFTIcQcf+eQxuulXUtgQIDAQAB +o2MwYTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEDk5PIj7zjKsK5Xf/Ih +MBY027ySMB0GA1UdDgQWBBRA5OTyI+84yrCuV3/yITAWNNu8kjAOBgNVHQ8BAf8E +BAMCAQYwDQYJKoZIhvcNAQEMBQADggIBACY7UeFNOPMyGLS0XuFlXsSUT9SnYaP4 +wM8zAQLpw6o1D/GUE3d3NZ4tVlFEbuHGLige/9rsR82XRBf34EzC4Xx8MnpmyFq2 +XFNFV1pF1AWZLy4jVe5jaN/TG3inEpQGAHUNcoTpLrxaatXeL1nHo+zSh2bbt1S1 +JKv0Q3jbSwTEb93mPmY+KfJLaHEih6D4sTNjduMNhXJEIlU/HHzp/LgV6FL6qj6j +ITk1dImmasI5+njPtqzn59ZW/yOSLlALqbUHM/Q4X6RJpstlcHboCoWASzY9M/eV +VHUl2qzEc4Jl6VL1XP04lQJqaTDFHApXB64ipCz5xUG3uOyfT0gA+QEEVcys+TIx +xHWVBqB/0Y0n3bOppHKH/lmLmnp0Ft0WpWIp6zqW3IunaFnT63eROfjXy9mPX1on +AX1daBli2MjN9LdyR75bl87yraKZk62Uy5P2EgmVtqvXO9A/EcswFi55gORngS1d +7XB4tmBZrOFdRWOPyN9yaFvqHbgB8X7754qz41SgOAngPN5C8sLtLpvzHzW2Ntjj +gKGLzZlkD8Kqq7HK9W+eQ42EVJmzbsASZthwEPEGNTNDqJwuuhQxzhB/HIbjj9LV ++Hfsm6vxL2PZQl/gZ4FkkfGXL/xuJvYz+NO1+MRiqzFRJQJ6+N1rZdVtTTDIZbpo +FGWsJwt0ivKH +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G4" +# Serial: 451799571007117016466790293371524403291602933463 +# MD5 Fingerprint: 54:dd:b2:d7:5f:d8:3e:ed:7c:e0:0b:2e:cc:ed:eb:eb +# SHA1 Fingerprint: 57:73:a5:61:5d:80:b2:e6:ac:38:82:fc:68:07:31:ac:9f:b5:92:5a +# SHA256 Fingerprint: be:4b:56:cb:50:56:c0:13:6a:52:6d:f4:44:50:8d:aa:36:a0:b5:4f:42:e4:ac:38:f7:2a:f4:70:e4:79:65:4c +-----BEGIN CERTIFICATE----- +MIICVTCCAdygAwIBAgIUTyNkuI6XY57GU4HBdk7LKnQV1tcwCgYIKoZIzj0EAwMw +WjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dpZXMs +IEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHNDAeFw0y +MTA1MjAwMjEwMjJaFw00NjA1MTkwMjEwMjJaMFoxCzAJBgNVBAYTAkNOMSUwIwYD +VQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtUcnVz +dEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATx +s8045CVD5d4ZCbuBeaIVXxVjAd7Cq92zphtnS4CDr5nLrBfbK5bKfFJV4hrhPVbw +LxYI+hW8m7tH5j/uqOFMjPXTNvk4XatwmkcN4oFBButJ+bAp3TPsUKV/eSm4IJij +YzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUpbtKl86zK3+kMd6Xg1mD +pm9xy94wHQYDVR0OBBYEFKW7SpfOsyt/pDHel4NZg6ZvccveMA4GA1UdDwEB/wQE +AwIBBjAKBggqhkjOPQQDAwNnADBkAjBe8usGzEkxn0AAbbd+NvBNEU/zy4k6LHiR +UKNbwMp1JvK/kF0LgoxgKJ/GcJpo5PECMFxYDlZ2z1jD1xCMuo6u47xkdUfFVZDj +/bpV6wfEU6s3qe4hsiFbYI89MvHVI5TWWA== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Label: "CommScope Public Trust ECC Root-01" +# Serial: 385011430473757362783587124273108818652468453534 +# MD5 Fingerprint: 3a:40:a7:fc:03:8c:9c:38:79:2f:3a:a2:6c:b6:0a:16 +# SHA1 Fingerprint: 07:86:c0:d8:dd:8e:c0:80:98:06:98:d0:58:7a:ef:de:a6:cc:a2:5d +# SHA256 Fingerprint: 11:43:7c:da:7b:b4:5e:41:36:5f:45:b3:9a:38:98:6b:0d:e0:0d:ef:34:8e:0c:7b:b0:87:36:33:80:0b:c3:8b +-----BEGIN CERTIFICATE----- +MIICHTCCAaOgAwIBAgIUQ3CCd89NXTTxyq4yLzf39H91oJ4wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMTAeFw0yMTA0MjgxNzM1NDNa +Fw00NjA0MjgxNzM1NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDEw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAARLNumuV16ocNfQj3Rid8NeeqrltqLxeP0C +flfdkXmcbLlSiFS8LwS+uM32ENEp7LXQoMPwiXAZu1FlxUOcw5tjnSCDPgYLpkJE +hRGnSjot6dZoL0hOUysHP029uax3OVejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSOB2LAUN3GGQYARnQE9/OufXVNMDAKBggq +hkjOPQQDAwNoADBlAjEAnDPfQeMjqEI2Jpc1XHvr20v4qotzVRVcrHgpD7oh2MSg +2NED3W3ROT3Ek2DS43KyAjB8xX6I01D1HiXo+k515liWpDVfG2XqYZpwI7UNo5uS +Um9poIyNStDuiw7LR47QjRE= +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Label: "CommScope Public Trust ECC Root-02" +# Serial: 234015080301808452132356021271193974922492992893 +# MD5 Fingerprint: 59:b0:44:d5:65:4d:b8:5c:55:19:92:02:b6:d1:94:b2 +# SHA1 Fingerprint: 3c:3f:ef:57:0f:fe:65:93:86:9e:a0:fe:b0:f6:ed:8e:d1:13:c7:e5 +# SHA256 Fingerprint: 2f:fb:7f:81:3b:bb:b3:c8:9a:b4:e8:16:2d:0f:16:d7:15:09:a8:30:cc:9d:73:c2:62:e5:14:08:75:d1:ad:4a +-----BEGIN CERTIFICATE----- +MIICHDCCAaOgAwIBAgIUKP2ZYEFHpgE6yhR7H+/5aAiDXX0wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMjAeFw0yMTA0MjgxNzQ0NTRa +Fw00NjA0MjgxNzQ0NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDIw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAR4MIHoYx7l63FRD/cHB8o5mXxO1Q/MMDAL +j2aTPs+9xYa9+bG3tD60B8jzljHz7aRP+KNOjSkVWLjVb3/ubCK1sK9IRQq9qEmU +v4RDsNuESgMjGWdqb8FuvAY5N9GIIvejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTmGHX/72DehKT1RsfeSlXjMjZ59TAKBggq +hkjOPQQDAwNnADBkAjAmc0l6tqvmSfR9Uj/UQQSugEODZXW5hYA4O9Zv5JOGq4/n +ich/m35rChJVYaoR4HkCMHfoMXGsPHED1oQmHhS48zs73u1Z/GtMMH9ZzkXpc2AV +mkzw5l4lIhVtwodZ0LKOag== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Label: "CommScope Public Trust RSA Root-01" +# Serial: 354030733275608256394402989253558293562031411421 +# MD5 Fingerprint: 0e:b4:15:bc:87:63:5d:5d:02:73:d4:26:38:68:73:d8 +# SHA1 Fingerprint: 6d:0a:5f:f7:b4:23:06:b4:85:b3:b7:97:64:fc:ac:75:f5:33:f2:93 +# SHA256 Fingerprint: 02:bd:f9:6e:2a:45:dd:9b:f1:8f:c7:e1:db:df:21:a0:37:9b:a3:c9:c2:61:03:44:cf:d8:d6:06:fe:c1:ed:81 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUPgNJgXUWdDGOTKvVxZAplsU5EN0wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMTAeFw0yMTA0MjgxNjQ1 +NTRaFw00NjA0MjgxNjQ1NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwSGWjDR1C45FtnYSk +YZYSwu3D2iM0GXb26v1VWvZVAVMP8syMl0+5UMuzAURWlv2bKOx7dAvnQmtVzslh +suitQDy6uUEKBU8bJoWPQ7VAtYXR1HHcg0Hz9kXHgKKEUJdGzqAMxGBWBB0HW0al +DrJLpA6lfO741GIDuZNqihS4cPgugkY4Iw50x2tBt9Apo52AsH53k2NC+zSDO3Oj +WiE260f6GBfZumbCk6SP/F2krfxQapWsvCQz0b2If4b19bJzKo98rwjyGpg/qYFl +P8GMicWWMJoKz/TUyDTtnS+8jTiGU+6Xn6myY5QXjQ/cZip8UlF1y5mO6D1cv547 +KI2DAg+pn3LiLCuz3GaXAEDQpFSOm117RTYm1nJD68/A6g3czhLmfTifBSeolz7p +UcZsBSjBAg/pGG3svZwG1KdJ9FQFa2ww8esD1eo9anbCyxooSU1/ZOD6K9pzg4H/ +kQO9lLvkuI6cMmPNn7togbGEW682v3fuHX/3SZtS7NJ3Wn2RnU3COS3kuoL4b/JO +Hg9O5j9ZpSPcPYeoKFgo0fEbNttPxP/hjFtyjMcmAyejOQoBqsCyMWCDIqFPEgkB +Ea801M/XrmLTBQe0MXXgDW1XT2mH+VepuhX2yFJtocucH+X8eKg1mp9BFM6ltM6U +CBwJrVbl2rZJmkrqYxhTnCwuwwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUN12mmnQywsL5x6YVEFm45P3luG0wDQYJ +KoZIhvcNAQELBQADggIBAK+nz97/4L1CjU3lIpbfaOp9TSp90K09FlxD533Ahuh6 +NWPxzIHIxgvoLlI1pKZJkGNRrDSsBTtXAOnTYtPZKdVUvhwQkZyybf5Z/Xn36lbQ +nmhUQo8mUuJM3y+Xpi/SB5io82BdS5pYV4jvguX6r2yBS5KPQJqTRlnLX3gWsWc+ +QgvfKNmwrZggvkN80V4aCRckjXtdlemrwWCrWxhkgPut4AZ9HcpZuPN4KWfGVh2v +trV0KnahP/t1MJ+UXjulYPPLXAziDslg+MkfFoom3ecnf+slpoq9uC02EJqxWE2a +aE9gVOX2RhOOiKy8IUISrcZKiX2bwdgt6ZYD9KJ0DLwAHb/WNyVntHKLr4W96ioD +j8z7PEQkguIBpQtZtjSNMgsSDesnwv1B10A8ckYpwIzqug/xBpMu95yo9GA+o/E4 +Xo4TwbM6l4c/ksp4qRyv0LAbJh6+cOx69TOY6lz/KwsETkPdY34Op054A5U+1C0w +lREQKC6/oAI+/15Z0wUOlV9TRe9rh9VIzRamloPh37MG88EU26fsHItdkJANclHn +YfkUyq+Dj7+vsQpZXdxc1+SWrVtgHdqul7I52Qb1dgAT+GhMIbA1xNxVssnBQVoc +icCMb3SgazNNtQEo/a2tiRc7ppqEvOuM6sRxJKi6KfkIsidWNTJf6jn7MZrVGczw +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Label: "CommScope Public Trust RSA Root-02" +# Serial: 480062499834624527752716769107743131258796508494 +# MD5 Fingerprint: e1:29:f9:62:7b:76:e2:96:6d:f3:d4:d7:0f:ae:1f:aa +# SHA1 Fingerprint: ea:b0:e2:52:1b:89:93:4c:11:68:f2:d8:9a:ac:22:4c:a3:8a:57:ae +# SHA256 Fingerprint: ff:e9:43:d7:93:42:4b:4f:7c:44:0c:1c:3d:64:8d:53:63:f3:4b:82:dc:87:aa:7a:9f:11:8f:c5:de:e1:01:f1 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUVBa/O345lXGN0aoApYYNK496BU4wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMjAeFw0yMTA0MjgxNzE2 +NDNaFw00NjA0MjgxNzE2NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDh+g77aAASyE3VrCLE +NQE7xVTlWXZjpX/rwcRqmL0yjReA61260WI9JSMZNRTpf4mnG2I81lDnNJUDMrG0 +kyI9p+Kx7eZ7Ti6Hmw0zdQreqjXnfuU2mKKuJZ6VszKWpCtYHu8//mI0SFHRtI1C +rWDaSWqVcN3SAOLMV2MCe5bdSZdbkk6V0/nLKR8YSvgBKtJjCW4k6YnS5cciTNxz +hkcAqg2Ijq6FfUrpuzNPDlJwnZXjfG2WWy09X6GDRl224yW4fKcZgBzqZUPckXk2 +LHR88mcGyYnJ27/aaL8j7dxrrSiDeS/sOKUNNwFnJ5rpM9kzXzehxfCrPfp4sOcs +n/Y+n2Dg70jpkEUeBVF4GiwSLFworA2iI540jwXmojPOEXcT1A6kHkIfhs1w/tku +FT0du7jyU1fbzMZ0KZwYszZ1OC4PVKH4kh+Jlk+71O6d6Ts2QrUKOyrUZHk2EOH5 +kQMreyBUzQ0ZGshBMjTRsJnhkB4BQDa1t/qp5Xd1pCKBXbCL5CcSD1SIxtuFdOa3 +wNemKfrb3vOTlycEVS8KbzfFPROvCgCpLIscgSjX74Yxqa7ybrjKaixUR9gqiC6v +wQcQeKwRoi9C8DfF8rhW3Q5iLc4tVn5V8qdE9isy9COoR+jUKgF4z2rDN6ieZdIs +5fq6M8EGRPbmz6UNp2YINIos8wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUR9DnsSL/nSz12Vdgs7GxcJXvYXowDQYJ +KoZIhvcNAQELBQADggIBAIZpsU0v6Z9PIpNojuQhmaPORVMbc0RTAIFhzTHjCLqB +KCh6krm2qMhDnscTJk3C2OVVnJJdUNjCK9v+5qiXz1I6JMNlZFxHMaNlNRPDk7n3 ++VGXu6TwYofF1gbTl4MgqX67tiHCpQ2EAOHyJxCDut0DgdXdaMNmEMjRdrSzbyme +APnCKfWxkxlSaRosTKCL4BWaMS/TiJVZbuXEs1DIFAhKm4sTg7GkcrI7djNB3Nyq +pgdvHSQSn8h2vS/ZjvQs7rfSOBAkNlEv41xdgSGn2rtO/+YHqP65DSdsu3BaVXoT +6fEqSWnHX4dXTEN5bTpl6TBcQe7rd6VzEojov32u5cSoHw2OHG1QAk8mGEPej1WF +sQs3BWDJVTkSBKEqz3EWnzZRSb9wO55nnPt7eck5HHisd5FUmrh1CoFSl+NmYWvt +PjgelmFV4ZFUjO2MJB+ByRCac5krFk5yAD9UG/iNuovnFNa2RU9g7Jauwy8CTl2d +lklyALKrdVwPaFsdZcJfMw8eD/A7hvWwTruc9+olBdytoptLFwG+Qt81IR2tq670 +v64fG9PiO/yzcnMcmyiQiRM9HcEARwmWmjgb3bHPDcK0RPOWlc4yOo80nOAXx17O +rg3bhzjlP1v9mxnhMUF6cKojawHhRUzNlM47ni3niAIi9G7oyOzWPPO5std3eqx7 +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS ECC Root 2020" +# Serial: 72082518505882327255703894282316633856 +# MD5 Fingerprint: c1:ab:fe:6a:10:2c:03:8d:bc:1c:22:32:c0:85:a7:fd +# SHA1 Fingerprint: c0:f8:96:c5:a9:3b:01:06:21:07:da:18:42:48:bc:e9:9d:88:d5:ec +# SHA256 Fingerprint: 57:8a:f4:de:d0:85:3f:4e:59:98:db:4a:ea:f9:cb:ea:8d:94:5f:60:b6:20:a3:8d:1a:3c:13:b2:bc:7b:a8:e1 +-----BEGIN CERTIFICATE----- +MIICQjCCAcmgAwIBAgIQNjqWjMlcsljN0AFdxeVXADAKBggqhkjOPQQDAzBjMQsw +CQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0eSBH +bWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBFQ0MgUm9vdCAyMDIw +MB4XDTIwMDgyNTA3NDgyMFoXDTQ1MDgyNTIzNTk1OVowYzELMAkGA1UEBhMCREUx +JzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkGA1UE +AwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgRUNDIFJvb3QgMjAyMDB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABM6//leov9Wq9xCazbzREaK9Z0LMkOsVGJDZos0MKiXrPk/O +tdKPD/M12kOLAoC+b1EkHQ9rK8qfwm9QMuU3ILYg/4gND21Ju9sGpIeQkpT0CdDP +f8iAC8GXs7s1J8nCG6NCMEAwHQYDVR0OBBYEFONyzG6VmUex5rNhTNHLq+O6zd6f +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2cA +MGQCMHVSi7ekEE+uShCLsoRbQuHmKjYC2qBuGT8lv9pZMo7k+5Dck2TOrbRBR2Di +z6fLHgIwN0GMZt9Ba9aDAEH9L1r3ULRn0SyocddDypwnJJGDSA3PzfdUga/sf+Rn +27iQ7t0l +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS RSA Root 2023" +# Serial: 44676229530606711399881795178081572759 +# MD5 Fingerprint: bf:5b:eb:54:40:cd:48:71:c4:20:8d:7d:de:0a:42:f2 +# SHA1 Fingerprint: 54:d3:ac:b3:bd:57:56:f6:85:9d:ce:e5:c3:21:e2:d4:ad:83:d0:93 +# SHA256 Fingerprint: ef:c6:5c:ad:bb:59:ad:b6:ef:e8:4d:a2:23:11:b3:56:24:b7:1b:3b:1e:a0:da:8b:66:55:17:4e:c8:97:86:46 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIQIZxULej27HF3+k7ow3BXlzANBgkqhkiG9w0BAQwFADBj +MQswCQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0 +eSBHbWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBSU0EgUm9vdCAy +MDIzMB4XDTIzMDMyODEyMTY0NVoXDTQ4MDMyNzIzNTk1OVowYzELMAkGA1UEBhMC +REUxJzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkG +A1UEAwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgUlNBIFJvb3QgMjAyMzCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAO01oYGA88tKaVvC+1GDrib94W7zgRJ9 +cUD/h3VCKSHtgVIs3xLBGYSJwb3FKNXVS2xE1kzbB5ZKVXrKNoIENqil/Cf2SfHV +cp6R+SPWcHu79ZvB7JPPGeplfohwoHP89v+1VmLhc2o0mD6CuKyVU/QBoCcHcqMA +U6DksquDOFczJZSfvkgdmOGjup5czQRxUX11eKvzWarE4GC+j4NSuHUaQTXtvPM6 +Y+mpFEXX5lLRbtLevOP1Czvm4MS9Q2QTps70mDdsipWol8hHD/BeEIvnHRz+sTug +BTNoBUGCwQMrAcjnj02r6LX2zWtEtefdi+zqJbQAIldNsLGyMcEWzv/9FIS3R/qy +8XDe24tsNlikfLMR0cN3f1+2JeANxdKz+bi4d9s3cXFH42AYTyS2dTd4uaNir73J +co4vzLuu2+QVUhkHM/tqty1LkCiCc/4YizWN26cEar7qwU02OxY2kTLvtkCJkUPg +8qKrBC7m8kwOFjQgrIfBLX7JZkcXFBGk8/ehJImr2BrIoVyxo/eMbcgByU/J7MT8 +rFEz0ciD0cmfHdRHNCk+y7AO+oMLKFjlKdw/fKifybYKu6boRhYPluV75Gp6SG12 +mAWl3G0eQh5C2hrgUve1g8Aae3g1LDj1H/1Joy7SWWO/gLCMk3PLNaaZlSJhZQNg ++y+TS/qanIA7AgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtqeX +gj10hZv3PJ+TmpV5dVKMbUcwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS2 +p5eCPXSFm/c8n5OalXl1UoxtRzANBgkqhkiG9w0BAQwFAAOCAgEAqMxhpr51nhVQ +pGv7qHBFfLp+sVr8WyP6Cnf4mHGCDG3gXkaqk/QeoMPhk9tLrbKmXauw1GLLXrtm +9S3ul0A8Yute1hTWjOKWi0FpkzXmuZlrYrShF2Y0pmtjxrlO8iLpWA1WQdH6DErw +M807u20hOq6OcrXDSvvpfeWxm4bu4uB9tPcy/SKE8YXJN3nptT+/XOR0so8RYgDd +GGah2XsjX/GO1WfoVNpbOms2b/mBsTNHM3dA+VKq3dSDz4V4mZqTuXNnQkYRIer+ +CqkbGmVps4+uFrb2S1ayLfmlyOw7YqPta9BO1UAJpB+Y1zqlklkg5LB9zVtzaL1t +xKITDmcZuI1CfmwMmm6gJC3VRRvcxAIU/oVbZZfKTpBQCHpCNfnqwmbU+AGuHrS+ +w6jv/naaoqYfRvaE7fzbzsQCzndILIyy7MMAo+wsVRjBfhnu4S/yrYObnqsZ38aK +L4x35bcF7DvB7L6Gs4a8wPfc5+pbrrLMtTWGS9DiP7bY+A4A7l3j941Y/8+LN+lj +X273CXE2whJdV/LItM3z7gLfEdxquVeEHVlNjM7IDiPCtyaaEBRx/pOyiriA8A4Q +ntOoUAw3gi/q4Iqd4Sw5/7W0cwDk90imc6y/st53BIe0o82bNSQ3+pCTE4FCxpgm +dTdmQRCsu/WU48IxK63nI1bMNSWSs1A= +-----END CERTIFICATE----- + +# Issuer: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Subject: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Label: "FIRMAPROFESIONAL CA ROOT-A WEB" +# Serial: 65916896770016886708751106294915943533 +# MD5 Fingerprint: 82:b2:ad:45:00:82:b0:66:63:f8:5f:c3:67:4e:ce:a3 +# SHA1 Fingerprint: a8:31:11:74:a6:14:15:0d:ca:77:dd:0e:e4:0c:5d:58:fc:a0:72:a5 +# SHA256 Fingerprint: be:f2:56:da:f2:6e:9c:69:bd:ec:16:02:35:97:98:f3:ca:f7:18:21:a0:3e:01:82:57:c5:3c:65:61:7f:3d:4a +-----BEGIN CERTIFICATE----- +MIICejCCAgCgAwIBAgIQMZch7a+JQn81QYehZ1ZMbTAKBggqhkjOPQQDAzBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwHhcNMjIwNDA2MDkwMTM2WhcNNDcwMzMxMDkwMTM2WjBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARHU+osEaR3xyrq89Zf +e9MEkVz6iMYiuYMQYneEMy3pA4jU4DP37XcsSmDq5G+tbbT4TIqk5B/K6k84Si6C +cyvHZpsKjECcfIr28jlgst7L7Ljkb+qbXbdTkBgyVcUgt5SjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAUk+FDY1w8ndYn81LsF7Kpryz3dvgwHQYDVR0O +BBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB/wQEAwIBBjAKBggqhkjO +PQQDAwNoADBlAjAdfKR7w4l1M+E7qUW/Runpod3JIha3RxEL2Jq68cgLcFBTApFw +hVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dG +XSaQpYXFuXqUPoeovQA= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA CYBER Root CA" +# Serial: 85076849864375384482682434040119489222 +# MD5 Fingerprint: 0b:33:a0:97:52:95:d4:a9:fd:bb:db:6e:a3:55:5b:51 +# SHA1 Fingerprint: f6:b1:1c:1a:83:38:e9:7b:db:b3:a8:c8:33:24:e0:2d:9c:7f:26:66 +# SHA256 Fingerprint: 3f:63:bb:28:14:be:17:4e:c8:b6:43:9c:f0:8d:6d:56:f0:b7:c4:05:88:3a:56:48:a3:34:42:4d:6b:3e:c5:58 +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIQQAE0jMIAAAAAAAAAATzyxjANBgkqhkiG9w0BAQwFADBQ +MQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290 +IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3QgQ0EwHhcNMjIxMTIyMDY1NDI5 +WhcNNDcxMTIyMTU1OTU5WjBQMQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FO +LUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDG+Moe2Qkgfh1sTs6P +40czRJzHyWmqOlt47nDSkvgEs1JSHWdyKKHfi12VCv7qze33Kc7wb3+szT3vsxxF +avcokPFhV8UMxKNQXd7UtcsZyoC5dc4pztKFIuwCY8xEMCDa6pFbVuYdHNWdZsc/ +34bKS1PE2Y2yHer43CdTo0fhYcx9tbD47nORxc5zb87uEB8aBs/pJ2DFTxnk684i +JkXXYJndzk834H/nY62wuFm40AZoNWDTNq5xQwTxaWV4fPMf88oon1oglWa0zbfu +j3ikRRjpJi+NmykosaS3Om251Bw4ckVYsV7r8Cibt4LK/c/WMw+f+5eesRycnupf +Xtuq3VTpMCEobY5583WSjCb+3MX2w7DfRFlDo7YDKPYIMKoNM+HvnKkHIuNZW0CP +2oi3aQiotyMuRAlZN1vH4xfyIutuOVLF3lSnmMlLIJXcRolftBL5hSmO68gnFSDA +S9TMfAxsNAwmmyYxpjyn9tnQS6Jk/zuZQXLB4HCX8SS7K8R0IrGsayIyJNN4KsDA +oS/xUgXJP+92ZuJF2A09rZXIx4kmyA+upwMu+8Ff+iDhcK2wZSA3M2Cw1a/XDBzC +kHDXShi8fgGwsOsVHkQGzaRP6AzRwyAQ4VRlnrZR0Bp2a0JaWHY06rc3Ga4udfmW +5cFZ95RXKSWNOkyrTZpB0F8mAwIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBSdhWEUfMFib5do5E83QOGt4A1WNzAd +BgNVHQ4EFgQUnYVhFHzBYm+XaORPN0DhreANVjcwDQYJKoZIhvcNAQEMBQADggIB +AGSPesRiDrWIzLjHhg6hShbNcAu3p4ULs3a2D6f/CIsLJc+o1IN1KriWiLb73y0t +tGlTITVX1olNc79pj3CjYcya2x6a4CD4bLubIp1dhDGaLIrdaqHXKGnK/nZVekZn +68xDiBaiA9a5F/gZbG0jAn/xX9AKKSM70aoK7akXJlQKTcKlTfjF/biBzysseKNn +TKkHmvPfXvt89YnNdJdhEGoHK4Fa0o635yDRIG4kqIQnoVesqlVYL9zZyvpoBJ7t +RCT5dEA7IzOrg1oYJkK2bVS1FmAwbLGg+LhBoF1JSdJlBTrq/p1hvIbZv97Tujqx +f36SNI7JAG7cmL3c7IAFrQI932XtCwP39xaEBDG6k5TY8hL4iuO/Qq+n1M0RFxbI +Qh0UqEL20kCGoE8jypZFVmAGzbdVAaYBlGX+bgUJurSkquLvWL69J1bY73NxW0Qz +8ppy6rBePm6pUlvscG21h483XjyMnM7k8M4MZ0HMzvaAq07MTFb1wWFZk7Q+ptq4 +NxKfKjLji7gh7MMrZQzvIt6IKTtM1/r+t+FHvpw+PoP7UV31aPcuIYXcv/Fa4nzX +xeSDwWrruoBa3lwtcHb4yOWHh8qgnaHlIhInD0Q9HWzq1MKLL295q39QpsQZp6F6 +t5b5wR9iWqJDB0BeJsas7a5wFsWqynKKTbDPAYsDP27X +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA12" +# Serial: 587887345431707215246142177076162061960426065942 +# MD5 Fingerprint: c6:89:ca:64:42:9b:62:08:49:0b:1e:7f:e9:07:3d:e8 +# SHA1 Fingerprint: 7a:22:1e:3d:de:1b:06:ac:9e:c8:47:70:16:8e:3c:e5:f7:6b:06:f4 +# SHA256 Fingerprint: 3f:03:4b:b5:70:4d:44:b2:d0:85:45:a0:20:57:de:93:eb:f3:90:5f:ce:72:1a:cb:c7:30:c0:6d:da:ee:90:4e +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUZvnHwa/swlG07VOX5uaCwysckBYwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExMjAeFw0yMDA0MDgw +NTM2NDZaFw00MDA0MDgwNTM2NDZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6OcE3emhF +KxS06+QT61d1I02PJC0W6K6OyX2kVzsqdiUzg2zqMoqUm048luT9Ub+ZyZN+v/mt +p7JIKwccJ/VMvHASd6SFVLX9kHrko+RRWAPNEHl57muTH2SOa2SroxPjcf59q5zd +J1M3s6oYwlkm7Fsf0uZlfO+TvdhYXAvA42VvPMfKWeP+bl+sg779XSVOKik71gur +FzJ4pOE+lEa+Ym6b3kaosRbnhW70CEBFEaCeVESE99g2zvVQR9wsMJvuwPWW0v4J +hscGWa5Pro4RmHvzC1KqYiaqId+OJTN5lxZJjfU+1UefNzFJM3IFTQy2VYzxV4+K +h9GtxRESOaCtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBRXNPN0zwRL1SXm8UC2LEzZLemgrTANBgkqhkiG9w0BAQsF +AAOCAQEAPrvbFxbS8hQBICw4g0utvsqFepq2m2um4fylOqyttCg6r9cBg0krY6Ld +mmQOmFxv3Y67ilQiLUoT865AQ9tPkbeGGuwAtEGBpE/6aouIs3YIcipJQMPTw4WJ +mBClnW8Zt7vPemVV2zfrPIpyMpcemik+rY3moxtt9XUa5rBouVui7mlHJzWhhpmA +8zNL4WukJsPvdFlseqJkth5Ew1DgDzk9qTPxpfPSvWKErI4cqc1avTc7bgoitPQV +55FYxTpE05Uo2cBl6XLK0A+9H7MV2anjpEcJnuDLN/v9vZfVvhgaaaI5gdka9at/ +yOPiZwud9AzqVN/Ssq+xIvEg37xEHA== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA14" +# Serial: 575790784512929437950770173562378038616896959179 +# MD5 Fingerprint: 71:0d:72:fa:92:19:65:5e:89:04:ac:16:33:f0:bc:d5 +# SHA1 Fingerprint: dd:50:c0:f7:79:b3:64:2e:74:a2:b8:9d:9f:d3:40:dd:bb:f0:f2:4f +# SHA256 Fingerprint: 4b:00:9c:10:34:49:4f:9a:b5:6b:ba:3b:a1:d6:27:31:fc:4d:20:d8:95:5a:dc:ec:10:a9:25:60:72:61:e3:38 +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIUZNtaDCBO6Ncpd8hQJ6JaJ90t8sswDQYJKoZIhvcNAQEM +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNDAeFw0yMDA0MDgw +NzA2MTlaFw00NTA0MDgwNzA2MTlaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDF0nqh1oq/ +FjHQmNE6lPxauG4iwWL3pwon71D2LrGeaBLwbCRjOfHw3xDG3rdSINVSW0KZnvOg +vlIfX8xnbacuUKLBl422+JX1sLrcneC+y9/3OPJH9aaakpUqYllQC6KxNedlsmGy +6pJxaeQp8E+BgQQ8sqVb1MWoWWd7VRxJq3qdwudzTe/NCcLEVxLbAQ4jeQkHO6Lo +/IrPj8BGJJw4J+CDnRugv3gVEOuGTgpa/d/aLIJ+7sr2KeH6caH3iGicnPCNvg9J +kdjqOvn90Ghx2+m1K06Ckm9mH+Dw3EzsytHqunQG+bOEkJTRX45zGRBdAuVwpcAQ +0BB8b8VYSbSwbprafZX1zNoCr7gsfXmPvkPx+SgojQlD+Ajda8iLLCSxjVIHvXib +y8posqTdDEx5YMaZ0ZPxMBoH064iwurO8YQJzOAUbn8/ftKChazcqRZOhaBgy/ac +18izju3Gm5h1DVXoX+WViwKkrkMpKBGk5hIwAUt1ax5mnXkvpXYvHUC0bcl9eQjs +0Wq2XSqypWa9a4X0dFbD9ed1Uigspf9mR6XU/v6eVL9lfgHWMI+lNpyiUBzuOIAB +SMbHdPTGrMNASRZhdCyvjG817XsYAFs2PJxQDcqSMxDxJklt33UkN4Ii1+iW/RVL +ApY+B3KVfqs9TC7XyvDf4Fg/LS8EmjijAQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUBpOjCl4oaTeqYR3r6/wtbyPk +86AwDQYJKoZIhvcNAQEMBQADggIBAJaAcgkGfpzMkwQWu6A6jZJOtxEaCnFxEM0E +rX+lRVAQZk5KQaID2RFPeje5S+LGjzJmdSX7684/AykmjbgWHfYfM25I5uj4V7Ib +ed87hwriZLoAymzvftAj63iP/2SbNDefNWWipAA9EiOWWF3KY4fGoweITedpdopT +zfFP7ELyk+OZpDc8h7hi2/DsHzc/N19DzFGdtfCXwreFamgLRB7lUe6TzktuhsHS +DCRZNhqfLJGP4xjblJUK7ZGqDpncllPjYYPGFrojutzdfhrGe0K22VoF3Jpf1d+4 +2kd92jjbrDnVHmtsKheMYc2xbXIBw8MgAGJoFjHVdqqGuw6qnsb58Nn4DSEC5MUo +FlkRudlpcyqSeLiSV5sI8jrlL5WwWLdrIBRtFO8KvH7YVdiI2i/6GaX7i+B/OfVy +K4XELKzvGUWSTLNhB9xNH27SgRNcmvMSZ4PPmz+Ln52kuaiWA3rF7iDeM9ovnhp6 +dB7h7sxaOgTdsxoEqBRjrLdHEoOabPXm6RUVkRqEGQ6UROcSjiVbgGcZ3GOTEAtl +Lor6CZpO2oYofaphNdgOpygau1LgePhsumywbrmHXumZNTfxPWQrqaA0k89jL9WB +365jJ6UeTo3cKXhZ+PmhIIynJkBugnLNeLLIjzwec+fBH7/PzqUqm9tEZDKgu39c +JRNItX+S +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA15" +# Serial: 126083514594751269499665114766174399806381178503 +# MD5 Fingerprint: 13:30:fc:c4:62:a6:a9:de:b5:c1:68:af:b5:d2:31:47 +# SHA1 Fingerprint: cb:ba:83:c8:c1:5a:5d:f1:f9:73:6f:ca:d7:ef:28:13:06:4a:07:7d +# SHA256 Fingerprint: e7:78:f0:f0:95:fe:84:37:29:cd:1a:00:82:17:9e:53:14:a9:c2:91:44:28:05:e1:fb:1d:8f:b6:b8:88:6c:3a +-----BEGIN CERTIFICATE----- +MIICIzCCAamgAwIBAgIUFhXHw9hJp75pDIqI7fBw+d23PocwCgYIKoZIzj0EAwMw +UTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBM +dGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNTAeFw0yMDA0MDgwODMy +NTZaFw00NTA0MDgwODMyNTZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJl +cnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBSb290 +IENBMTUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQLUHSNZDKZmbPSYAi4Io5GdCx4 +wCtELW1fHcmuS1Iggz24FG1Th2CeX2yF2wYUleDHKP+dX+Sq8bOLbe1PL0vJSpSR +ZHX+AezB2Ot6lHhWGENfa4HL9rzatAy2KZMIaY+jQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTrQciu/NWeUUj1vYv0hyCTQSvT +9DAKBggqhkjOPQQDAwNoADBlAjEA2S6Jfl5OpBEHvVnCB96rMjhTKkZEBhd6zlHp +4P9mLQlO4E/0BdGF9jVg3PVys0Z9AjBEmEYagoUeYWmJSwdLZrWeqrqgHkHZAXQ6 +bkU6iYAZezKYVWOr62Nuk22rGwlgMU4= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 2 2023 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 2 2023 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 2 2023" +# Serial: 153168538924886464690566649552453098598 +# MD5 Fingerprint: e1:09:ed:d3:60:d4:56:1b:47:1f:b7:0c:5f:1b:5f:85 +# SHA1 Fingerprint: 2d:b0:70:ee:71:94:af:69:68:17:db:79:ce:58:9f:a0:6b:96:f7:87 +# SHA256 Fingerprint: 05:52:e6:f8:3f:df:65:e8:fa:96:70:e6:66:df:28:a4:e2:13:40:b5:10:cb:e5:25:66:f9:7c:4f:b9:4b:2b:d1 +-----BEGIN CERTIFICATE----- +MIIFqTCCA5GgAwIBAgIQczswBEhb2U14LnNLyaHcZjANBgkqhkiG9w0BAQ0FADBI +MQswCQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlE +LVRSVVNUIEJSIFJvb3QgQ0EgMiAyMDIzMB4XDTIzMDUwOTA4NTYzMVoXDTM4MDUw +OTA4NTYzMFowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEi +MCAGA1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDIgMjAyMzCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAK7/CVmRgApKaOYkP7in5Mg6CjoWzckjYaCTcfKr +i3OPoGdlYNJUa2NRb0kz4HIHE304zQaSBylSa053bATTlfrdTIzZXcFhfUvnKLNE +gXtRr90zsWh81k5M/itoucpmacTsXld/9w3HnDY25QdgrMBM6ghs7wZ8T1soegj8 +k12b9py0i4a6Ibn08OhZWiihNIQaJZG2tY/vsvmA+vk9PBFy2OMvhnbFeSzBqZCT +Rphny4NqoFAjpzv2gTng7fC5v2Xx2Mt6++9zA84A9H3X4F07ZrjcjrqDy4d2A/wl +2ecjbwb9Z/Pg/4S8R7+1FhhGaRTMBffb00msa8yr5LULQyReS2tNZ9/WtT5PeB+U +cSTq3nD88ZP+npNa5JRal1QMNXtfbO4AHyTsA7oC9Xb0n9Sa7YUsOCIvx9gvdhFP +/Wxc6PWOJ4d/GUohR5AdeY0cW/jPSoXk7bNbjb7EZChdQcRurDhaTyN0dKkSw/bS +uREVMweR2Ds3OmMwBtHFIjYoYiMQ4EbMl6zWK11kJNXuHA7e+whadSr2Y23OC0K+ +0bpwHJwh5Q8xaRfX/Aq03u2AnMuStIv13lmiWAmlY0cL4UEyNEHZmrHZqLAbWt4N +DfTisl01gLmB1IRpkQLLddCNxbU9CZEJjxShFHR5PtbJFR2kWVki3PaKRT08EtY+ +XTIvAgMBAAGjgY4wgYswDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUZ5Dw1t61 +GNVGKX5cq/ieCLxklRAwDgYDVR0PAQH/BAQDAgEGMEkGA1UdHwRCMEAwPqA8oDqG +OGh0dHA6Ly9jcmwuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3RfYnJfcm9vdF9jYV8y +XzIwMjMuY3JsMA0GCSqGSIb3DQEBDQUAA4ICAQA097N3U9swFrktpSHxQCF16+tI +FoE9c+CeJyrrd6kTpGoKWloUMz1oH4Guaf2Mn2VsNELZLdB/eBaxOqwjMa1ef67n +riv6uvw8l5VAk1/DLQOj7aRvU9f6QA4w9QAgLABMjDu0ox+2v5Eyq6+SmNMW5tTR +VFxDWy6u71cqqLRvpO8NVhTaIasgdp4D/Ca4nj8+AybmTNudX0KEPUUDAxxZiMrc +LmEkWqTqJwtzEr5SswrPMhfiHocaFpVIbVrg0M8JkiZmkdijYQ6qgYF/6FKC0ULn +4B0Y+qSFNueG4A3rvNTJ1jxD8V1Jbn6Bm2m1iWKPiFLY1/4nwSPFyysCu7Ff/vtD +hQNGvl3GyiEm/9cCnnRK3PgTFbGBVzbLZVzRHTF36SXDw7IyN9XxmAnkbWOACKsG +koHU6XCPpz+y7YaMgmo1yEJagtFSGkUPFaUA8JR7ZSdXOUPPfH/mvTWze/EZTN46 +ls/pdu4D58JDUjxqgejBWoC9EV2Ta/vH5mQ/u2kc6d0li690yVRAysuTEwrt+2aS +Ecr1wPrYg1UDfNPFIkZ1cGt5SAYqgpq/5usWDiJFAbzdNpQ0qTUmiteXue4Icr80 +knCDgKs4qllo3UCkGJCy89UDyibK79XH4I9TjvAA46jtn/mtd+ArY0+ew+43u3gJ +hJ65bvspmZDogNOfJA== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia TLS ECC Root CA O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia TLS ECC Root CA O=TrustAsia Technologies, Inc. +# Label: "TrustAsia TLS ECC Root CA" +# Serial: 310892014698942880364840003424242768478804666567 +# MD5 Fingerprint: 09:48:04:77:d2:fc:65:93:71:66:b1:11:95:4f:06:8c +# SHA1 Fingerprint: b5:ec:39:f3:a1:66:37:ae:c3:05:94:57:e2:be:11:be:b7:a1:7f:36 +# SHA256 Fingerprint: c0:07:6b:9e:f0:53:1f:b1:a6:56:d6:7c:4e:be:97:cd:5d:ba:a4:1e:f4:45:98:ac:c2:48:98:78:c9:2d:87:11 +-----BEGIN CERTIFICATE----- +MIICMTCCAbegAwIBAgIUNnThTXxlE8msg1UloD5Sfi9QaMcwCgYIKoZIzj0EAwMw +WDELMAkGA1UEBhMCQ04xJTAjBgNVBAoTHFRydXN0QXNpYSBUZWNobm9sb2dpZXMs +IEluYy4xIjAgBgNVBAMTGVRydXN0QXNpYSBUTFMgRUNDIFJvb3QgQ0EwHhcNMjQw +NTE1MDU0MTU2WhcNNDQwNTE1MDU0MTU1WjBYMQswCQYDVQQGEwJDTjElMCMGA1UE +ChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEiMCAGA1UEAxMZVHJ1c3RB +c2lhIFRMUyBFQ0MgUm9vdCBDQTB2MBAGByqGSM49AgEGBSuBBAAiA2IABLh/pVs/ +AT598IhtrimY4ZtcU5nb9wj/1WrgjstEpvDBjL1P1M7UiFPoXlfXTr4sP/MSpwDp +guMqWzJ8S5sUKZ74LYO1644xST0mYekdcouJtgq7nDM1D9rs3qlKH8kzsaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQULIVTu7FDzTLqnqOH/qKYqKaT6RAw +DgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2gAMGUCMFRH18MtYYZI9HlaVQ01 +L18N9mdsd0AaRuf4aFtOJx24mH1/k78ITcTaRTChD15KeAIxAKORh/IRM4PDwYqR +OkwrULG9IpRdNYlzg8WbGf60oenUoWa2AaU2+dhoYSi3dOGiMQ== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia TLS RSA Root CA O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia TLS RSA Root CA O=TrustAsia Technologies, Inc. +# Label: "TrustAsia TLS RSA Root CA" +# Serial: 160405846464868906657516898462547310235378010780 +# MD5 Fingerprint: 3b:9e:c3:86:0f:34:3c:6b:c5:46:c4:8e:1d:e7:19:12 +# SHA1 Fingerprint: a5:46:50:c5:62:ea:95:9a:1a:a7:04:6f:17:58:c7:29:53:3d:03:fa +# SHA256 Fingerprint: 06:c0:8d:7d:af:d8:76:97:1e:b1:12:4f:e6:7f:84:7e:c0:c7:a1:58:d3:ea:53:cb:e9:40:e2:ea:97:91:f4:c3 +-----BEGIN CERTIFICATE----- +MIIFgDCCA2igAwIBAgIUHBjYz+VTPyI1RlNUJDxsR9FcSpwwDQYJKoZIhvcNAQEM +BQAwWDELMAkGA1UEBhMCQ04xJTAjBgNVBAoTHFRydXN0QXNpYSBUZWNobm9sb2dp +ZXMsIEluYy4xIjAgBgNVBAMTGVRydXN0QXNpYSBUTFMgUlNBIFJvb3QgQ0EwHhcN +MjQwNTE1MDU0MTU3WhcNNDQwNTE1MDU0MTU2WjBYMQswCQYDVQQGEwJDTjElMCMG +A1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEiMCAGA1UEAxMZVHJ1 +c3RBc2lhIFRMUyBSU0EgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC +AgoCggIBAMMWuBtqpERz5dZO9LnPWwvB0ZqB9WOwj0PBuwhaGnrhB3YmH49pVr7+ +NmDQDIPNlOrnxS1cLwUWAp4KqC/lYCZUlviYQB2srp10Zy9U+5RjmOMmSoPGlbYJ +Q1DNDX3eRA5gEk9bNb2/mThtfWza4mhzH/kxpRkQcwUqwzIZheo0qt1CHjCNP561 +HmHVb70AcnKtEj+qpklz8oYVlQwQX1Fkzv93uMltrOXVmPGZLmzjyUT5tUMnCE32 +ft5EebuyjBza00tsLtbDeLdM1aTk2tyKjg7/D8OmYCYozza/+lcK7Fs/6TAWe8Tb +xNRkoDD75f0dcZLdKY9BWN4ArTr9PXwaqLEX8E40eFgl1oUh63kd0Nyrz2I8sMeX +i9bQn9P+PN7F4/w6g3CEIR0JwqH8uyghZVNgepBtljhb//HXeltt08lwSUq6HTrQ +UNoyIBnkiz/r1RYmNzz7dZ6wB3C4FGB33PYPXFIKvF1tjVEK2sUYyJtt3LCDs3+j +TnhMmCWr8n4uIF6CFabW2I+s5c0yhsj55NqJ4js+k8UTav/H9xj8Z7XvGCxUq0DT +bE3txci3OE9kxJRMT6DNrqXGJyV1J23G2pyOsAWZ1SgRxSHUuPzHlqtKZFlhaxP8 +S8ySpg+kUb8OWJDZgoM5pl+z+m6Ss80zDoWo8SnTq1mt1tve1CuBAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFLgHkXlcBvRG/XtZylomkadFK/hT +MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQwFAAOCAgEAIZtqBSBdGBanEqT3 +Rz/NyjuujsCCztxIJXgXbODgcMTWltnZ9r96nBO7U5WS/8+S4PPFJzVXqDuiGev4 +iqME3mmL5Dw8veWv0BIb5Ylrc5tvJQJLkIKvQMKtuppgJFqBTQUYo+IzeXoLH5Pt +7DlK9RME7I10nYEKqG/odv6LTytpEoYKNDbdgptvT+Bz3Ul/KD7JO6NXBNiT2Twp +2xIQaOHEibgGIOcberyxk2GaGUARtWqFVwHxtlotJnMnlvm5P1vQiJ3koP26TpUJ +g3933FEFlJ0gcXax7PqJtZwuhfG5WyRasQmr2soaB82G39tp27RIGAAtvKLEiUUj +pQ7hRGU+isFqMB3iYPg6qocJQrmBktwliJiJ8Xw18WLK7nn4GS/+X/jbh87qqA8M +pugLoDzga5SYnH+tBuYc6kIQX+ImFTw3OffXvO645e8D7r0i+yiGNFjEWn9hongP +XvPKnbwbPKfILfanIhHKA9jnZwqKDss1jjQ52MjqjZ9k4DewbNfFj8GQYSbbJIwe +SsCI3zWQzj8C9GRh3sfIB5XeMhg6j6JCQCTl1jNdfK7vsU1P1FeQNWrcrgSXSYk0 +ly4wBOeY99sLAZDBHwo/+ML+TvrbmnNzFrwFuHnYWa8G5z9nODmxfKuU4CkUpijy +323imttUQ/hHWKNddBWcwauwxzQ= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 2 2023 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 2 2023 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 2 2023" +# Serial: 139766439402180512324132425437959641711 +# MD5 Fingerprint: 96:b4:78:09:f0:09:cb:77:eb:bb:1b:4d:6f:36:bc:b6 +# SHA1 Fingerprint: a5:5b:d8:47:6c:8f:19:f7:4c:f4:6d:6b:b6:c2:79:82:22:df:54:8b +# SHA256 Fingerprint: 8e:82:21:b2:e7:d4:00:78:36:a1:67:2f:0d:cc:29:9c:33:bc:07:d3:16:f1:32:fa:1a:20:6d:58:71:50:f1:ce +-----BEGIN CERTIFICATE----- +MIIFqTCCA5GgAwIBAgIQaSYJfoBLTKCnjHhiU19abzANBgkqhkiG9w0BAQ0FADBI +MQswCQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlE +LVRSVVNUIEVWIFJvb3QgQ0EgMiAyMDIzMB4XDTIzMDUwOTA5MTAzM1oXDTM4MDUw +OTA5MTAzMlowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEi +MCAGA1UEAxMZRC1UUlVTVCBFViBSb290IENBIDIgMjAyMzCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBANiOo4mAC7JXUtypU0w3uX9jFxPvp1sjW2l1sJkK +F8GLxNuo4MwxusLyzV3pt/gdr2rElYfXR8mV2IIEUD2BCP/kPbOx1sWy/YgJ25yE +7CUXFId/MHibaljJtnMoPDT3mfd/06b4HEV8rSyMlD/YZxBTfiLNTiVR8CUkNRFe +EMbsh2aJgWi6zCudR3Mfvc2RpHJqnKIbGKBv7FD0fUDCqDDPvXPIEysQEx6Lmqg6 +lHPTGGkKSv/BAQP/eX+1SH977ugpbzZMlWGG2Pmic4ruri+W7mjNPU0oQvlFKzIb +RlUWaqZLKfm7lVa/Rh3sHZMdwGWyH6FDrlaeoLGPaxK3YG14C8qKXO0elg6DpkiV +jTujIcSuWMYAsoS0I6SWhjW42J7YrDRJmGOVxcttSEfi8i4YHtAxq9107PncjLgc +jmgjutDzUNzPZY9zOjLHfP7KgiJPvo5iR2blzYfi6NUPGJ/lBHJLRjwQ8kTCZFZx +TnXonMkmdMV9WdEKWw9t/p51HBjGGjp82A0EzM23RWV6sY+4roRIPrN6TagD4uJ+ +ARZZaBhDM7DS3LAaQzXupdqpRlyuhoFBAUp0JuyfBr/CBTdkdXgpaP3F9ev+R/nk +hbDhezGdpn9yo7nELC7MmVcOIQxFAZRl62UJxmMiCzNJkkg8/M3OsD6Onov4/knF +NXJHAgMBAAGjgY4wgYswDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqvyREBuH +kV8Wub9PS5FeAByxMoAwDgYDVR0PAQH/BAQDAgEGMEkGA1UdHwRCMEAwPqA8oDqG +OGh0dHA6Ly9jcmwuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3RfZXZfcm9vdF9jYV8y +XzIwMjMuY3JsMA0GCSqGSIb3DQEBDQUAA4ICAQCTy6UfmRHsmg1fLBWTxj++EI14 +QvBukEdHjqOSMo1wj/Zbjb6JzkcBahsgIIlbyIIQbODnmaprxiqgYzWRaoUlrRc4 +pZt+UPJ26oUFKidBK7GB0aL2QHWpDsvxVUjY7NHss+jOFKE17MJeNRqrphYBBo7q +3C+jisosketSjl8MmxfPy3MHGcRqwnNU73xDUmPBEcrCRbH0O1P1aa4846XerOhU +t7KR/aypH/KH5BfGSah82ApB9PI+53c0BFLd6IHyTS9URZ0V4U/M5d40VxDJI3IX +cI1QcB9WbMy5/zpaT2N6w25lBx2Eof+pDGOJbbJAiDnXH3dotfyc1dZnaVuodNv8 +ifYbMvekJKZ2t0dT741Jj6m2g1qllpBFYfXeA08mD6iL8AOWsKwV0HFaanuU5nCT +2vFp4LJiTZ6P/4mdm13NRemUAiKN4DV/6PEEeXFsVIP4M7kFMhtYVRFP0OUnR3Hs +7dpn1mKmS00PaaLJvOwiS5THaJQXfuKOKD62xur1NGyfN4gHONuGcfrNlUhDbqNP +gofXNJhuS5N5YHVpD/Aa1VP6IQzCP+k/HxiMkl14p3ZnGbuy6n/pcAlWVqOwDAst +Nl7F6cTVg8uGF5csbBNvh1qvSaYd2804BC5f4ko1Di1L+KIkBI3Y4WNeApI02phh +XBxvWHZks/wCuPWdCg== +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign RSA TLS Root CA 2022 - 1 O=SwissSign AG +# Subject: CN=SwissSign RSA TLS Root CA 2022 - 1 O=SwissSign AG +# Label: "SwissSign RSA TLS Root CA 2022 - 1" +# Serial: 388078645722908516278762308316089881486363258315 +# MD5 Fingerprint: 16:2e:e4:19:76:81:85:ba:8e:91:58:f1:15:ef:72:39 +# SHA1 Fingerprint: 81:34:0a:be:4c:cd:ce:cc:e7:7d:cc:8a:d4:57:e2:45:a0:77:5d:ce +# SHA256 Fingerprint: 19:31:44:f4:31:e0:fd:db:74:07:17:d4:de:92:6a:57:11:33:88:4b:43:60:d3:0e:27:29:13:cb:e6:60:ce:41 +-----BEGIN CERTIFICATE----- +MIIFkzCCA3ugAwIBAgIUQ/oMX04bgBhE79G0TzUfRPSA7cswDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzErMCkGA1UE +AxMiU3dpc3NTaWduIFJTQSBUTFMgUm9vdCBDQSAyMDIyIC0gMTAeFw0yMjA2MDgx +MTA4MjJaFw00NzA2MDgxMTA4MjJaMFExCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxT +d2lzc1NpZ24gQUcxKzApBgNVBAMTIlN3aXNzU2lnbiBSU0EgVExTIFJvb3QgQ0Eg +MjAyMiAtIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDLKmjiC8NX +vDVjvHClO/OMPE5Xlm7DTjak9gLKHqquuN6orx122ro10JFwB9+zBvKK8i5VUXu7 +LCTLf5ImgKO0lPaCoaTo+nUdWfMHamFk4saMla+ju45vVs9xzF6BYQ1t8qsCLqSX +5XH8irCRIFucdFJtrhUnWXjyCcplDn/L9Ovn3KlMd/YrFgSVrpxxpT8q2kFC5zyE +EPThPYxr4iuRR1VPuFa+Rd4iUU1OKNlfGUEGjw5NBuBwQCMBauTLE5tzrE0USJIt +/m2n+IdreXXhvhCxqohAWVTXz8TQm0SzOGlkjIHRI36qOTw7D59Ke4LKa2/KIj4x +0LDQKhySio/YGZxH5D4MucLNvkEM+KRHBdvBFzA4OmnczcNpI/2aDwLOEGrOyvi5 +KaM2iYauC8BPY7kGWUleDsFpswrzd34unYyzJ5jSmY0lpx+Gs6ZUcDj8fV3oT4MM +0ZPlEuRU2j7yrTrePjxF8CgPBrnh25d7mUWe3f6VWQQvdT/TromZhqwUtKiE+shd +OxtYk8EXlFXIC+OCeYSf8wCENO7cMdWP8vpPlkwGqnj73mSiI80fPsWMvDdUDrta +clXvyFu1cvh43zcgTFeRc5JzrBh3Q4IgaezprClG5QtO+DdziZaKHG29777YtvTK +wP1H8K4LWCDFyB02rpeNUIMmJCn3nTsPBQIDAQABo2MwYTAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBRvjmKLk0Ow4UD2p8P98Q+4 +DxU4pTAdBgNVHQ4EFgQUb45ii5NDsOFA9qfD/fEPuA8VOKUwDQYJKoZIhvcNAQEL +BQADggIBAKwsKUF9+lz1GpUYvyypiqkkVHX1uECry6gkUSsYP2OprphWKwVDIqO3 +10aewCoSPY6WlkDfDDOLazeROpW7OSltwAJsipQLBwJNGD77+3v1dj2b9l4wBlgz +Hqp41eZUBDqyggmNzhYzWUUo8aWjlw5DI/0LIICQ/+Mmz7hkkeUFjxOgdg3XNwwQ +iJb0Pr6VvfHDffCjw3lHC1ySFWPtUnWK50Zpy1FVCypM9fJkT6lc/2cyjlUtMoIc +gC9qkfjLvH4YoiaoLqNTKIftV+Vlek4ASltOU8liNr3CjlvrzG4ngRhZi0Rjn9UM +ZfQpZX+RLOV/fuiJz48gy20HQhFRJjKKLjpHE7iNvUcNCfAWpO2Whi4Z2L6MOuhF +LhG6rlrnub+xzI/goP+4s9GFe3lmozm1O2bYQL7Pt2eLSMkZJVX8vY3PXtpOpvJp +zv1/THfQwUY1mFwjmwJFQ5Ra3bxHrSL+ul4vkSkphnsh3m5kt8sNjzdbowhq6/Td +Ao9QAwKxuDdollDruF/UKIqlIgyKhPBZLtU30WHlQnNYKoH3dtvi4k0NX/a3vgW0 +rk4N3hY9A4GzJl5LuEsAz/+MF7psYC0nhzck5npgL7XTgwSqT0N1osGDsieYK7EO +gLrAhV5Cud+xYJHT6xh+cHiudoO+cVrQkOPKwRYlZ0rwtnu64ZzZ +-----END CERTIFICATE----- + +# Issuer: CN=OISTE Server Root ECC G1 O=OISTE Foundation +# Subject: CN=OISTE Server Root ECC G1 O=OISTE Foundation +# Label: "OISTE Server Root ECC G1" +# Serial: 47819833811561661340092227008453318557 +# MD5 Fingerprint: 42:a7:d2:35:ae:02:92:db:19:76:08:de:2f:05:b4:d4 +# SHA1 Fingerprint: 3b:f6:8b:09:ae:2a:92:7b:ba:e3:8d:3f:11:95:d9:e6:44:0c:45:e2 +# SHA256 Fingerprint: ee:c9:97:c0:c3:0f:21:6f:7e:3b:8b:30:7d:2b:ae:42:41:2d:75:3f:c8:21:9d:af:d1:52:0b:25:72:85:0f:49 +-----BEGIN CERTIFICATE----- +MIICNTCCAbqgAwIBAgIQI/nD1jWvjyhLH/BU6n6XnTAKBggqhkjOPQQDAzBLMQsw +CQYDVQQGEwJDSDEZMBcGA1UECgwQT0lTVEUgRm91bmRhdGlvbjEhMB8GA1UEAwwY +T0lTVEUgU2VydmVyIFJvb3QgRUNDIEcxMB4XDTIzMDUzMTE0NDIyOFoXDTQ4MDUy +NDE0NDIyN1owSzELMAkGA1UEBhMCQ0gxGTAXBgNVBAoMEE9JU1RFIEZvdW5kYXRp +b24xITAfBgNVBAMMGE9JU1RFIFNlcnZlciBSb290IEVDQyBHMTB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABBcv+hK8rBjzCvRE1nZCnrPoH7d5qVi2+GXROiFPqOujvqQy +cvO2Ackr/XeFblPdreqqLiWStukhEaivtUwL85Zgmjvn6hp4LrQ95SjeHIC6XG4N +2xml4z+cKrhAS93mT6NjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBQ3 +TYhlz/w9itWj8UnATgwQb0K0nDAdBgNVHQ4EFgQUN02IZc/8PYrVo/FJwE4MEG9C +tJwwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2kAMGYCMQCpKjAd0MKfkFFR +QD6VVCHNFmb3U2wIFjnQEnx/Yxvf4zgAOdktUyBFCxxgZzFDJe0CMQCSia7pXGKD +YmH5LVerVrkR3SW+ak5KGoJr3M/TvEqzPNcum9v4KGm8ay3sMaE641c= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE Server Root RSA G1 O=OISTE Foundation +# Subject: CN=OISTE Server Root RSA G1 O=OISTE Foundation +# Label: " OISTE Server Root RSA G1" +# Serial: 113845518112613905024960613408179309848 +# MD5 Fingerprint: 23:a7:9e:d4:70:b8:b9:14:57:41:8a:7e:44:59:e2:68 +# SHA1 Fingerprint: f7:00:34:25:94:88:68:31:e4:34:87:3f:70:fe:86:b3:86:9f:f0:6e +# SHA256 Fingerprint: 9a:e3:62:32:a5:18:9f:fd:db:35:3d:fd:26:52:0c:01:53:95:d2:27:77:da:c5:9d:b5:7b:98:c0:89:a6:51:e6 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIQVaXZZ5Qoxu0M+ifdWwFNGDANBgkqhkiG9w0BAQwFADBL +MQswCQYDVQQGEwJDSDEZMBcGA1UECgwQT0lTVEUgRm91bmRhdGlvbjEhMB8GA1UE +AwwYT0lTVEUgU2VydmVyIFJvb3QgUlNBIEcxMB4XDTIzMDUzMTE0MzcxNloXDTQ4 +MDUyNDE0MzcxNVowSzELMAkGA1UEBhMCQ0gxGTAXBgNVBAoMEE9JU1RFIEZvdW5k +YXRpb24xITAfBgNVBAMMGE9JU1RFIFNlcnZlciBSb290IFJTQSBHMTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAKqu9KuCz/vlNwvn1ZatkOhLKdxVYOPM +vLO8LZK55KN68YG0nnJyQ98/qwsmtO57Gmn7KNByXEptaZnwYx4M0rH/1ow00O7b +rEi56rAUjtgHqSSY3ekJvqgiG1k50SeH3BzN+Puz6+mTeO0Pzjd8JnduodgsIUzk +ik/HEzxux9UTl7Ko2yRpg1bTacuCErudG/L4NPKYKyqOBGf244ehHa1uzjZ0Dl4z +O8vbUZeUapU8zhhabkvG/AePLhq5SvdkNCncpo1Q4Y2LS+VIG24ugBA/5J8bZT8R +tOpXaZ+0AOuFJJkk9SGdl6r7NH8CaxWQrbueWhl/pIzY+m0o/DjH40ytas7ZTpOS +jswMZ78LS5bOZmdTaMsXEY5Z96ycG7mOaES3GK/m5Q9l3JUJsJMStR8+lKXHiHUh +sd4JJCpM4rzsTGdHwimIuQq6+cF0zowYJmXa92/GjHtoXAvuY8BeS/FOzJ8vD+Ho +mnqT8eDI278n5mUpezbgMxVz8p1rhAhoKzYHKyfMeNhqhw5HdPSqoBNdZH702xSu ++zrkL8Fl47l6QGzwBrd7KJvX4V84c5Ss2XCTLdyEr0YconosP4EmQufU2MVshGYR +i3drVByjtdgQ8K4p92cIiBdcuJd5z+orKu5YM+Vt6SmqZQENghPsJQtdLEByFSnT +kCz3GkPVavBpAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU +8snBDw1jALvsRQ5KH7WxszbNDo0wHQYDVR0OBBYEFPLJwQ8NYwC77EUOSh+1sbM2 +zQ6NMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQwFAAOCAgEANGd5sjrG5T33 +I3K5Ce+SrScfoE4KsvXaFwyihdJ+klH9FWXXXGtkFu6KRcoMQzZENdl//nk6HOjG +5D1rd9QhEOP28yBOqb6J8xycqd+8MDoX0TJD0KqKchxRKEzdNsjkLWd9kYccnbz8 +qyiWXmFcuCIzGEgWUOrKL+mlSdx/PKQZvDatkuK59EvV6wit53j+F8Bdh3foZ3dP +AGav9LEDOr4SfEE15fSmG0eLy3n31r8Xbk5l8PjaV8GUgeV6Vg27Rn9vkf195hfk +gSe7BYhW3SCl95gtkRlpMV+bMPKZrXJAlszYd2abtNUOshD+FKrDgHGdPY3ofRRs +YWSGRqbXVMW215AWRqWFyp464+YTFrYVI8ypKVL9AMb2kI5Wj4kI3Zaq5tNqqYY1 +9tVFeEJKRvwDyF7YZvZFZSS0vod7VSCd9521Kvy5YhnLbDuv0204bKt7ph6N/Ome +/msVuduCmsuY33OhkKCgxeDoAaijFJzIwZqsFVAzje18KotzlUBDJvyBpCpfOZC3 +J8tRd/iWkx7P8nd9H0aTolkelUTFLXVksNb54Dxp6gS1HAviRkRNQzuXSXERvSS2 +wq1yVAb+axj5d9spLFKebXd7Yv0PTY6YMjAwcRLWJTXjn/hvnLXrahut6hDTlhZy +BiElxky8j3C7DOReIoMt0r7+hVu05L0= +-----END CERTIFICATE----- diff --git a/ocr/.venv/Lib/site-packages/certifi/core.py b/ocr/.venv/Lib/site-packages/certifi/core.py new file mode 100644 index 00000000..1c9661cc --- /dev/null +++ b/ocr/.venv/Lib/site-packages/certifi/core.py @@ -0,0 +1,83 @@ +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import sys +import atexit + +def exit_cacert_ctx() -> None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return files("certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +else: + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return read_text("certifi", "cacert.pem", encoding="ascii") diff --git a/ocr/.venv/Lib/site-packages/certifi/py.typed b/ocr/.venv/Lib/site-packages/certifi/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/METADATA b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/METADATA new file mode 100644 index 00000000..8d32edcc --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/METADATA @@ -0,0 +1,764 @@ +Metadata-Version: 2.4 +Name: charset-normalizer +Version: 3.4.4 +Summary: The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet. +Author-email: "Ahmed R. TAHRI" +Maintainer-email: "Ahmed R. TAHRI" +License: MIT +Project-URL: Changelog, https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md +Project-URL: Documentation, https://charset-normalizer.readthedocs.io/ +Project-URL: Code, https://github.com/jawah/charset_normalizer +Project-URL: Issue tracker, https://github.com/jawah/charset_normalizer/issues +Keywords: encoding,charset,charset-detector,detector,normalization,unicode,chardet,detect +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Text Processing :: Linguistic +Classifier: Topic :: Utilities +Classifier: Typing :: Typed +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +License-File: LICENSE +Provides-Extra: unicode-backport +Dynamic: license-file + +

Charset Detection, for Everyone 👋

+ +

+ The Real First Universal Charset Detector
+
+ + + + Download Count Total + + + + +

+

+ Featured Packages
+ + Static Badge + + + Static Badge + +

+

+ In other language (unofficial port - by the community)
+ + Static Badge + +

+ +> A library that helps you read text from an unknown charset encoding.
Motivated by `chardet`, +> I'm trying to resolve the issue by taking a new approach. +> All IANA character set names for which the Python core library provides codecs are supported. + +

+ >>>>> 👉 Try Me Online Now, Then Adopt Me 👈 <<<<< +

+ +This project offers you an alternative to **Universal Charset Encoding Detector**, also known as **Chardet**. + +| Feature | [Chardet](https://github.com/chardet/chardet) | Charset Normalizer | [cChardet](https://github.com/PyYoshi/cChardet) | +|--------------------------------------------------|:---------------------------------------------:|:--------------------------------------------------------------------------------------------------:|:-----------------------------------------------:| +| `Fast` | ❌ | ✅ | ✅ | +| `Universal**` | ❌ | ✅ | ❌ | +| `Reliable` **without** distinguishable standards | ❌ | ✅ | ✅ | +| `Reliable` **with** distinguishable standards | ✅ | ✅ | ✅ | +| `License` | LGPL-2.1
_restrictive_ | MIT | MPL-1.1
_restrictive_ | +| `Native Python` | ✅ | ✅ | ❌ | +| `Detect spoken language` | ❌ | ✅ | N/A | +| `UnicodeDecodeError Safety` | ❌ | ✅ | ❌ | +| `Whl Size (min)` | 193.6 kB | 42 kB | ~200 kB | +| `Supported Encoding` | 33 | 🎉 [99](https://charset-normalizer.readthedocs.io/en/latest/user/support.html#supported-encodings) | 40 | + +

+Reading Normalized TextCat Reading Text +

+ +*\*\* : They are clearly using specific code for a specific encoding even if covering most of used one*
+ +## ⚡ Performance + +This package offer better performance than its counterpart Chardet. Here are some numbers. + +| Package | Accuracy | Mean per file (ms) | File per sec (est) | +|-----------------------------------------------|:--------:|:------------------:|:------------------:| +| [chardet](https://github.com/chardet/chardet) | 86 % | 63 ms | 16 file/sec | +| charset-normalizer | **98 %** | **10 ms** | 100 file/sec | + +| Package | 99th percentile | 95th percentile | 50th percentile | +|-----------------------------------------------|:---------------:|:---------------:|:---------------:| +| [chardet](https://github.com/chardet/chardet) | 265 ms | 71 ms | 7 ms | +| charset-normalizer | 100 ms | 50 ms | 5 ms | + +_updated as of december 2024 using CPython 3.12_ + +Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload. + +> Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows. +> And yes, these results might change at any time. The dataset can be updated to include more files. +> The actual delays heavily depends on your CPU capabilities. The factors should remain the same. +> Keep in mind that the stats are generous and that Chardet accuracy vs our is measured using Chardet initial capability +> (e.g. Supported Encoding) Challenge-them if you want. + +## ✨ Installation + +Using pip: + +```sh +pip install charset-normalizer -U +``` + +## 🚀 Basic Usage + +### CLI +This package comes with a CLI. + +``` +usage: normalizer [-h] [-v] [-a] [-n] [-m] [-r] [-f] [-t THRESHOLD] + file [file ...] + +The Real First Universal Charset Detector. Discover originating encoding used +on text file. Normalize text to unicode. + +positional arguments: + files File(s) to be analysed + +optional arguments: + -h, --help show this help message and exit + -v, --verbose Display complementary information about file if any. + Stdout will contain logs about the detection process. + -a, --with-alternative + Output complementary possibilities if any. Top-level + JSON WILL be a list. + -n, --normalize Permit to normalize input file. If not set, program + does not write anything. + -m, --minimal Only output the charset detected to STDOUT. Disabling + JSON output. + -r, --replace Replace file when trying to normalize it instead of + creating a new one. + -f, --force Replace file without asking if you are sure, use this + flag with caution. + -t THRESHOLD, --threshold THRESHOLD + Define a custom maximum amount of chaos allowed in + decoded content. 0. <= chaos <= 1. + --version Show version information and exit. +``` + +```bash +normalizer ./data/sample.1.fr.srt +``` + +or + +```bash +python -m charset_normalizer ./data/sample.1.fr.srt +``` + +🎉 Since version 1.4.0 the CLI produce easily usable stdout result in JSON format. + +```json +{ + "path": "/home/default/projects/charset_normalizer/data/sample.1.fr.srt", + "encoding": "cp1252", + "encoding_aliases": [ + "1252", + "windows_1252" + ], + "alternative_encodings": [ + "cp1254", + "cp1256", + "cp1258", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + "mbcs" + ], + "language": "French", + "alphabets": [ + "Basic Latin", + "Latin-1 Supplement" + ], + "has_sig_or_bom": false, + "chaos": 0.149, + "coherence": 97.152, + "unicode_path": null, + "is_preferred": true +} +``` + +### Python +*Just print out normalized text* +```python +from charset_normalizer import from_path + +results = from_path('./my_subtitle.srt') + +print(str(results.best())) +``` + +*Upgrade your code without effort* +```python +from charset_normalizer import detect +``` + +The above code will behave the same as **chardet**. We ensure that we offer the best (reasonable) BC result possible. + +See the docs for advanced usage : [readthedocs.io](https://charset-normalizer.readthedocs.io/en/latest/) + +## 😇 Why + +When I started using Chardet, I noticed that it was not suited to my expectations, and I wanted to propose a +reliable alternative using a completely different method. Also! I never back down on a good challenge! + +I **don't care** about the **originating charset** encoding, because **two different tables** can +produce **two identical rendered string.** +What I want is to get readable text, the best I can. + +In a way, **I'm brute forcing text decoding.** How cool is that ? 😎 + +Don't confuse package **ftfy** with charset-normalizer or chardet. ftfy goal is to repair Unicode string whereas charset-normalizer to convert raw file in unknown encoding to unicode. + +## 🍰 How + + - Discard all charset encoding table that could not fit the binary content. + - Measure noise, or the mess once opened (by chunks) with a corresponding charset encoding. + - Extract matches with the lowest mess detected. + - Additionally, we measure coherence / probe for a language. + +**Wait a minute**, what is noise/mess and coherence according to **YOU ?** + +*Noise :* I opened hundred of text files, **written by humans**, with the wrong encoding table. **I observed**, then +**I established** some ground rules about **what is obvious** when **it seems like** a mess (aka. defining noise in rendered text). + I know that my interpretation of what is noise is probably incomplete, feel free to contribute in order to + improve or rewrite it. + +*Coherence :* For each language there is on earth, we have computed ranked letter appearance occurrences (the best we can). So I thought +that intel is worth something here. So I use those records against decoded text to check if I can detect intelligent design. + +## ⚡ Known limitations + + - Language detection is unreliable when text contains two or more languages sharing identical letters. (eg. HTML (english tags) + Turkish content (Sharing Latin characters)) + - Every charset detector heavily depends on sufficient content. In common cases, do not bother run detection on very tiny content. + +## ⚠️ About Python EOLs + +**If you are running:** + +- Python >=2.7,<3.5: Unsupported +- Python 3.5: charset-normalizer < 2.1 +- Python 3.6: charset-normalizer < 3.1 +- Python 3.7: charset-normalizer < 4.0 + +Upgrade your Python interpreter as soon as possible. + +## 👤 Contributing + +Contributions, issues and feature requests are very much welcome.
+Feel free to check [issues page](https://github.com/ousret/charset_normalizer/issues) if you want to contribute. + +## 📝 License + +Copyright © [Ahmed TAHRI @Ousret](https://github.com/Ousret).
+This project is [MIT](https://github.com/Ousret/charset_normalizer/blob/master/LICENSE) licensed. + +Characters frequencies used in this project © 2012 [Denny Vrandečić](http://simia.net/letters/) + +## 💼 For Enterprise + +Professional support for charset-normalizer is available as part of the [Tidelift +Subscription][1]. Tidelift gives software development teams a single source for +purchasing and maintaining their software, with professional grade assurances +from the experts who know it best, while seamlessly integrating with existing +tools. + +[1]: https://tidelift.com/subscription/pkg/pypi-charset-normalizer?utm_source=pypi-charset-normalizer&utm_medium=readme + +[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/7297/badge)](https://www.bestpractices.dev/projects/7297) + +# Changelog +All notable changes to charset-normalizer will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## [3.4.4](https://github.com/Ousret/charset_normalizer/compare/3.4.2...3.4.4) (2025-10-13) + +### Changed +- Bound `setuptools` to a specific constraint `setuptools>=68,<=81`. +- Raised upper bound of mypyc for the optional pre-built extension to v1.18.2 + +### Removed +- `setuptools-scm` as a build dependency. + +### Misc +- Enforced hashes in `dev-requirements.txt` and created `ci-requirements.txt` for security purposes. +- Additional pre-built wheels for riscv64, s390x, and armv7l architectures. +- Restore ` multiple.intoto.jsonl` in GitHub releases in addition to individual attestation file per wheel. + +## [3.4.3](https://github.com/Ousret/charset_normalizer/compare/3.4.2...3.4.3) (2025-08-09) + +### Changed +- mypy(c) is no longer a required dependency at build time if `CHARSET_NORMALIZER_USE_MYPYC` isn't set to `1`. (#595) (#583) +- automatically lower confidence on small bytes samples that are not Unicode in `detect` output legacy function. (#391) + +### Added +- Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase. +- Support for Python 3.14 + +### Fixed +- sdist archive contained useless directories. +- automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#633) + +### Misc +- SBOM are automatically published to the relevant GitHub release to comply with regulatory changes. + Each published wheel comes with its SBOM. We choose CycloneDX as the format. +- Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel. + +## [3.4.2](https://github.com/Ousret/charset_normalizer/compare/3.4.1...3.4.2) (2025-05-02) + +### Fixed +- Addressed the DeprecationWarning in our CLI regarding `argparse.FileType` by backporting the target class into the package. (#591) +- Improved the overall reliability of the detector with CJK Ideographs. (#605) (#587) + +### Changed +- Optional mypyc compilation upgraded to version 1.15 for Python >= 3.8 + +## [3.4.1](https://github.com/Ousret/charset_normalizer/compare/3.4.0...3.4.1) (2024-12-24) + +### Changed +- Project metadata are now stored using `pyproject.toml` instead of `setup.cfg` using setuptools as the build backend. +- Enforce annotation delayed loading for a simpler and consistent types in the project. +- Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8 + +### Added +- pre-commit configuration. +- noxfile. + +### Removed +- `build-requirements.txt` as per using `pyproject.toml` native build configuration. +- `bin/integration.py` and `bin/serve.py` in favor of downstream integration test (see noxfile). +- `setup.cfg` in favor of `pyproject.toml` metadata configuration. +- Unused `utils.range_scan` function. + +### Fixed +- Converting content to Unicode bytes may insert `utf_8` instead of preferred `utf-8`. (#572) +- Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+ + +## [3.4.0](https://github.com/Ousret/charset_normalizer/compare/3.3.2...3.4.0) (2024-10-08) + +### Added +- Argument `--no-preemptive` in the CLI to prevent the detector to search for hints. +- Support for Python 3.13 (#512) + +### Fixed +- Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch. +- Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537) +- Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381) + +## [3.3.2](https://github.com/Ousret/charset_normalizer/compare/3.3.1...3.3.2) (2023-10-31) + +### Fixed +- Unintentional memory usage regression when using large payload that match several encoding (#376) +- Regression on some detection case showcased in the documentation (#371) + +### Added +- Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife) + +## [3.3.1](https://github.com/Ousret/charset_normalizer/compare/3.3.0...3.3.1) (2023-10-22) + +### Changed +- Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8 +- Improved the general detection reliability based on reports from the community + +## [3.3.0](https://github.com/Ousret/charset_normalizer/compare/3.2.0...3.3.0) (2023-09-30) + +### Added +- Allow to execute the CLI (e.g. normalizer) through `python -m charset_normalizer.cli` or `python -m charset_normalizer` +- Support for 9 forgotten encoding that are supported by Python but unlisted in `encoding.aliases` as they have no alias (#323) + +### Removed +- (internal) Redundant utils.is_ascii function and unused function is_private_use_only +- (internal) charset_normalizer.assets is moved inside charset_normalizer.constant + +### Changed +- (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection +- Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8 + +### Fixed +- Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in \_\_lt\_\_ (#350) + +## [3.2.0](https://github.com/Ousret/charset_normalizer/compare/3.1.0...3.2.0) (2023-06-07) + +### Changed +- Typehint for function `from_path` no longer enforce `PathLike` as its first argument +- Minor improvement over the global detection reliability + +### Added +- Introduce function `is_binary` that relies on main capabilities, and optimized to detect binaries +- Propagate `enable_fallback` argument throughout `from_bytes`, `from_path`, and `from_fp` that allow a deeper control over the detection (default True) +- Explicit support for Python 3.12 + +### Fixed +- Edge case detection failure where a file would contain 'very-long' camel cased word (Issue #289) + +## [3.1.0](https://github.com/Ousret/charset_normalizer/compare/3.0.1...3.1.0) (2023-03-06) + +### Added +- Argument `should_rename_legacy` for legacy function `detect` and disregard any new arguments without errors (PR #262) + +### Removed +- Support for Python 3.6 (PR #260) + +### Changed +- Optional speedup provided by mypy/c 1.0.1 + +## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...3.0.1) (2022-11-18) + +### Fixed +- Multi-bytes cutter/chunk generator did not always cut correctly (PR #233) + +### Changed +- Speedup provided by mypy/c 0.990 on Python >= 3.7 + +## [3.0.0](https://github.com/Ousret/charset_normalizer/compare/2.1.1...3.0.0) (2022-10-20) + +### Added +- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results +- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES +- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio +- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl) + +### Changed +- Build with static metadata using 'build' frontend +- Make the language detection stricter +- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1 + +### Fixed +- CLI with opt --normalize fail when using full path for files +- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it +- Sphinx warnings when generating the documentation + +### Removed +- Coherence detector no longer return 'Simple English' instead return 'English' +- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese' +- Breaking: Method `first()` and `best()` from CharsetMatch +- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII) +- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches +- Breaking: Top-level function `normalize` +- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch +- Support for the backport `unicodedata2` + +## [3.0.0rc1](https://github.com/Ousret/charset_normalizer/compare/3.0.0b2...3.0.0rc1) (2022-10-18) + +### Added +- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results +- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES +- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio + +### Changed +- Build with static metadata using 'build' frontend +- Make the language detection stricter + +### Fixed +- CLI with opt --normalize fail when using full path for files +- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it + +### Removed +- Coherence detector no longer return 'Simple English' instead return 'English' +- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese' + +## [3.0.0b2](https://github.com/Ousret/charset_normalizer/compare/3.0.0b1...3.0.0b2) (2022-08-21) + +### Added +- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl) + +### Removed +- Breaking: Method `first()` and `best()` from CharsetMatch +- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII) + +### Fixed +- Sphinx warnings when generating the documentation + +## [3.0.0b1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...3.0.0b1) (2022-08-15) + +### Changed +- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1 + +### Removed +- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches +- Breaking: Top-level function `normalize` +- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch +- Support for the backport `unicodedata2` + +## [2.1.1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...2.1.1) (2022-08-19) + +### Deprecated +- Function `normalize` scheduled for removal in 3.0 + +### Changed +- Removed useless call to decode in fn is_unprintable (#206) + +### Fixed +- Third-party library (i18n xgettext) crashing not recognizing utf_8 (PEP 263) with underscore from [@aleksandernovikov](https://github.com/aleksandernovikov) (#204) + +## [2.1.0](https://github.com/Ousret/charset_normalizer/compare/2.0.12...2.1.0) (2022-06-19) + +### Added +- Output the Unicode table version when running the CLI with `--version` (PR #194) + +### Changed +- Re-use decoded buffer for single byte character sets from [@nijel](https://github.com/nijel) (PR #175) +- Fixing some performance bottlenecks from [@deedy5](https://github.com/deedy5) (PR #183) + +### Fixed +- Workaround potential bug in cpython with Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space (PR #175) +- CLI default threshold aligned with the API threshold from [@oleksandr-kuzmenko](https://github.com/oleksandr-kuzmenko) (PR #181) + +### Removed +- Support for Python 3.5 (PR #192) + +### Deprecated +- Use of backport unicodedata from `unicodedata2` as Python is quickly catching up, scheduled for removal in 3.0 (PR #194) + +## [2.0.12](https://github.com/Ousret/charset_normalizer/compare/2.0.11...2.0.12) (2022-02-12) + +### Fixed +- ASCII miss-detection on rare cases (PR #170) + +## [2.0.11](https://github.com/Ousret/charset_normalizer/compare/2.0.10...2.0.11) (2022-01-30) + +### Added +- Explicit support for Python 3.11 (PR #164) + +### Changed +- The logging behavior have been completely reviewed, now using only TRACE and DEBUG levels (PR #163 #165) + +## [2.0.10](https://github.com/Ousret/charset_normalizer/compare/2.0.9...2.0.10) (2022-01-04) + +### Fixed +- Fallback match entries might lead to UnicodeDecodeError for large bytes sequence (PR #154) + +### Changed +- Skipping the language-detection (CD) on ASCII (PR #155) + +## [2.0.9](https://github.com/Ousret/charset_normalizer/compare/2.0.8...2.0.9) (2021-12-03) + +### Changed +- Moderating the logging impact (since 2.0.8) for specific environments (PR #147) + +### Fixed +- Wrong logging level applied when setting kwarg `explain` to True (PR #146) + +## [2.0.8](https://github.com/Ousret/charset_normalizer/compare/2.0.7...2.0.8) (2021-11-24) +### Changed +- Improvement over Vietnamese detection (PR #126) +- MD improvement on trailing data and long foreign (non-pure latin) data (PR #124) +- Efficiency improvements in cd/alphabet_languages from [@adbar](https://github.com/adbar) (PR #122) +- call sum() without an intermediary list following PEP 289 recommendations from [@adbar](https://github.com/adbar) (PR #129) +- Code style as refactored by Sourcery-AI (PR #131) +- Minor adjustment on the MD around european words (PR #133) +- Remove and replace SRTs from assets / tests (PR #139) +- Initialize the library logger with a `NullHandler` by default from [@nmaynes](https://github.com/nmaynes) (PR #135) +- Setting kwarg `explain` to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #135) + +### Fixed +- Fix large (misleading) sequence giving UnicodeDecodeError (PR #137) +- Avoid using too insignificant chunk (PR #137) + +### Added +- Add and expose function `set_logging_handler` to configure a specific StreamHandler from [@nmaynes](https://github.com/nmaynes) (PR #135) +- Add `CHANGELOG.md` entries, format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (PR #141) + +## [2.0.7](https://github.com/Ousret/charset_normalizer/compare/2.0.6...2.0.7) (2021-10-11) +### Added +- Add support for Kazakh (Cyrillic) language detection (PR #109) + +### Changed +- Further, improve inferring the language from a given single-byte code page (PR #112) +- Vainly trying to leverage PEP263 when PEP3120 is not supported (PR #116) +- Refactoring for potential performance improvements in loops from [@adbar](https://github.com/adbar) (PR #113) +- Various detection improvement (MD+CD) (PR #117) + +### Removed +- Remove redundant logging entry about detected language(s) (PR #115) + +### Fixed +- Fix a minor inconsistency between Python 3.5 and other versions regarding language detection (PR #117 #102) + +## [2.0.6](https://github.com/Ousret/charset_normalizer/compare/2.0.5...2.0.6) (2021-09-18) +### Fixed +- Unforeseen regression with the loss of the backward-compatibility with some older minor of Python 3.5.x (PR #100) +- Fix CLI crash when using --minimal output in certain cases (PR #103) + +### Changed +- Minor improvement to the detection efficiency (less than 1%) (PR #106 #101) + +## [2.0.5](https://github.com/Ousret/charset_normalizer/compare/2.0.4...2.0.5) (2021-09-14) +### Changed +- The project now comply with: flake8, mypy, isort and black to ensure a better overall quality (PR #81) +- The BC-support with v1.x was improved, the old staticmethods are restored (PR #82) +- The Unicode detection is slightly improved (PR #93) +- Add syntax sugar \_\_bool\_\_ for results CharsetMatches list-container (PR #91) + +### Removed +- The project no longer raise warning on tiny content given for detection, will be simply logged as warning instead (PR #92) + +### Fixed +- In some rare case, the chunks extractor could cut in the middle of a multi-byte character and could mislead the mess detection (PR #95) +- Some rare 'space' characters could trip up the UnprintablePlugin/Mess detection (PR #96) +- The MANIFEST.in was not exhaustive (PR #78) + +## [2.0.4](https://github.com/Ousret/charset_normalizer/compare/2.0.3...2.0.4) (2021-07-30) +### Fixed +- The CLI no longer raise an unexpected exception when no encoding has been found (PR #70) +- Fix accessing the 'alphabets' property when the payload contains surrogate characters (PR #68) +- The logger could mislead (explain=True) on detected languages and the impact of one MBCS match (PR #72) +- Submatch factoring could be wrong in rare edge cases (PR #72) +- Multiple files given to the CLI were ignored when publishing results to STDOUT. (After the first path) (PR #72) +- Fix line endings from CRLF to LF for certain project files (PR #67) + +### Changed +- Adjust the MD to lower the sensitivity, thus improving the global detection reliability (PR #69 #76) +- Allow fallback on specified encoding if any (PR #71) + +## [2.0.3](https://github.com/Ousret/charset_normalizer/compare/2.0.2...2.0.3) (2021-07-16) +### Changed +- Part of the detection mechanism has been improved to be less sensitive, resulting in more accurate detection results. Especially ASCII. (PR #63) +- According to the community wishes, the detection will fall back on ASCII or UTF-8 in a last-resort case. (PR #64) + +## [2.0.2](https://github.com/Ousret/charset_normalizer/compare/2.0.1...2.0.2) (2021-07-15) +### Fixed +- Empty/Too small JSON payload miss-detection fixed. Report from [@tseaver](https://github.com/tseaver) (PR #59) + +### Changed +- Don't inject unicodedata2 into sys.modules from [@akx](https://github.com/akx) (PR #57) + +## [2.0.1](https://github.com/Ousret/charset_normalizer/compare/2.0.0...2.0.1) (2021-07-13) +### Fixed +- Make it work where there isn't a filesystem available, dropping assets frequencies.json. Report from [@sethmlarson](https://github.com/sethmlarson). (PR #55) +- Using explain=False permanently disable the verbose output in the current runtime (PR #47) +- One log entry (language target preemptive) was not show in logs when using explain=True (PR #47) +- Fix undesired exception (ValueError) on getitem of instance CharsetMatches (PR #52) + +### Changed +- Public function normalize default args values were not aligned with from_bytes (PR #53) + +### Added +- You may now use charset aliases in cp_isolation and cp_exclusion arguments (PR #47) + +## [2.0.0](https://github.com/Ousret/charset_normalizer/compare/1.4.1...2.0.0) (2021-07-02) +### Changed +- 4x to 5 times faster than the previous 1.4.0 release. At least 2x faster than Chardet. +- Accent has been made on UTF-8 detection, should perform rather instantaneous. +- The backward compatibility with Chardet has been greatly improved. The legacy detect function returns an identical charset name whenever possible. +- The detection mechanism has been slightly improved, now Turkish content is detected correctly (most of the time) +- The program has been rewritten to ease the readability and maintainability. (+Using static typing)+ +- utf_7 detection has been reinstated. + +### Removed +- This package no longer require anything when used with Python 3.5 (Dropped cached_property) +- Removed support for these languages: Catalan, Esperanto, Kazakh, Baque, Volapük, Azeri, Galician, Nynorsk, Macedonian, and Serbocroatian. +- The exception hook on UnicodeDecodeError has been removed. + +### Deprecated +- Methods coherence_non_latin, w_counter, chaos_secondary_pass of the class CharsetMatch are now deprecated and scheduled for removal in v3.0 + +### Fixed +- The CLI output used the relative path of the file(s). Should be absolute. + +## [1.4.1](https://github.com/Ousret/charset_normalizer/compare/1.4.0...1.4.1) (2021-05-28) +### Fixed +- Logger configuration/usage no longer conflict with others (PR #44) + +## [1.4.0](https://github.com/Ousret/charset_normalizer/compare/1.3.9...1.4.0) (2021-05-21) +### Removed +- Using standard logging instead of using the package loguru. +- Dropping nose test framework in favor of the maintained pytest. +- Choose to not use dragonmapper package to help with gibberish Chinese/CJK text. +- Require cached_property only for Python 3.5 due to constraint. Dropping for every other interpreter version. +- Stop support for UTF-7 that does not contain a SIG. +- Dropping PrettyTable, replaced with pure JSON output in CLI. + +### Fixed +- BOM marker in a CharsetNormalizerMatch instance could be False in rare cases even if obviously present. Due to the sub-match factoring process. +- Not searching properly for the BOM when trying utf32/16 parent codec. + +### Changed +- Improving the package final size by compressing frequencies.json. +- Huge improvement over the larges payload. + +### Added +- CLI now produces JSON consumable output. +- Return ASCII if given sequences fit. Given reasonable confidence. + +## [1.3.9](https://github.com/Ousret/charset_normalizer/compare/1.3.8...1.3.9) (2021-05-13) + +### Fixed +- In some very rare cases, you may end up getting encode/decode errors due to a bad bytes payload (PR #40) + +## [1.3.8](https://github.com/Ousret/charset_normalizer/compare/1.3.7...1.3.8) (2021-05-12) + +### Fixed +- Empty given payload for detection may cause an exception if trying to access the `alphabets` property. (PR #39) + +## [1.3.7](https://github.com/Ousret/charset_normalizer/compare/1.3.6...1.3.7) (2021-05-12) + +### Fixed +- The legacy detect function should return UTF-8-SIG if sig is present in the payload. (PR #38) + +## [1.3.6](https://github.com/Ousret/charset_normalizer/compare/1.3.5...1.3.6) (2021-02-09) + +### Changed +- Amend the previous release to allow prettytable 2.0 (PR #35) + +## [1.3.5](https://github.com/Ousret/charset_normalizer/compare/1.3.4...1.3.5) (2021-02-08) + +### Fixed +- Fix error while using the package with a python pre-release interpreter (PR #33) + +### Changed +- Dependencies refactoring, constraints revised. + +### Added +- Add python 3.9 and 3.10 to the supported interpreters + +MIT License + +Copyright (c) 2025 TAHRI Ahmed R. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/RECORD b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/RECORD new file mode 100644 index 00000000..123058d5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/RECORD @@ -0,0 +1,35 @@ +../../Scripts/normalizer.exe,sha256=B9FVRpsVKfdVu0t86sGMP6U89_2gnV2t3nTIMynGRcA,107925 +charset_normalizer-3.4.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +charset_normalizer-3.4.4.dist-info/METADATA,sha256=Mg5oc0yfpVMtDcprHt_pPbbV0qUSHEeaEz4NG53pmyY,38067 +charset_normalizer-3.4.4.dist-info/RECORD,, +charset_normalizer-3.4.4.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101 +charset_normalizer-3.4.4.dist-info/entry_points.txt,sha256=ADSTKrkXZ3hhdOVFi6DcUEHQRS0xfxDIE_pEz4wLIXA,65 +charset_normalizer-3.4.4.dist-info/licenses/LICENSE,sha256=GFd0hdNwTxpHne2OVzwJds_tMV_S_ReYP6mI2kwvcNE,1092 +charset_normalizer-3.4.4.dist-info/top_level.txt,sha256=7ASyzePr8_xuZWJsnqJjIBtyV8vhEo0wBCv1MPRRi3Q,19 +charset_normalizer/__init__.py,sha256=0NT8MHi7SKq3juMqYfOdrkzjisK0L73lneNHH4qaUAs,1638 +charset_normalizer/__main__.py,sha256=2sj_BS6H0sU25C1bMqz9DVwa6kOK9lchSEbSU-_iu7M,115 +charset_normalizer/__pycache__/__init__.cpython-310.pyc,, +charset_normalizer/__pycache__/__main__.cpython-310.pyc,, +charset_normalizer/__pycache__/api.cpython-310.pyc,, +charset_normalizer/__pycache__/cd.cpython-310.pyc,, +charset_normalizer/__pycache__/constant.cpython-310.pyc,, +charset_normalizer/__pycache__/legacy.cpython-310.pyc,, +charset_normalizer/__pycache__/md.cpython-310.pyc,, +charset_normalizer/__pycache__/models.cpython-310.pyc,, +charset_normalizer/__pycache__/utils.cpython-310.pyc,, +charset_normalizer/__pycache__/version.cpython-310.pyc,, +charset_normalizer/api.py,sha256=ODy4hX78b3ldTl5sViYPU1yzQ5qkclfgSIFE8BtNrTI,23337 +charset_normalizer/cd.py,sha256=uq8nVxRpR6Guc16ACvOWtL8KO3w7vYaCh8hHisuOyTg,12917 +charset_normalizer/cli/__init__.py,sha256=d9MUx-1V_qD3x9igIy4JT4oC5CU0yjulk7QyZWeRFhg,144 +charset_normalizer/cli/__main__.py,sha256=-pdJCyPywouPyFsC8_eTSgTmvh1YEvgjsvy1WZ0XjaA,13027 +charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc,, +charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc,, +charset_normalizer/constant.py,sha256=mCJmYzpBU27Ut9kiNWWoBbhhxQ-aRVw3K7LSwoFwBGI,44728 +charset_normalizer/legacy.py,sha256=ui08NlKqAXU3Y7smK-NFJjEgRRQz9ruM7aNCbT0OOrE,2811 +charset_normalizer/md.cp310-win_amd64.pyd,sha256=KAHqgVIA78jiLnBisFSMqysM6DaTzQ6jbKZ2VC3UanI,10752 +charset_normalizer/md.py,sha256=LSuW2hNgXSgF7JGdRapLAHLuj6pABHiP85LTNAYmu7c,20780 +charset_normalizer/md__mypyc.cp310-win_amd64.pyd,sha256=_dQKxKIHt5ffvkBSkAIGxT_fRSiEQYnukou4-M3kz8M,124416 +charset_normalizer/models.py,sha256=ZR2PE-fqf6dASZfqdE5Uhkmr0o1MciSdXOjuNqwkmvg,12754 +charset_normalizer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +charset_normalizer/utils.py,sha256=XtWIQeOuz7cnGebMzyi4Vvi1JtA84QBSIeR9PDzF7pw,12584 +charset_normalizer/version.py,sha256=MhW8dOLls4GbbxBUqeS1huc7Rth1ArKi4nS90qTFwz8,123 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL new file mode 100644 index 00000000..2e7bc7ff --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (80.9.0) +Root-Is-Purelib: false +Tag: cp310-cp310-win_amd64 + diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt new file mode 100644 index 00000000..65619e73 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +normalizer = charset_normalizer.cli:cli_detect diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE new file mode 100644 index 00000000..9725772c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 TAHRI Ahmed R. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt new file mode 100644 index 00000000..66958f0a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt @@ -0,0 +1 @@ +charset_normalizer diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__init__.py b/ocr/.venv/Lib/site-packages/charset_normalizer/__init__.py new file mode 100644 index 00000000..0d3a3799 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/__init__.py @@ -0,0 +1,48 @@ +""" +Charset-Normalizer +~~~~~~~~~~~~~~ +The Real First Universal Charset Detector. +A library that helps you read text from an unknown charset encoding. +Motivated by chardet, This package is trying to resolve the issue by taking a new approach. +All IANA character set names for which the Python core library provides codecs are supported. + +Basic usage: + >>> from charset_normalizer import from_bytes + >>> results = from_bytes('Bсеки човек има право на образование. Oбразованието!'.encode('utf_8')) + >>> best_guess = results.best() + >>> str(best_guess) + 'Bсеки човек има право на образование. Oбразованието!' + +Others methods and usages are available - see the full documentation +at . +:copyright: (c) 2021 by Ahmed TAHRI +:license: MIT, see LICENSE for more details. +""" + +from __future__ import annotations + +import logging + +from .api import from_bytes, from_fp, from_path, is_binary +from .legacy import detect +from .models import CharsetMatch, CharsetMatches +from .utils import set_logging_handler +from .version import VERSION, __version__ + +__all__ = ( + "from_fp", + "from_path", + "from_bytes", + "is_binary", + "detect", + "CharsetMatch", + "CharsetMatches", + "__version__", + "VERSION", + "set_logging_handler", +) + +# Attach a NullHandler to the top level logger by default +# https://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library + +logging.getLogger("charset_normalizer").addHandler(logging.NullHandler()) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__main__.py b/ocr/.venv/Lib/site-packages/charset_normalizer/__main__.py new file mode 100644 index 00000000..e0e76f7b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/__main__.py @@ -0,0 +1,6 @@ +from __future__ import annotations + +from .cli import cli_detect + +if __name__ == "__main__": + cli_detect() diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62c75fb9dafb87dbfdfeba3b2f45e4683c75f6cd GIT binary patch literal 1633 zcmcIk&2Jk;6kmVDA7i^s(-taD!zr=UIM5TaN`#vR)l%Z1Bn4?@X&CR0z0=I@tY&5% z%mG1##DBoKIdTg~6%m5)FKn)R<Ixc-$v_{4Dv`g>q}$94RIUlfI~=oSl>FNu;{^2`2`D2Ge#Qdn^-Vb!gMHMa)m zWxpcoA#zd9S4AUiy3MfVwsN^9ZiTnq+c{qs%i$gOPPpQ(fQ;O`tn})h-#96}x)0nt zC(cO$^rZu*-ArDV90zR$RB2|`2U3Mp@UNLd-~8)ChXKR;j0*fISK8p`5uY-pL0(+N zPnlt!k*b4wSn!deYKBcf4Gx%yHJ-@?D@J{6*jEORl?*YBa1tFw@;JiYJU(WTCw(4G zI%roKKBb2Fcr?q8eP$lw!+>iXQ}2jQ7zWm;8CYW@!MB!T${?gY&PX=dI10w0{44^UhbEAhA9lmWi1@`TMJ#y#8!$H8ErI(Q3Q>7R`uhLnaB+7SIA($12w@O|(&KS7y2T|Avdu z9<*C&95U#V51okodEMttp;O8Q9SMflp~3Un7$?wtUwTQ%B0~+A5rP?g92gVp?#9N1 zn;;o=JQ;56C0a4FakFWg9n|$?JX3rUm@Z!P+W652k3O^m*9$_J*u&nl{XXgn?y*R- zF5c}QKFk5^^tZML2iy6Kg?6N1r~#txpf~oJXcw{ujUqY6r3Y^cR$0!FU6=WIWYwG> z$5}mRVrqh{&NUhF2sREpRKO=JV!N0%7pu8TjTdCMu1idV2TC1^9$Q_WDEVsbOczqUmslkA|8Xw!V0)^zddWHVEMnH-vQJSyp=t e$s~ep+Lr5kK*~<@ey#YR*eom;>|ZWESpEkf20>B) literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ccc41e0147578ed8cee4a7b14e0dab75a542a1e5 GIT binary patch literal 322 zcmYjN%}N9@3~oEKI*z*+!H1ZG<6T4)y$GTQ5n(CRI*n_0`ZKhh1-<$XzJssStEYVh zFWRmMevsr#@{xqt*{nth+wXhQr}&wZ{~#$jMF{&g5rG6&NaH!iNDxsdqKkQf5tO3r ziQ9+b4W-WHc4N)fI!|hF+~vmDz=O2LukmlK?v!K#0(2o(jA!}$@t^WZ#PF2R}wy#U__JJ6c}%sp2M0z12;wsW*y zfmzWj`AEGCa4_($=L_((d*;q3nXyiDC11fE{+-kgFR?n-R*VWx^6fr9Y>K9&A~i0* Fe*hjhS6Ki6 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0269b79c401de03e4bb5be0718da331435907e13 GIT binary patch literal 11808 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4144872017e8955f8f031346d95ea6f5ce625bbb GIT binary patch literal 32540 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9572038ad81103fdd38c2bdfe7cef29ac03a154b GIT binary patch literal 2293 zcmZ`*OK%%D5MJ&>TCFA9aS|u#10YbKiGbKedueI}aSU5|G^w2Wfue%Y#cD~(YweN> z$+aUx&Y{jJKcGOH21t(mDFxa;u-Bdf^w4vP!W~j_>_baK;ElR)$&#Y1&Th%xO89+j7mflX_XHRRY>2URuulmT%}% zTFHV|kWICwkVPHw8JsPr)vVU4A?vP1d{TL4kqWIHIj!kRKrWJbGDpro^I9|H!lqTf z^hSGBN5xdc7*~->IFog|sBL}ws1dH-Ypg!F-@IEmD{Kft?tUcL8#F!$5V2bJHlRZtV&Alg1FH+G2Wtt|GDP7Q!3LFisi%BmHTZT zi}vCkWqa+1NvACnMHdE9+z0<;JKl+e1Tn@%7NyAn6`!QE7sbQH!B9+rr5gOC4^v?I z$VXLVxOWO)rzF(TdL}u=1-ZlXl!SsB*T-54x5If_l=_g;o)o$ki;|!!7c92n<7AY9 z(7y*dB^Xk#tdV_$#Ce4XBK9j=IV1a(``S7}uh9!g&r9bBN?3U#OO;f)YaiM2BjpoU zRYoB5!g>j(zenT!BU@ZoWz9ddRG`;aQ?IQ`ZV3*NfJHUi2O6ZRH>|_b zMAuW0uJvv4R7=C`lIhPa@B*2W&quC0w`Ymx>fFe^qWSK~0}V4jJ5Y?X(U$;VfMMty z5~}bRa-31M!-?5hql(4~s~w6@Dirgs`R*l95m=`VLlU8M7x8_C$2r6uiZd=%I>a3) z6v!P}h^ba4C%r ze67h9=IqojqbFxF9}Kuqlz?wIQFUW%YbTMoo3mIq4h%G*13}|Ri$#o_aXXj5QXFSV zPrx=F@*J!RzN>MdkxbIzbqv=~Ut@y<;c=c(HttEd%Y`x6%>{raaKeBCae>)IxatZI z;A%540cdUOdsd^-fQ3JlPF8r1jos-|GGS& zV$<9yyidWH0ceurlWa<3+L-#^2`oY^iGY*}omWBy!2UQ-z;_5-E*l*O*CwrC;j|TC zl1KsFKmf|3XJC@}>RWXE;KQo`%}K$%OAHhtz$N_5 zUzY{en{FtRUfmH@_z=^2nt`c4S2z%)@QlbVPgvomiByH#r$bo;iAmCO#^j>?;{s7G*zvLqu{($RMk#En#-mDEg zM{`U6hy_s4tfM=1f9!{jXY9-sO=*uzD;Do-N_YACtbT*KIW%T?gM@**1X07~75b?h zcWz%l%)pXkJe_Ee7*txmzEJ?9GT|E_TIa^cL;6HfCiR0a^gk-bobm7s1m;OIIQTcm b58*BS{7cQRTC;W)VxL8>Q-wI~^6c@y@xFt7 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..011a12dc6ed7af068a94ec6d23ad0fec6158b0f4 GIT binary patch literal 16048 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1029bdc2b9808296c8f0c1c599a2a48f6e734729 GIT binary patch literal 12201 zcmb7KTWlQHd7d*fd*zZ`(Ih2GvOSjLNNZd4C9&f;vMiaRWm*o3u@krf8G2Qd<;NAM#QZXbbeEDA2c}DEc%gP!xSA{7|5P5ujDk zxZnTJWiMPN?Gkf%&Yb)Czw=+GH91+-@XLK~rv4AlY1+S1Ven_5a7NRF|Ch)}O^Sxr z6jdQ8uQ&9jQ8hSkG|XnEn&G_J$ToA;9OpBQe6vt3a6a28HYchR%~G}0oUBeZr>awU zpOg8Z_VoFY<#WY$RmE|?9a^NG{RYimoj_0)kC#bhPAH|&0s5`z( z*{r|iJpaOr$Yo@w*``;9-&wDip>fu`73Nn0S2;mTh2~pzKL|5dI_-x0k)UDq@X^c5 z_S=`%)>dA7YuR32UAlB`W%azhvU+Z1>Fkx2ORHh|%B4&8Yb)pNwdHrNqQP>-2n%(` zb8OFPy5W4?x0{_tP`B4_1+MLSwU(@Vo8e@~t0U{$%JDYc8f{|mXQFV1$nyr);c8VO zwW?ka1tHJNH{`S|-^o-Bxguxf+#R!OA~!D&BA0Qq@=bY2F5EG9MKvcc$iwmo-sh1! zDj!C!Am5UYN(;Fn+Fp>4$z$Ah0;P-cQ}PKel~7uhpO(kDG|8nCvcjb)Zuz8qic8Zd zU64=9lUypJ^rl>t&v5Agm!6f+acPE2&&$tn=^-wCR=&WcS(Glx7v<-;G>6jL^7Ha# zF3qE~D!(94ap@pR7v(GRG?xx>=~a1#OAGQHd08&Wb2y#DsJS4Q-coDJRUo>{6XMOZbcyWJj%R*Q!~|B)T5Wj% zOIx{avmMlLxHj4~9G=aqzo>8t;i%vC9c`DB%0p?@M}9K`Tx6z%?wr|pq5nYM?J z?uR+M;W{^5zd9EUR7;L1KHF)#)d||2Af3CMyhtxk&c>n9EjnnAKe0+aG<~dc! z8`x)8uC;3F+Tsn@yK(KU`ua7$9=IplPHl&%eXSN@%l2BT3HH-<)iX`dy5TRj!Dei` z?$ra^p2BQCEhJma>RA#0QI4OY-klo+>0;6^%(Mc4Da^Lkx7}J0W|bRslvg7#BtOa% zXJ>GnMkW9}0Hr2+bCl3N!hA}Ti473MRc+8ExUZ|HsL3;w(CJ3WN$QccZTGruKZ(3g zBC05gVoI3ekmx=%vTtfPv_0aA>Gr;fLb|#&&L31o@qedN~<)2X_Sd0uHFKL%ouNqq}2t-zi%0 zZ>0$t(saGRl~&NQn$C`E`7K37=Y~^nIO`49>a<&)HMnQjw*aW7znG4*`IXrpo&T5a zomb<`cVDd()$`an6Cx~r(P?ztWu+j!3}@XBGr(ZW4-4s~3XO*ADT{hcA_>a_!l>f| zwiUBat7@6M+p@l~5wWf6Y&z1w+c7k40NKzpG@tHS(KJO_FN?BK5@j)k6o2|2`cj`7 z$=T#bd7?4Hm#(Q4fffL&y8tX`t!?YO;)r%A;#8YaxBqyxVyG`5&#(*)<=nh4qCE{m zPn|-e^LTu^CWrOz!-HqPIC?Pquk0AQV=YjXI=BY3zHM;dZ9|G(;=f$Smj|i`_*5;x z8CTFJx;GZ(9;4({N`}`6?nu1NwlAR0&mt-6GvE>3*`c+@jrJ@tgAROnL|t6_i_j#&Hgt*U@KYkcghFzO6|PlJ+aV5x%Xk-DYTLXA!hZUnSfzM@lPUQ`V`k+&*nNzU5fZ^qM5>t=0xggZr-J`!`8_4hsph8^pN- zNIM(C7t-F2==N!@blQ*vQoVq}DAh`s+)ie?f(CvW$&Ap!*i4~+Vt$g%mPL1AaQel; zK6@xhSAi(`F=2q{xTf6~s}->?a+qc|8h=a&oE?=S37>vYXh6yR5-|4O(40h(lq%;? z*wk+0%H0+Bv~${f3)l49`fXybdQS(1=6XaQgD7#G7^U7b@b*!DtH*Ci;S${sQ&zSd ztG*WL#g?O7YsYKd^Z-1tNADKDe%k6l)NES8R^7L1txiK)TW+Im-Q03L%Xb}B+oEca z$y#~s;!7{Q5Y^O!$n0kvHansOn{-(J?K2jl}|GsQ~KYmHySYr(piti z^gq_8f0%LnTD@M)Eqj|d`z@v|$U2iUfMjugIM-ZH&8fcW)SY+>wxwsi2DgO_bMX`q zQbfLRj=7<|?%Erw)wFAosZpJaGXplqVoj=_M;BG4WSSBd=cFPf%3i;ojiC`8B%dtx z19XW@m2A;~N@wKF(kFRc|DV~cDf0T%sE|qe4FP668v^=|(bC4j^7E+p0aY@Sn;8Nn z_S^FJjGqFM>?#IiCbny!{iMJ#SJk65EML0`%Dqd;xFx)dio1AN1?$ed^0Jk4>x4RgLnr>#-9bNJmVJ^*^DeE|Tseh6b{038dk>(TAkV!?j>ub{aXgqSo^F|k-7ULJj~3pnGxX#tKh*5 zF~u(pE_YZ5+83#$|BXGDe4_LH8MR=z4jb=D{hm`u5c@Hi(Gf_%0tFeB_x077dqif< zzO$Fu)e`Hsf01k*w{lp|9BehT4q8J3R{snNbaPtyu z1a%`<3d}@y4TL5E6f=_ZqzX@AB%C4_vEN^lVn<3L9saM-Jo2T$gEXTbLOQ~%(xyX4 zL3pR5SRyqg;hdX5VXU$-g%9GSptSu{dP}d2)7BCx2ifTaR^-5AIqJUe)Ba%a8}+jq`Ym%s#^lt&!9F1NOOchjMu+I3uZ_&TKB~v zaEz7b;}ked@EAr>`>_Fa4Yhxp%yTH$J@&Kb2{WBw!+wbsgCXOb*g+N#4nX*%aejkX zg6IHWl7hw?oTo$ z6Cq*64)xfA+=LI^vjRs^+l1tc);V{>AppW(aP`XTCtvC#3ZWni`d>@=7OQ-KqhE(j za?7f3!lBF4M2IFk)>YQ(r7KuOyW!Ma*&k*VcZCl3P#r?2jXNU8@Zj} z9yk5AFV z8)p%RWK*|8Mn~f7KqEu}eR4kG?TJ3JD+#C<5g!6*`|Pn{!G`Ih4jxdtx#|NXVPVUC zA1bAbgBqvWl3VZJ@i1E|XS#=mNIKxfhxdQAG8KhT0MocEfsO~@hDRwPL#`;>4vV&pKuxDX`I2p4hYumDQH#{`MM_>l66O;z!oFm6 zmMUJO!fgA&qN)fOc?lw7BT*f|q2a=`X&GtLpX z+4nz*jQ?{;@|vF4Md?3_M~gXq9*!uZ2y0EBCkpR&&r-t#LqCGq8RA^)$RvSjDG-c)1YzZj%p&w^N=p`Gk;2gkFH^+ctY+mgc|gt} zmy?gjVe34?%?ITnyer5j;y`r~xhPOQL5_sVr^Bg1e7b)3Px+25wY%kUz zaMZ0K?`{-HfjR-^5HW8V^L{d*t>%#90OEiyR|65={>3^A#idb4;KpH1;{@D?irfqp zYrPZe9pq*rA;F;@c$?W(&~WH-le?%T<4_JF&5`EgKUmmngv8Jh~4Gh&bX1!R{i+(khalfebx-jAWnD5mG=@6(M$^?~{Lt-x+xKcmS^y zqBuH~J=DVSJpsK$^z`ivd{W1Hx{jT!Y1a=1*$+iU@BaB-cJDxIfCtEB_*pKn35deQ z4FjKCnsxdwNT{Xyz}VvcwzTpuV)yQyzu{5|qEy#d9Dbckb-6FCBs z9+}7cq6wii#6E3%npQ+36-Ue>UI8~@X|(U`s*cWTo08w8WQS z3LO~{H&g?!POS!BOW40f+BKt3LH{Aswhz1|2LYeKUV|aJezWdLG$iI4#oTBX{`|l? z{*~LuY4~AwwOW~GIP?AIP@XzRgknrDQ;y@qENw|{Mu;axD3Z!7yeXL!FO zfLGKO->+%RnTr_;^D)FfnaURNB|{MrTm1uyeGi940k~*G4~DeOg#Tl}^hfy={S-m~ zi8O!6s|o2i_{qUqWUa*U3KC}fjp07;ubS=lWlI_Pzeu#|Fi> zFy~mLo9oalE3|pi+Or7t<6aHz2iv4J``#xuDWE%RvDW-{3bxCxgag#U;v(_+w1sd+ zgJpB{0^sq36O~19!gj!Mz}J?*-W(ra{q?s1&F^>iTYiR5gU*H1rc|dH?B*&S^l9dkA~rgSSK?`ij-%>(r`mU9k4d76+-&VJZ2jj3x+6 z_{b6rCyL+HN@$S$D4$*T%mTp zS3p|mO&~3%noMOv{VqmScPZ)X{=Y}XkuCIf|9hwf)mfx+@BeE@o`rf3P&`%TULiQo zqcS^{eo>ZuSw`3M$X?ovsCZKn->J}N0Z&`-gzWW;(?J5g!haqa;zf8^Ny2~nE&v}J z;=3_~_VD0y!fo;(m-|!#MuJ;kTv~1gcm-bI!F%hQP`st@T!ZiG!m-0AC7&%69%$}#`xCk)OXqT&>7lN7i-G%)>eNlZ;EdcO*$ z0n2-%gU=XYc`G`J>VcFEzq*e0<8Gu3UB>h1uX%8|sJ3 zVHlOCq(BKxT+P=YAD}@5>|~0*goBr^-iV!H)6|lP9cd869V4zqM^v3!N`hGz$>*fl s$w509x8*Q@D)J?q#1AXP!t9F+?S$29|q_{(I-FkAwXNGiQVr%Ls6s@ zHz6_qob#Xi`S1Vu{r$RxU*->o-Ln@Y=|8B_{nJo+SCZu57m6e?iOHT+mrYrwvf?SG zBHpU0innHJc&lEjo;K5>kLG3SSu-ojDKA&oOQFct=p6}i2}whQ+Rdsg6{>%u+9 z41qJcaL=>v3EcBtxEI(-f%{$;?i4#Ma4&S>&akrrcd`ptU@r>XsV>}0?3}=z?!ujC zV*+=k3->a6Mc~eM;V!UO1+Drr0#bTwo!4pUndMDr>PSn?va} zcHL2Lzs_zfs%({+>_hZ>Bd4&t>?5|smQj0?DOIVk_K>)=Ajf@nqv3~k==zPIg8Fc| zQR7bCX@s^n;naNQa9}gG=h}f2pqTS`%c|M6Wry&KZiCsLNBGN5!{K)5Q~#%?TVCic ztcA|O=^o0oawZ-qRmNu~%9YF3baD1-H6AG!D@Ch%{o1ve*}2k$RV`1Kr;4-jbF(Gu z+Dx@tzBE;`I%CR}iSl@Ht~^tTN3U1Pn5ksV7Au!aRcm}^`ck=4nuwp^Do#z!w5L3ZIi_bS*7$o@t??_x+2Z(IX|_rS zuG=34?z$7_YRfjaYoWtqH3)f}=1$n+jaXaoeXmAG-2FlDr7WItQUeTy^-L&j$&s`z zZ^$>LhOSAWvUW(8=>Gv!L{+*A9`im?uFdw*~bG~WUR_rAwm?x41=+^Lg9Spnf@RwVm>jh)YwRpe{EW1_% zU$^YgVNYSn;4FZm49IyoEh~?+D#5g(JW8v|*J(}pDxFgPH=R~?(i!D{__OHTLsu0D zQtyJUV<_xVHIjo|1S&-GmcnGvSqarpixj3DhkD;sHbLWpR@spaPMq>^2%wPSqj<&r z3{qEb`ZyYHCr$-T&kbX>whTsd8(~2eS7_?H-5eID=*9zajR|;0Oaw9ZSDp5$&jS^Z ztxYfQ{iDX6jPbH@9zr8ot$*MowVTt$DUuZ145E+)5VPBRCDCF%!mr_HEI z>)V($$OB|kLrPZ8f)O;8zXU|jopg)xmoK7qUEd@6&9=~1!4(kbBfSD$P%D#WY6=>w z!bdQYpCCY--$k-4nAC$VZcG9%_M<3yIjiO$5o>ayVb6YuJ{=mpipt(@m`sX*_mQ>_ z6+t-#3@EiEew3+IiGdx3qDWO@`P$rM+;^?jsF84xOsWYlW^0g@C7-W}s{mF=@9^Gz z@3zN-d$@1BZW6!d-U2gpz5xJT$$}rVZOGpM>d7a(^bIEr`V&>j2kBJ%PI{baIBAMb z>Kl>F(ktjw$l%1)Sgy>0Ad^rPfvHUS{1r^j=??c3C5NpCYxM=+`wg_VcRkeE^^n4e zdwO#TLJh%7HC*SckM%ByCCC7!|<+fpK)fI1u&3 zPPOgO2o9jN+2$f?h!)N9pMU=+JMv3A^2Htbow-;xFA~yJt}#45o*INV;|2i~wIdjd z!&Qcc5bVTXLwWyU@^t4;6BZW!#9ed{r=d&N6`bZr!1SDkv}orvq)n640Lt4E5&eN& zDJZlF&%X~ed_ZrH!3_A3O+-*Nt{#ku0uZ=HVy#(xF#|50cD_rBZw=_~Nyu1`IA z_auwUupKS$i_Y9vzuVl}+?8Va$uol^tZ>tI`d)EO%fQ+gldfgrZQ!UWqd+&e~o056}^`ndAh*v&y}*gjnaJCcpSE zXb5Om%DoY3{X7oU<5ob2L6tL`uZ_Lq`8C@ME{=7^Vj0zLtZ_1fyxLhol*BS8o;=+@ z)4FuD5ryBttLMl)R5^>*L>V%u!RDd(@@@2f=sAG zMsOF_!CC$t>jkF)bd4NE{Nxj|_9&mC+K@by$|8QFM|rG#t)+PbT_4^9;3Vw_1S18c z;3ETt#MfyKhTtYdYVdXbSo&PqmTx0k+oUv!y8gbP;|+(qi))4(81^o?YF*SKbe%FD z22siY6B`R~9~er88yb|@5HXIJ>tYTo$GKLxXubBTwSXXnif>ziyA-FW_*T+*;Y~Eg zX~JB1vxD*=GopWI24F;|*IwPxcP}^?E2M}8g4ROKvx6Ycxdt81u@>1`STQcE{dqL z9eEBzl_#<1_r+D08RC5+oZWzMwPmqdzWnl~nQ4--B^Q|lV^mziDM=((q zT&yc;aI`MtG9M%S)c7Z~@;!i_d&7|ZHWv=NICbSBX-yswAg5Vu0c5?mTTb>QjLT@S z?6*8-fl6+(YfEQoOEgVZ=9_rU#hF@D1k-Vv`qsi8)l5{RXPi_sc{Pcx*%EdcsuU5~ zmMT=~Ks#F?K{R_83Zu3UPb}|iM2o|#A|Ee zGGwZg;OSDCB8PCc;)kN65V@ZGLSc+AV1K*@u>Q>T23a#B^bO?glKg}i0_Vp#vm>8D zHpZpiw+YYzg%0G$Q3CBhCB)ANcmyci+E4DB;0)T-Il57Dgoc!%6sao8Eey$;!aoBN z)|FU@I$CyjWg$*2dcNIz-K07?Li0;hlE5;^lF)3*Nnp8Omysw5?I!PPHwaN;6=m2y zRoF*)BgJ6pK!o%roT*z!H!`rMnI+7+k%fIsN7-#TN+oaD!eRtl`IfYizH<(x>{CRn zTxAJc5p>1JjaIhfBThF$cc%KjR{L~Fhy=Kh^2AY z4h-^35i`T`2#-T7M0vMGO1&VlWAvP|t?*>tht0y<>)i8!%YhBp8~Hw64!IB6H2k|q z{MRU&A}Q3Hd|fY`ItyPVbn8wbK#K9ySr2(Yk6683uRB420~Z3g9n=)}Q}AJjLMt_v zVohWv=}vcl#QYrr_yH=Nj2CPIk`+j{%7lZ?5pJD^GV(v$0*@YW+Nejz;m3D~jOQ;c z!Rd-~OHMe2GV%j(P{XNYN7ax!cKr%02#jT%M+4=I?2t15xxJ!pGuG||-60I=?_zuW z_WTcc41zaV_2G?Nl#O!utD_RR z?HhWe2lzrsbc%Elq~%1JdNC#<1gPaBB^Jde565DrNmlLSy6se z+Q>)w+X(-n48OwE1`=8XMTR7OYShHQH9pzrWFAGmc!f>xQjQ=EPAvn-{%J6v zSylTt{@0iYN2i=LKTLphESZY7m_e_F)k;d(tLFOhkrjwvYSR;yjL~xoc)E+EE zec#~3I}~1H(sv_S=pN0mudh6ZMTA2k8U&%~49P&kpfdOS`y@Y@(0E zc%hU|(j=srx@P))s=f1UEO3Iq z=)RIe{S~e9R;*jrVhg^VV_BSRXW|L`0hLAp;xt*rS|Hp4^Uz*s)BYAM+_E?)OdGzr z20TTB6z+)7Hcp3YO=xwVA?#oh!cYVwCKUmXnWa2CLgX;<^vMc}h**4NO7b$Ky^<`} zvs5}wfIbU}Z!zL?g~i}WzROkK(Z-XlOMNbk|QE^ zO`M`nsJcnuGXmsm2s;~V<;vuYFa(1CyQJ=E>LYyn>^n(pcad~O@S6a6`Vt_bWXMtS zS59i#KDeWY@aTB@@nrD~w4WT_^l0t(ZhhZ7PwjZ}de+Fx`VoCNujz+$2rT4O&VQ|p I4E^{20kjt(cmMzZ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9997e12623ab3ef6e7e57c438d1df3e66540919 GIT binary patch literal 324 zcmYjKJx{|h5ViBsl$0XGFFG*T4f`!9T}Tmsul*8i2TTZQm~lJZg~#bA9a)@Clb($z?{#62rZF!W+VWUffsf@sNg@j!H8;IL--iY-8s{D~>;WJ0Qnl|={YXp^1RFSdVL UN#2xjhFzxayAq)7An CharsetMatches: + """ + Given a raw bytes sequence, return the best possibles charset usable to render str objects. + If there is no results, it is a strong indicator that the source is binary/not text. + By default, the process will extract 5 blocks of 512o each to assess the mess and coherence of a given sequence. + And will give up a particular code page after 20% of measured mess. Those criteria are customizable at will. + + The preemptive behavior DOES NOT replace the traditional detection workflow, it prioritize a particular code page + but never take it for granted. Can improve the performance. + + You may want to focus your attention to some code page or/and not others, use cp_isolation and cp_exclusion for that + purpose. + + This function will strip the SIG in the payload/sequence every time except on UTF-16, UTF-32. + By default the library does not setup any handler other than the NullHandler, if you choose to set the 'explain' + toggle to True it will alter the logger configuration to add a StreamHandler that is suitable for debugging. + Custom logging format and handler can be set manually. + """ + + if not isinstance(sequences, (bytearray, bytes)): + raise TypeError( + "Expected object of type bytes or bytearray, got: {}".format( + type(sequences) + ) + ) + + if explain: + previous_logger_level: int = logger.level + logger.addHandler(explain_handler) + logger.setLevel(TRACE) + + length: int = len(sequences) + + if length == 0: + logger.debug("Encoding detection on empty bytes, assuming utf_8 intention.") + if explain: # Defensive: ensure exit path clean handler + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level or logging.WARNING) + return CharsetMatches([CharsetMatch(sequences, "utf_8", 0.0, False, [], "")]) + + if cp_isolation is not None: + logger.log( + TRACE, + "cp_isolation is set. use this flag for debugging purpose. " + "limited list of encoding allowed : %s.", + ", ".join(cp_isolation), + ) + cp_isolation = [iana_name(cp, False) for cp in cp_isolation] + else: + cp_isolation = [] + + if cp_exclusion is not None: + logger.log( + TRACE, + "cp_exclusion is set. use this flag for debugging purpose. " + "limited list of encoding excluded : %s.", + ", ".join(cp_exclusion), + ) + cp_exclusion = [iana_name(cp, False) for cp in cp_exclusion] + else: + cp_exclusion = [] + + if length <= (chunk_size * steps): + logger.log( + TRACE, + "override steps (%i) and chunk_size (%i) as content does not fit (%i byte(s) given) parameters.", + steps, + chunk_size, + length, + ) + steps = 1 + chunk_size = length + + if steps > 1 and length / steps < chunk_size: + chunk_size = int(length / steps) + + is_too_small_sequence: bool = len(sequences) < TOO_SMALL_SEQUENCE + is_too_large_sequence: bool = len(sequences) >= TOO_BIG_SEQUENCE + + if is_too_small_sequence: + logger.log( + TRACE, + "Trying to detect encoding from a tiny portion of ({}) byte(s).".format( + length + ), + ) + elif is_too_large_sequence: + logger.log( + TRACE, + "Using lazy str decoding because the payload is quite large, ({}) byte(s).".format( + length + ), + ) + + prioritized_encodings: list[str] = [] + + specified_encoding: str | None = ( + any_specified_encoding(sequences) if preemptive_behaviour else None + ) + + if specified_encoding is not None: + prioritized_encodings.append(specified_encoding) + logger.log( + TRACE, + "Detected declarative mark in sequence. Priority +1 given for %s.", + specified_encoding, + ) + + tested: set[str] = set() + tested_but_hard_failure: list[str] = [] + tested_but_soft_failure: list[str] = [] + + fallback_ascii: CharsetMatch | None = None + fallback_u8: CharsetMatch | None = None + fallback_specified: CharsetMatch | None = None + + results: CharsetMatches = CharsetMatches() + + early_stop_results: CharsetMatches = CharsetMatches() + + sig_encoding, sig_payload = identify_sig_or_bom(sequences) + + if sig_encoding is not None: + prioritized_encodings.append(sig_encoding) + logger.log( + TRACE, + "Detected a SIG or BOM mark on first %i byte(s). Priority +1 given for %s.", + len(sig_payload), + sig_encoding, + ) + + prioritized_encodings.append("ascii") + + if "utf_8" not in prioritized_encodings: + prioritized_encodings.append("utf_8") + + for encoding_iana in prioritized_encodings + IANA_SUPPORTED: + if cp_isolation and encoding_iana not in cp_isolation: + continue + + if cp_exclusion and encoding_iana in cp_exclusion: + continue + + if encoding_iana in tested: + continue + + tested.add(encoding_iana) + + decoded_payload: str | None = None + bom_or_sig_available: bool = sig_encoding == encoding_iana + strip_sig_or_bom: bool = bom_or_sig_available and should_strip_sig_or_bom( + encoding_iana + ) + + if encoding_iana in {"utf_16", "utf_32"} and not bom_or_sig_available: + logger.log( + TRACE, + "Encoding %s won't be tested as-is because it require a BOM. Will try some sub-encoder LE/BE.", + encoding_iana, + ) + continue + if encoding_iana in {"utf_7"} and not bom_or_sig_available: + logger.log( + TRACE, + "Encoding %s won't be tested as-is because detection is unreliable without BOM/SIG.", + encoding_iana, + ) + continue + + try: + is_multi_byte_decoder: bool = is_multi_byte_encoding(encoding_iana) + except (ModuleNotFoundError, ImportError): + logger.log( + TRACE, + "Encoding %s does not provide an IncrementalDecoder", + encoding_iana, + ) + continue + + try: + if is_too_large_sequence and is_multi_byte_decoder is False: + str( + ( + sequences[: int(50e4)] + if strip_sig_or_bom is False + else sequences[len(sig_payload) : int(50e4)] + ), + encoding=encoding_iana, + ) + else: + decoded_payload = str( + ( + sequences + if strip_sig_or_bom is False + else sequences[len(sig_payload) :] + ), + encoding=encoding_iana, + ) + except (UnicodeDecodeError, LookupError) as e: + if not isinstance(e, LookupError): + logger.log( + TRACE, + "Code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + tested_but_hard_failure.append(encoding_iana) + continue + + similar_soft_failure_test: bool = False + + for encoding_soft_failed in tested_but_soft_failure: + if is_cp_similar(encoding_iana, encoding_soft_failed): + similar_soft_failure_test = True + break + + if similar_soft_failure_test: + logger.log( + TRACE, + "%s is deemed too similar to code page %s and was consider unsuited already. Continuing!", + encoding_iana, + encoding_soft_failed, + ) + continue + + r_ = range( + 0 if not bom_or_sig_available else len(sig_payload), + length, + int(length / steps), + ) + + multi_byte_bonus: bool = ( + is_multi_byte_decoder + and decoded_payload is not None + and len(decoded_payload) < length + ) + + if multi_byte_bonus: + logger.log( + TRACE, + "Code page %s is a multi byte encoding table and it appear that at least one character " + "was encoded using n-bytes.", + encoding_iana, + ) + + max_chunk_gave_up: int = int(len(r_) / 4) + + max_chunk_gave_up = max(max_chunk_gave_up, 2) + early_stop_count: int = 0 + lazy_str_hard_failure = False + + md_chunks: list[str] = [] + md_ratios = [] + + try: + for chunk in cut_sequence_chunks( + sequences, + encoding_iana, + r_, + chunk_size, + bom_or_sig_available, + strip_sig_or_bom, + sig_payload, + is_multi_byte_decoder, + decoded_payload, + ): + md_chunks.append(chunk) + + md_ratios.append( + mess_ratio( + chunk, + threshold, + explain is True and 1 <= len(cp_isolation) <= 2, + ) + ) + + if md_ratios[-1] >= threshold: + early_stop_count += 1 + + if (early_stop_count >= max_chunk_gave_up) or ( + bom_or_sig_available and strip_sig_or_bom is False + ): + break + except ( + UnicodeDecodeError + ) as e: # Lazy str loading may have missed something there + logger.log( + TRACE, + "LazyStr Loading: After MD chunk decode, code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + early_stop_count = max_chunk_gave_up + lazy_str_hard_failure = True + + # We might want to check the sequence again with the whole content + # Only if initial MD tests passes + if ( + not lazy_str_hard_failure + and is_too_large_sequence + and not is_multi_byte_decoder + ): + try: + sequences[int(50e3) :].decode(encoding_iana, errors="strict") + except UnicodeDecodeError as e: + logger.log( + TRACE, + "LazyStr Loading: After final lookup, code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + tested_but_hard_failure.append(encoding_iana) + continue + + mean_mess_ratio: float = sum(md_ratios) / len(md_ratios) if md_ratios else 0.0 + if mean_mess_ratio >= threshold or early_stop_count >= max_chunk_gave_up: + tested_but_soft_failure.append(encoding_iana) + logger.log( + TRACE, + "%s was excluded because of initial chaos probing. Gave up %i time(s). " + "Computed mean chaos is %f %%.", + encoding_iana, + early_stop_count, + round(mean_mess_ratio * 100, ndigits=3), + ) + # Preparing those fallbacks in case we got nothing. + if ( + enable_fallback + and encoding_iana + in ["ascii", "utf_8", specified_encoding, "utf_16", "utf_32"] + and not lazy_str_hard_failure + ): + fallback_entry = CharsetMatch( + sequences, + encoding_iana, + threshold, + bom_or_sig_available, + [], + decoded_payload, + preemptive_declaration=specified_encoding, + ) + if encoding_iana == specified_encoding: + fallback_specified = fallback_entry + elif encoding_iana == "ascii": + fallback_ascii = fallback_entry + else: + fallback_u8 = fallback_entry + continue + + logger.log( + TRACE, + "%s passed initial chaos probing. Mean measured chaos is %f %%", + encoding_iana, + round(mean_mess_ratio * 100, ndigits=3), + ) + + if not is_multi_byte_decoder: + target_languages: list[str] = encoding_languages(encoding_iana) + else: + target_languages = mb_encoding_languages(encoding_iana) + + if target_languages: + logger.log( + TRACE, + "{} should target any language(s) of {}".format( + encoding_iana, str(target_languages) + ), + ) + + cd_ratios = [] + + # We shall skip the CD when its about ASCII + # Most of the time its not relevant to run "language-detection" on it. + if encoding_iana != "ascii": + for chunk in md_chunks: + chunk_languages = coherence_ratio( + chunk, + language_threshold, + ",".join(target_languages) if target_languages else None, + ) + + cd_ratios.append(chunk_languages) + + cd_ratios_merged = merge_coherence_ratios(cd_ratios) + + if cd_ratios_merged: + logger.log( + TRACE, + "We detected language {} using {}".format( + cd_ratios_merged, encoding_iana + ), + ) + + current_match = CharsetMatch( + sequences, + encoding_iana, + mean_mess_ratio, + bom_or_sig_available, + cd_ratios_merged, + ( + decoded_payload + if ( + is_too_large_sequence is False + or encoding_iana in [specified_encoding, "ascii", "utf_8"] + ) + else None + ), + preemptive_declaration=specified_encoding, + ) + + results.append(current_match) + + if ( + encoding_iana in [specified_encoding, "ascii", "utf_8"] + and mean_mess_ratio < 0.1 + ): + # If md says nothing to worry about, then... stop immediately! + if mean_mess_ratio == 0.0: + logger.debug( + "Encoding detection: %s is most likely the one.", + current_match.encoding, + ) + if explain: # Defensive: ensure exit path clean handler + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + return CharsetMatches([current_match]) + + early_stop_results.append(current_match) + + if ( + len(early_stop_results) + and (specified_encoding is None or specified_encoding in tested) + and "ascii" in tested + and "utf_8" in tested + ): + probable_result: CharsetMatch = early_stop_results.best() # type: ignore[assignment] + logger.debug( + "Encoding detection: %s is most likely the one.", + probable_result.encoding, + ) + if explain: # Defensive: ensure exit path clean handler + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + + return CharsetMatches([probable_result]) + + if encoding_iana == sig_encoding: + logger.debug( + "Encoding detection: %s is most likely the one as we detected a BOM or SIG within " + "the beginning of the sequence.", + encoding_iana, + ) + if explain: # Defensive: ensure exit path clean handler + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + return CharsetMatches([results[encoding_iana]]) + + if len(results) == 0: + if fallback_u8 or fallback_ascii or fallback_specified: + logger.log( + TRACE, + "Nothing got out of the detection process. Using ASCII/UTF-8/Specified fallback.", + ) + + if fallback_specified: + logger.debug( + "Encoding detection: %s will be used as a fallback match", + fallback_specified.encoding, + ) + results.append(fallback_specified) + elif ( + (fallback_u8 and fallback_ascii is None) + or ( + fallback_u8 + and fallback_ascii + and fallback_u8.fingerprint != fallback_ascii.fingerprint + ) + or (fallback_u8 is not None) + ): + logger.debug("Encoding detection: utf_8 will be used as a fallback match") + results.append(fallback_u8) + elif fallback_ascii: + logger.debug("Encoding detection: ascii will be used as a fallback match") + results.append(fallback_ascii) + + if results: + logger.debug( + "Encoding detection: Found %s as plausible (best-candidate) for content. With %i alternatives.", + results.best().encoding, # type: ignore + len(results) - 1, + ) + else: + logger.debug("Encoding detection: Unable to determine any suitable charset.") + + if explain: + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + + return results + + +def from_fp( + fp: BinaryIO, + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.20, + cp_isolation: list[str] | None = None, + cp_exclusion: list[str] | None = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, + enable_fallback: bool = True, +) -> CharsetMatches: + """ + Same thing than the function from_bytes but using a file pointer that is already ready. + Will not close the file pointer. + """ + return from_bytes( + fp.read(), + steps, + chunk_size, + threshold, + cp_isolation, + cp_exclusion, + preemptive_behaviour, + explain, + language_threshold, + enable_fallback, + ) + + +def from_path( + path: str | bytes | PathLike, # type: ignore[type-arg] + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.20, + cp_isolation: list[str] | None = None, + cp_exclusion: list[str] | None = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, + enable_fallback: bool = True, +) -> CharsetMatches: + """ + Same thing than the function from_bytes but with one extra step. Opening and reading given file path in binary mode. + Can raise IOError. + """ + with open(path, "rb") as fp: + return from_fp( + fp, + steps, + chunk_size, + threshold, + cp_isolation, + cp_exclusion, + preemptive_behaviour, + explain, + language_threshold, + enable_fallback, + ) + + +def is_binary( + fp_or_path_or_payload: PathLike | str | BinaryIO | bytes, # type: ignore[type-arg] + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.20, + cp_isolation: list[str] | None = None, + cp_exclusion: list[str] | None = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, + enable_fallback: bool = False, +) -> bool: + """ + Detect if the given input (file, bytes, or path) points to a binary file. aka. not a string. + Based on the same main heuristic algorithms and default kwargs at the sole exception that fallbacks match + are disabled to be stricter around ASCII-compatible but unlikely to be a string. + """ + if isinstance(fp_or_path_or_payload, (str, PathLike)): + guesses = from_path( + fp_or_path_or_payload, + steps=steps, + chunk_size=chunk_size, + threshold=threshold, + cp_isolation=cp_isolation, + cp_exclusion=cp_exclusion, + preemptive_behaviour=preemptive_behaviour, + explain=explain, + language_threshold=language_threshold, + enable_fallback=enable_fallback, + ) + elif isinstance( + fp_or_path_or_payload, + ( + bytes, + bytearray, + ), + ): + guesses = from_bytes( + fp_or_path_or_payload, + steps=steps, + chunk_size=chunk_size, + threshold=threshold, + cp_isolation=cp_isolation, + cp_exclusion=cp_exclusion, + preemptive_behaviour=preemptive_behaviour, + explain=explain, + language_threshold=language_threshold, + enable_fallback=enable_fallback, + ) + else: + guesses = from_fp( + fp_or_path_or_payload, + steps=steps, + chunk_size=chunk_size, + threshold=threshold, + cp_isolation=cp_isolation, + cp_exclusion=cp_exclusion, + preemptive_behaviour=preemptive_behaviour, + explain=explain, + language_threshold=language_threshold, + enable_fallback=enable_fallback, + ) + + return not guesses diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/cd.py b/ocr/.venv/Lib/site-packages/charset_normalizer/cd.py new file mode 100644 index 00000000..71a3ed51 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/cd.py @@ -0,0 +1,395 @@ +from __future__ import annotations + +import importlib +from codecs import IncrementalDecoder +from collections import Counter +from functools import lru_cache +from typing import Counter as TypeCounter + +from .constant import ( + FREQUENCIES, + KO_NAMES, + LANGUAGE_SUPPORTED_COUNT, + TOO_SMALL_SEQUENCE, + ZH_NAMES, +) +from .md import is_suspiciously_successive_range +from .models import CoherenceMatches +from .utils import ( + is_accentuated, + is_latin, + is_multi_byte_encoding, + is_unicode_range_secondary, + unicode_range, +) + + +def encoding_unicode_range(iana_name: str) -> list[str]: + """ + Return associated unicode ranges in a single byte code page. + """ + if is_multi_byte_encoding(iana_name): + raise OSError("Function not supported on multi-byte code page") + + decoder = importlib.import_module(f"encodings.{iana_name}").IncrementalDecoder + + p: IncrementalDecoder = decoder(errors="ignore") + seen_ranges: dict[str, int] = {} + character_count: int = 0 + + for i in range(0x40, 0xFF): + chunk: str = p.decode(bytes([i])) + + if chunk: + character_range: str | None = unicode_range(chunk) + + if character_range is None: + continue + + if is_unicode_range_secondary(character_range) is False: + if character_range not in seen_ranges: + seen_ranges[character_range] = 0 + seen_ranges[character_range] += 1 + character_count += 1 + + return sorted( + [ + character_range + for character_range in seen_ranges + if seen_ranges[character_range] / character_count >= 0.15 + ] + ) + + +def unicode_range_languages(primary_range: str) -> list[str]: + """ + Return inferred languages used with a unicode range. + """ + languages: list[str] = [] + + for language, characters in FREQUENCIES.items(): + for character in characters: + if unicode_range(character) == primary_range: + languages.append(language) + break + + return languages + + +@lru_cache() +def encoding_languages(iana_name: str) -> list[str]: + """ + Single-byte encoding language association. Some code page are heavily linked to particular language(s). + This function does the correspondence. + """ + unicode_ranges: list[str] = encoding_unicode_range(iana_name) + primary_range: str | None = None + + for specified_range in unicode_ranges: + if "Latin" not in specified_range: + primary_range = specified_range + break + + if primary_range is None: + return ["Latin Based"] + + return unicode_range_languages(primary_range) + + +@lru_cache() +def mb_encoding_languages(iana_name: str) -> list[str]: + """ + Multi-byte encoding language association. Some code page are heavily linked to particular language(s). + This function does the correspondence. + """ + if ( + iana_name.startswith("shift_") + or iana_name.startswith("iso2022_jp") + or iana_name.startswith("euc_j") + or iana_name == "cp932" + ): + return ["Japanese"] + if iana_name.startswith("gb") or iana_name in ZH_NAMES: + return ["Chinese"] + if iana_name.startswith("iso2022_kr") or iana_name in KO_NAMES: + return ["Korean"] + + return [] + + +@lru_cache(maxsize=LANGUAGE_SUPPORTED_COUNT) +def get_target_features(language: str) -> tuple[bool, bool]: + """ + Determine main aspects from a supported language if it contains accents and if is pure Latin. + """ + target_have_accents: bool = False + target_pure_latin: bool = True + + for character in FREQUENCIES[language]: + if not target_have_accents and is_accentuated(character): + target_have_accents = True + if target_pure_latin and is_latin(character) is False: + target_pure_latin = False + + return target_have_accents, target_pure_latin + + +def alphabet_languages( + characters: list[str], ignore_non_latin: bool = False +) -> list[str]: + """ + Return associated languages associated to given characters. + """ + languages: list[tuple[str, float]] = [] + + source_have_accents = any(is_accentuated(character) for character in characters) + + for language, language_characters in FREQUENCIES.items(): + target_have_accents, target_pure_latin = get_target_features(language) + + if ignore_non_latin and target_pure_latin is False: + continue + + if target_have_accents is False and source_have_accents: + continue + + character_count: int = len(language_characters) + + character_match_count: int = len( + [c for c in language_characters if c in characters] + ) + + ratio: float = character_match_count / character_count + + if ratio >= 0.2: + languages.append((language, ratio)) + + languages = sorted(languages, key=lambda x: x[1], reverse=True) + + return [compatible_language[0] for compatible_language in languages] + + +def characters_popularity_compare( + language: str, ordered_characters: list[str] +) -> float: + """ + Determine if a ordered characters list (by occurrence from most appearance to rarest) match a particular language. + The result is a ratio between 0. (absolutely no correspondence) and 1. (near perfect fit). + Beware that is function is not strict on the match in order to ease the detection. (Meaning close match is 1.) + """ + if language not in FREQUENCIES: + raise ValueError(f"{language} not available") + + character_approved_count: int = 0 + FREQUENCIES_language_set = set(FREQUENCIES[language]) + + ordered_characters_count: int = len(ordered_characters) + target_language_characters_count: int = len(FREQUENCIES[language]) + + large_alphabet: bool = target_language_characters_count > 26 + + for character, character_rank in zip( + ordered_characters, range(0, ordered_characters_count) + ): + if character not in FREQUENCIES_language_set: + continue + + character_rank_in_language: int = FREQUENCIES[language].index(character) + expected_projection_ratio: float = ( + target_language_characters_count / ordered_characters_count + ) + character_rank_projection: int = int(character_rank * expected_projection_ratio) + + if ( + large_alphabet is False + and abs(character_rank_projection - character_rank_in_language) > 4 + ): + continue + + if ( + large_alphabet is True + and abs(character_rank_projection - character_rank_in_language) + < target_language_characters_count / 3 + ): + character_approved_count += 1 + continue + + characters_before_source: list[str] = FREQUENCIES[language][ + 0:character_rank_in_language + ] + characters_after_source: list[str] = FREQUENCIES[language][ + character_rank_in_language: + ] + characters_before: list[str] = ordered_characters[0:character_rank] + characters_after: list[str] = ordered_characters[character_rank:] + + before_match_count: int = len( + set(characters_before) & set(characters_before_source) + ) + + after_match_count: int = len( + set(characters_after) & set(characters_after_source) + ) + + if len(characters_before_source) == 0 and before_match_count <= 4: + character_approved_count += 1 + continue + + if len(characters_after_source) == 0 and after_match_count <= 4: + character_approved_count += 1 + continue + + if ( + before_match_count / len(characters_before_source) >= 0.4 + or after_match_count / len(characters_after_source) >= 0.4 + ): + character_approved_count += 1 + continue + + return character_approved_count / len(ordered_characters) + + +def alpha_unicode_split(decoded_sequence: str) -> list[str]: + """ + Given a decoded text sequence, return a list of str. Unicode range / alphabet separation. + Ex. a text containing English/Latin with a bit a Hebrew will return two items in the resulting list; + One containing the latin letters and the other hebrew. + """ + layers: dict[str, str] = {} + + for character in decoded_sequence: + if character.isalpha() is False: + continue + + character_range: str | None = unicode_range(character) + + if character_range is None: + continue + + layer_target_range: str | None = None + + for discovered_range in layers: + if ( + is_suspiciously_successive_range(discovered_range, character_range) + is False + ): + layer_target_range = discovered_range + break + + if layer_target_range is None: + layer_target_range = character_range + + if layer_target_range not in layers: + layers[layer_target_range] = character.lower() + continue + + layers[layer_target_range] += character.lower() + + return list(layers.values()) + + +def merge_coherence_ratios(results: list[CoherenceMatches]) -> CoherenceMatches: + """ + This function merge results previously given by the function coherence_ratio. + The return type is the same as coherence_ratio. + """ + per_language_ratios: dict[str, list[float]] = {} + for result in results: + for sub_result in result: + language, ratio = sub_result + if language not in per_language_ratios: + per_language_ratios[language] = [ratio] + continue + per_language_ratios[language].append(ratio) + + merge = [ + ( + language, + round( + sum(per_language_ratios[language]) / len(per_language_ratios[language]), + 4, + ), + ) + for language in per_language_ratios + ] + + return sorted(merge, key=lambda x: x[1], reverse=True) + + +def filter_alt_coherence_matches(results: CoherenceMatches) -> CoherenceMatches: + """ + We shall NOT return "English—" in CoherenceMatches because it is an alternative + of "English". This function only keeps the best match and remove the em-dash in it. + """ + index_results: dict[str, list[float]] = dict() + + for result in results: + language, ratio = result + no_em_name: str = language.replace("—", "") + + if no_em_name not in index_results: + index_results[no_em_name] = [] + + index_results[no_em_name].append(ratio) + + if any(len(index_results[e]) > 1 for e in index_results): + filtered_results: CoherenceMatches = [] + + for language in index_results: + filtered_results.append((language, max(index_results[language]))) + + return filtered_results + + return results + + +@lru_cache(maxsize=2048) +def coherence_ratio( + decoded_sequence: str, threshold: float = 0.1, lg_inclusion: str | None = None +) -> CoherenceMatches: + """ + Detect ANY language that can be identified in given sequence. The sequence will be analysed by layers. + A layer = Character extraction by alphabets/ranges. + """ + + results: list[tuple[str, float]] = [] + ignore_non_latin: bool = False + + sufficient_match_count: int = 0 + + lg_inclusion_list = lg_inclusion.split(",") if lg_inclusion is not None else [] + if "Latin Based" in lg_inclusion_list: + ignore_non_latin = True + lg_inclusion_list.remove("Latin Based") + + for layer in alpha_unicode_split(decoded_sequence): + sequence_frequencies: TypeCounter[str] = Counter(layer) + most_common = sequence_frequencies.most_common() + + character_count: int = sum(o for c, o in most_common) + + if character_count <= TOO_SMALL_SEQUENCE: + continue + + popular_character_ordered: list[str] = [c for c, o in most_common] + + for language in lg_inclusion_list or alphabet_languages( + popular_character_ordered, ignore_non_latin + ): + ratio: float = characters_popularity_compare( + language, popular_character_ordered + ) + + if ratio < threshold: + continue + elif ratio >= 0.8: + sufficient_match_count += 1 + + results.append((language, round(ratio, 4))) + + if sufficient_match_count >= 3: + break + + return sorted( + filter_alt_coherence_matches(results), key=lambda x: x[1], reverse=True + ) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__init__.py b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__init__.py new file mode 100644 index 00000000..543a5a4d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__init__.py @@ -0,0 +1,8 @@ +from __future__ import annotations + +from .__main__ import cli_detect, query_yes_no + +__all__ = ( + "cli_detect", + "query_yes_no", +) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__main__.py b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__main__.py new file mode 100644 index 00000000..cb64156a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__main__.py @@ -0,0 +1,381 @@ +from __future__ import annotations + +import argparse +import sys +import typing +from json import dumps +from os.path import abspath, basename, dirname, join, realpath +from platform import python_version +from unicodedata import unidata_version + +import charset_normalizer.md as md_module +from charset_normalizer import from_fp +from charset_normalizer.models import CliDetectionResult +from charset_normalizer.version import __version__ + + +def query_yes_no(question: str, default: str = "yes") -> bool: + """Ask a yes/no question via input() and return their answer. + + "question" is a string that is presented to the user. + "default" is the presumed answer if the user just hits . + It must be "yes" (the default), "no" or None (meaning + an answer is required of the user). + + The "answer" return value is True for "yes" or False for "no". + + Credit goes to (c) https://stackoverflow.com/questions/3041986/apt-command-line-interface-like-yes-no-input + """ + valid = {"yes": True, "y": True, "ye": True, "no": False, "n": False} + if default is None: + prompt = " [y/n] " + elif default == "yes": + prompt = " [Y/n] " + elif default == "no": + prompt = " [y/N] " + else: + raise ValueError("invalid default answer: '%s'" % default) + + while True: + sys.stdout.write(question + prompt) + choice = input().lower() + if default is not None and choice == "": + return valid[default] + elif choice in valid: + return valid[choice] + else: + sys.stdout.write("Please respond with 'yes' or 'no' (or 'y' or 'n').\n") + + +class FileType: + """Factory for creating file object types + + Instances of FileType are typically passed as type= arguments to the + ArgumentParser add_argument() method. + + Keyword Arguments: + - mode -- A string indicating how the file is to be opened. Accepts the + same values as the builtin open() function. + - bufsize -- The file's desired buffer size. Accepts the same values as + the builtin open() function. + - encoding -- The file's encoding. Accepts the same values as the + builtin open() function. + - errors -- A string indicating how encoding and decoding errors are to + be handled. Accepts the same value as the builtin open() function. + + Backported from CPython 3.12 + """ + + def __init__( + self, + mode: str = "r", + bufsize: int = -1, + encoding: str | None = None, + errors: str | None = None, + ): + self._mode = mode + self._bufsize = bufsize + self._encoding = encoding + self._errors = errors + + def __call__(self, string: str) -> typing.IO: # type: ignore[type-arg] + # the special argument "-" means sys.std{in,out} + if string == "-": + if "r" in self._mode: + return sys.stdin.buffer if "b" in self._mode else sys.stdin + elif any(c in self._mode for c in "wax"): + return sys.stdout.buffer if "b" in self._mode else sys.stdout + else: + msg = f'argument "-" with mode {self._mode}' + raise ValueError(msg) + + # all other arguments are used as file names + try: + return open(string, self._mode, self._bufsize, self._encoding, self._errors) + except OSError as e: + message = f"can't open '{string}': {e}" + raise argparse.ArgumentTypeError(message) + + def __repr__(self) -> str: + args = self._mode, self._bufsize + kwargs = [("encoding", self._encoding), ("errors", self._errors)] + args_str = ", ".join( + [repr(arg) for arg in args if arg != -1] + + [f"{kw}={arg!r}" for kw, arg in kwargs if arg is not None] + ) + return f"{type(self).__name__}({args_str})" + + +def cli_detect(argv: list[str] | None = None) -> int: + """ + CLI assistant using ARGV and ArgumentParser + :param argv: + :return: 0 if everything is fine, anything else equal trouble + """ + parser = argparse.ArgumentParser( + description="The Real First Universal Charset Detector. " + "Discover originating encoding used on text file. " + "Normalize text to unicode." + ) + + parser.add_argument( + "files", type=FileType("rb"), nargs="+", help="File(s) to be analysed" + ) + parser.add_argument( + "-v", + "--verbose", + action="store_true", + default=False, + dest="verbose", + help="Display complementary information about file if any. " + "Stdout will contain logs about the detection process.", + ) + parser.add_argument( + "-a", + "--with-alternative", + action="store_true", + default=False, + dest="alternatives", + help="Output complementary possibilities if any. Top-level JSON WILL be a list.", + ) + parser.add_argument( + "-n", + "--normalize", + action="store_true", + default=False, + dest="normalize", + help="Permit to normalize input file. If not set, program does not write anything.", + ) + parser.add_argument( + "-m", + "--minimal", + action="store_true", + default=False, + dest="minimal", + help="Only output the charset detected to STDOUT. Disabling JSON output.", + ) + parser.add_argument( + "-r", + "--replace", + action="store_true", + default=False, + dest="replace", + help="Replace file when trying to normalize it instead of creating a new one.", + ) + parser.add_argument( + "-f", + "--force", + action="store_true", + default=False, + dest="force", + help="Replace file without asking if you are sure, use this flag with caution.", + ) + parser.add_argument( + "-i", + "--no-preemptive", + action="store_true", + default=False, + dest="no_preemptive", + help="Disable looking at a charset declaration to hint the detector.", + ) + parser.add_argument( + "-t", + "--threshold", + action="store", + default=0.2, + type=float, + dest="threshold", + help="Define a custom maximum amount of noise allowed in decoded content. 0. <= noise <= 1.", + ) + parser.add_argument( + "--version", + action="version", + version="Charset-Normalizer {} - Python {} - Unicode {} - SpeedUp {}".format( + __version__, + python_version(), + unidata_version, + "OFF" if md_module.__file__.lower().endswith(".py") else "ON", + ), + help="Show version information and exit.", + ) + + args = parser.parse_args(argv) + + if args.replace is True and args.normalize is False: + if args.files: + for my_file in args.files: + my_file.close() + print("Use --replace in addition of --normalize only.", file=sys.stderr) + return 1 + + if args.force is True and args.replace is False: + if args.files: + for my_file in args.files: + my_file.close() + print("Use --force in addition of --replace only.", file=sys.stderr) + return 1 + + if args.threshold < 0.0 or args.threshold > 1.0: + if args.files: + for my_file in args.files: + my_file.close() + print("--threshold VALUE should be between 0. AND 1.", file=sys.stderr) + return 1 + + x_ = [] + + for my_file in args.files: + matches = from_fp( + my_file, + threshold=args.threshold, + explain=args.verbose, + preemptive_behaviour=args.no_preemptive is False, + ) + + best_guess = matches.best() + + if best_guess is None: + print( + 'Unable to identify originating encoding for "{}". {}'.format( + my_file.name, + ( + "Maybe try increasing maximum amount of chaos." + if args.threshold < 1.0 + else "" + ), + ), + file=sys.stderr, + ) + x_.append( + CliDetectionResult( + abspath(my_file.name), + None, + [], + [], + "Unknown", + [], + False, + 1.0, + 0.0, + None, + True, + ) + ) + else: + x_.append( + CliDetectionResult( + abspath(my_file.name), + best_guess.encoding, + best_guess.encoding_aliases, + [ + cp + for cp in best_guess.could_be_from_charset + if cp != best_guess.encoding + ], + best_guess.language, + best_guess.alphabets, + best_guess.bom, + best_guess.percent_chaos, + best_guess.percent_coherence, + None, + True, + ) + ) + + if len(matches) > 1 and args.alternatives: + for el in matches: + if el != best_guess: + x_.append( + CliDetectionResult( + abspath(my_file.name), + el.encoding, + el.encoding_aliases, + [ + cp + for cp in el.could_be_from_charset + if cp != el.encoding + ], + el.language, + el.alphabets, + el.bom, + el.percent_chaos, + el.percent_coherence, + None, + False, + ) + ) + + if args.normalize is True: + if best_guess.encoding.startswith("utf") is True: + print( + '"{}" file does not need to be normalized, as it already came from unicode.'.format( + my_file.name + ), + file=sys.stderr, + ) + if my_file.closed is False: + my_file.close() + continue + + dir_path = dirname(realpath(my_file.name)) + file_name = basename(realpath(my_file.name)) + + o_: list[str] = file_name.split(".") + + if args.replace is False: + o_.insert(-1, best_guess.encoding) + if my_file.closed is False: + my_file.close() + elif ( + args.force is False + and query_yes_no( + 'Are you sure to normalize "{}" by replacing it ?'.format( + my_file.name + ), + "no", + ) + is False + ): + if my_file.closed is False: + my_file.close() + continue + + try: + x_[0].unicode_path = join(dir_path, ".".join(o_)) + + with open(x_[0].unicode_path, "wb") as fp: + fp.write(best_guess.output()) + except OSError as e: + print(str(e), file=sys.stderr) + if my_file.closed is False: + my_file.close() + return 2 + + if my_file.closed is False: + my_file.close() + + if args.minimal is False: + print( + dumps( + [el.__dict__ for el in x_] if len(x_) > 1 else x_[0].__dict__, + ensure_ascii=True, + indent=4, + ) + ) + else: + for my_file in args.files: + print( + ", ".join( + [ + el.encoding or "undefined" + for el in x_ + if el.path == abspath(my_file.name) + ] + ) + ) + + return 0 + + +if __name__ == "__main__": + cli_detect() diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db0d1c0efbf8e8722f456d012c3c9870925ad0e9 GIT binary patch literal 325 zcmYk1u};G<5Qc3hX+vlw#51sDpxqHdAXtzP3lLs!2y1N{M7L)2z#ytjn7` za@G_wed40y8JUY+UYqVy?Z_sao?fFBG<~jCbfU8?> zTgMk$G+TbBUbt5QPkYgB#0ouc--PqA%~;n7tv=8# literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edd90ef0717c8ff1a0b75831c2c3cc17e296dae3 GIT binary patch literal 9334 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 O?I+q#vOA$fkN*dgvC{tl literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/constant.py b/ocr/.venv/Lib/site-packages/charset_normalizer/constant.py new file mode 100644 index 00000000..cc71a019 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/constant.py @@ -0,0 +1,2015 @@ +from __future__ import annotations + +from codecs import BOM_UTF8, BOM_UTF16_BE, BOM_UTF16_LE, BOM_UTF32_BE, BOM_UTF32_LE +from encodings.aliases import aliases +from re import IGNORECASE +from re import compile as re_compile + +# Contain for each eligible encoding a list of/item bytes SIG/BOM +ENCODING_MARKS: dict[str, bytes | list[bytes]] = { + "utf_8": BOM_UTF8, + "utf_7": [ + b"\x2b\x2f\x76\x38", + b"\x2b\x2f\x76\x39", + b"\x2b\x2f\x76\x2b", + b"\x2b\x2f\x76\x2f", + b"\x2b\x2f\x76\x38\x2d", + ], + "gb18030": b"\x84\x31\x95\x33", + "utf_32": [BOM_UTF32_BE, BOM_UTF32_LE], + "utf_16": [BOM_UTF16_BE, BOM_UTF16_LE], +} + +TOO_SMALL_SEQUENCE: int = 32 +TOO_BIG_SEQUENCE: int = int(10e6) + +UTF8_MAXIMAL_ALLOCATION: int = 1_112_064 + +# Up-to-date Unicode ucd/15.0.0 +UNICODE_RANGES_COMBINED: dict[str, range] = { + "Control character": range(32), + "Basic Latin": range(32, 128), + "Latin-1 Supplement": range(128, 256), + "Latin Extended-A": range(256, 384), + "Latin Extended-B": range(384, 592), + "IPA Extensions": range(592, 688), + "Spacing Modifier Letters": range(688, 768), + "Combining Diacritical Marks": range(768, 880), + "Greek and Coptic": range(880, 1024), + "Cyrillic": range(1024, 1280), + "Cyrillic Supplement": range(1280, 1328), + "Armenian": range(1328, 1424), + "Hebrew": range(1424, 1536), + "Arabic": range(1536, 1792), + "Syriac": range(1792, 1872), + "Arabic Supplement": range(1872, 1920), + "Thaana": range(1920, 1984), + "NKo": range(1984, 2048), + "Samaritan": range(2048, 2112), + "Mandaic": range(2112, 2144), + "Syriac Supplement": range(2144, 2160), + "Arabic Extended-B": range(2160, 2208), + "Arabic Extended-A": range(2208, 2304), + "Devanagari": range(2304, 2432), + "Bengali": range(2432, 2560), + "Gurmukhi": range(2560, 2688), + "Gujarati": range(2688, 2816), + "Oriya": range(2816, 2944), + "Tamil": range(2944, 3072), + "Telugu": range(3072, 3200), + "Kannada": range(3200, 3328), + "Malayalam": range(3328, 3456), + "Sinhala": range(3456, 3584), + "Thai": range(3584, 3712), + "Lao": range(3712, 3840), + "Tibetan": range(3840, 4096), + "Myanmar": range(4096, 4256), + "Georgian": range(4256, 4352), + "Hangul Jamo": range(4352, 4608), + "Ethiopic": range(4608, 4992), + "Ethiopic Supplement": range(4992, 5024), + "Cherokee": range(5024, 5120), + "Unified Canadian Aboriginal Syllabics": range(5120, 5760), + "Ogham": range(5760, 5792), + "Runic": range(5792, 5888), + "Tagalog": range(5888, 5920), + "Hanunoo": range(5920, 5952), + "Buhid": range(5952, 5984), + "Tagbanwa": range(5984, 6016), + "Khmer": range(6016, 6144), + "Mongolian": range(6144, 6320), + "Unified Canadian Aboriginal Syllabics Extended": range(6320, 6400), + "Limbu": range(6400, 6480), + "Tai Le": range(6480, 6528), + "New Tai Lue": range(6528, 6624), + "Khmer Symbols": range(6624, 6656), + "Buginese": range(6656, 6688), + "Tai Tham": range(6688, 6832), + "Combining Diacritical Marks Extended": range(6832, 6912), + "Balinese": range(6912, 7040), + "Sundanese": range(7040, 7104), + "Batak": range(7104, 7168), + "Lepcha": range(7168, 7248), + "Ol Chiki": range(7248, 7296), + "Cyrillic Extended-C": range(7296, 7312), + "Georgian Extended": range(7312, 7360), + "Sundanese Supplement": range(7360, 7376), + "Vedic Extensions": range(7376, 7424), + "Phonetic Extensions": range(7424, 7552), + "Phonetic Extensions Supplement": range(7552, 7616), + "Combining Diacritical Marks Supplement": range(7616, 7680), + "Latin Extended Additional": range(7680, 7936), + "Greek Extended": range(7936, 8192), + "General Punctuation": range(8192, 8304), + "Superscripts and Subscripts": range(8304, 8352), + "Currency Symbols": range(8352, 8400), + "Combining Diacritical Marks for Symbols": range(8400, 8448), + "Letterlike Symbols": range(8448, 8528), + "Number Forms": range(8528, 8592), + "Arrows": range(8592, 8704), + "Mathematical Operators": range(8704, 8960), + "Miscellaneous Technical": range(8960, 9216), + "Control Pictures": range(9216, 9280), + "Optical Character Recognition": range(9280, 9312), + "Enclosed Alphanumerics": range(9312, 9472), + "Box Drawing": range(9472, 9600), + "Block Elements": range(9600, 9632), + "Geometric Shapes": range(9632, 9728), + "Miscellaneous Symbols": range(9728, 9984), + "Dingbats": range(9984, 10176), + "Miscellaneous Mathematical Symbols-A": range(10176, 10224), + "Supplemental Arrows-A": range(10224, 10240), + "Braille Patterns": range(10240, 10496), + "Supplemental Arrows-B": range(10496, 10624), + "Miscellaneous Mathematical Symbols-B": range(10624, 10752), + "Supplemental Mathematical Operators": range(10752, 11008), + "Miscellaneous Symbols and Arrows": range(11008, 11264), + "Glagolitic": range(11264, 11360), + "Latin Extended-C": range(11360, 11392), + "Coptic": range(11392, 11520), + "Georgian Supplement": range(11520, 11568), + "Tifinagh": range(11568, 11648), + "Ethiopic Extended": range(11648, 11744), + "Cyrillic Extended-A": range(11744, 11776), + "Supplemental Punctuation": range(11776, 11904), + "CJK Radicals Supplement": range(11904, 12032), + "Kangxi Radicals": range(12032, 12256), + "Ideographic Description Characters": range(12272, 12288), + "CJK Symbols and Punctuation": range(12288, 12352), + "Hiragana": range(12352, 12448), + "Katakana": range(12448, 12544), + "Bopomofo": range(12544, 12592), + "Hangul Compatibility Jamo": range(12592, 12688), + "Kanbun": range(12688, 12704), + "Bopomofo Extended": range(12704, 12736), + "CJK Strokes": range(12736, 12784), + "Katakana Phonetic Extensions": range(12784, 12800), + "Enclosed CJK Letters and Months": range(12800, 13056), + "CJK Compatibility": range(13056, 13312), + "CJK Unified Ideographs Extension A": range(13312, 19904), + "Yijing Hexagram Symbols": range(19904, 19968), + "CJK Unified Ideographs": range(19968, 40960), + "Yi Syllables": range(40960, 42128), + "Yi Radicals": range(42128, 42192), + "Lisu": range(42192, 42240), + "Vai": range(42240, 42560), + "Cyrillic Extended-B": range(42560, 42656), + "Bamum": range(42656, 42752), + "Modifier Tone Letters": range(42752, 42784), + "Latin Extended-D": range(42784, 43008), + "Syloti Nagri": range(43008, 43056), + "Common Indic Number Forms": range(43056, 43072), + "Phags-pa": range(43072, 43136), + "Saurashtra": range(43136, 43232), + "Devanagari Extended": range(43232, 43264), + "Kayah Li": range(43264, 43312), + "Rejang": range(43312, 43360), + "Hangul Jamo Extended-A": range(43360, 43392), + "Javanese": range(43392, 43488), + "Myanmar Extended-B": range(43488, 43520), + "Cham": range(43520, 43616), + "Myanmar Extended-A": range(43616, 43648), + "Tai Viet": range(43648, 43744), + "Meetei Mayek Extensions": range(43744, 43776), + "Ethiopic Extended-A": range(43776, 43824), + "Latin Extended-E": range(43824, 43888), + "Cherokee Supplement": range(43888, 43968), + "Meetei Mayek": range(43968, 44032), + "Hangul Syllables": range(44032, 55216), + "Hangul Jamo Extended-B": range(55216, 55296), + "High Surrogates": range(55296, 56192), + "High Private Use Surrogates": range(56192, 56320), + "Low Surrogates": range(56320, 57344), + "Private Use Area": range(57344, 63744), + "CJK Compatibility Ideographs": range(63744, 64256), + "Alphabetic Presentation Forms": range(64256, 64336), + "Arabic Presentation Forms-A": range(64336, 65024), + "Variation Selectors": range(65024, 65040), + "Vertical Forms": range(65040, 65056), + "Combining Half Marks": range(65056, 65072), + "CJK Compatibility Forms": range(65072, 65104), + "Small Form Variants": range(65104, 65136), + "Arabic Presentation Forms-B": range(65136, 65280), + "Halfwidth and Fullwidth Forms": range(65280, 65520), + "Specials": range(65520, 65536), + "Linear B Syllabary": range(65536, 65664), + "Linear B Ideograms": range(65664, 65792), + "Aegean Numbers": range(65792, 65856), + "Ancient Greek Numbers": range(65856, 65936), + "Ancient Symbols": range(65936, 66000), + "Phaistos Disc": range(66000, 66048), + "Lycian": range(66176, 66208), + "Carian": range(66208, 66272), + "Coptic Epact Numbers": range(66272, 66304), + "Old Italic": range(66304, 66352), + "Gothic": range(66352, 66384), + "Old Permic": range(66384, 66432), + "Ugaritic": range(66432, 66464), + "Old Persian": range(66464, 66528), + "Deseret": range(66560, 66640), + "Shavian": range(66640, 66688), + "Osmanya": range(66688, 66736), + "Osage": range(66736, 66816), + "Elbasan": range(66816, 66864), + "Caucasian Albanian": range(66864, 66928), + "Vithkuqi": range(66928, 67008), + "Linear A": range(67072, 67456), + "Latin Extended-F": range(67456, 67520), + "Cypriot Syllabary": range(67584, 67648), + "Imperial Aramaic": range(67648, 67680), + "Palmyrene": range(67680, 67712), + "Nabataean": range(67712, 67760), + "Hatran": range(67808, 67840), + "Phoenician": range(67840, 67872), + "Lydian": range(67872, 67904), + "Meroitic Hieroglyphs": range(67968, 68000), + "Meroitic Cursive": range(68000, 68096), + "Kharoshthi": range(68096, 68192), + "Old South Arabian": range(68192, 68224), + "Old North Arabian": range(68224, 68256), + "Manichaean": range(68288, 68352), + "Avestan": range(68352, 68416), + "Inscriptional Parthian": range(68416, 68448), + "Inscriptional Pahlavi": range(68448, 68480), + "Psalter Pahlavi": range(68480, 68528), + "Old Turkic": range(68608, 68688), + "Old Hungarian": range(68736, 68864), + "Hanifi Rohingya": range(68864, 68928), + "Rumi Numeral Symbols": range(69216, 69248), + "Yezidi": range(69248, 69312), + "Arabic Extended-C": range(69312, 69376), + "Old Sogdian": range(69376, 69424), + "Sogdian": range(69424, 69488), + "Old Uyghur": range(69488, 69552), + "Chorasmian": range(69552, 69600), + "Elymaic": range(69600, 69632), + "Brahmi": range(69632, 69760), + "Kaithi": range(69760, 69840), + "Sora Sompeng": range(69840, 69888), + "Chakma": range(69888, 69968), + "Mahajani": range(69968, 70016), + "Sharada": range(70016, 70112), + "Sinhala Archaic Numbers": range(70112, 70144), + "Khojki": range(70144, 70224), + "Multani": range(70272, 70320), + "Khudawadi": range(70320, 70400), + "Grantha": range(70400, 70528), + "Newa": range(70656, 70784), + "Tirhuta": range(70784, 70880), + "Siddham": range(71040, 71168), + "Modi": range(71168, 71264), + "Mongolian Supplement": range(71264, 71296), + "Takri": range(71296, 71376), + "Ahom": range(71424, 71504), + "Dogra": range(71680, 71760), + "Warang Citi": range(71840, 71936), + "Dives Akuru": range(71936, 72032), + "Nandinagari": range(72096, 72192), + "Zanabazar Square": range(72192, 72272), + "Soyombo": range(72272, 72368), + "Unified Canadian Aboriginal Syllabics Extended-A": range(72368, 72384), + "Pau Cin Hau": range(72384, 72448), + "Devanagari Extended-A": range(72448, 72544), + "Bhaiksuki": range(72704, 72816), + "Marchen": range(72816, 72896), + "Masaram Gondi": range(72960, 73056), + "Gunjala Gondi": range(73056, 73136), + "Makasar": range(73440, 73472), + "Kawi": range(73472, 73568), + "Lisu Supplement": range(73648, 73664), + "Tamil Supplement": range(73664, 73728), + "Cuneiform": range(73728, 74752), + "Cuneiform Numbers and Punctuation": range(74752, 74880), + "Early Dynastic Cuneiform": range(74880, 75088), + "Cypro-Minoan": range(77712, 77824), + "Egyptian Hieroglyphs": range(77824, 78896), + "Egyptian Hieroglyph Format Controls": range(78896, 78944), + "Anatolian Hieroglyphs": range(82944, 83584), + "Bamum Supplement": range(92160, 92736), + "Mro": range(92736, 92784), + "Tangsa": range(92784, 92880), + "Bassa Vah": range(92880, 92928), + "Pahawh Hmong": range(92928, 93072), + "Medefaidrin": range(93760, 93856), + "Miao": range(93952, 94112), + "Ideographic Symbols and Punctuation": range(94176, 94208), + "Tangut": range(94208, 100352), + "Tangut Components": range(100352, 101120), + "Khitan Small Script": range(101120, 101632), + "Tangut Supplement": range(101632, 101760), + "Kana Extended-B": range(110576, 110592), + "Kana Supplement": range(110592, 110848), + "Kana Extended-A": range(110848, 110896), + "Small Kana Extension": range(110896, 110960), + "Nushu": range(110960, 111360), + "Duployan": range(113664, 113824), + "Shorthand Format Controls": range(113824, 113840), + "Znamenny Musical Notation": range(118528, 118736), + "Byzantine Musical Symbols": range(118784, 119040), + "Musical Symbols": range(119040, 119296), + "Ancient Greek Musical Notation": range(119296, 119376), + "Kaktovik Numerals": range(119488, 119520), + "Mayan Numerals": range(119520, 119552), + "Tai Xuan Jing Symbols": range(119552, 119648), + "Counting Rod Numerals": range(119648, 119680), + "Mathematical Alphanumeric Symbols": range(119808, 120832), + "Sutton SignWriting": range(120832, 121520), + "Latin Extended-G": range(122624, 122880), + "Glagolitic Supplement": range(122880, 122928), + "Cyrillic Extended-D": range(122928, 123024), + "Nyiakeng Puachue Hmong": range(123136, 123216), + "Toto": range(123536, 123584), + "Wancho": range(123584, 123648), + "Nag Mundari": range(124112, 124160), + "Ethiopic Extended-B": range(124896, 124928), + "Mende Kikakui": range(124928, 125152), + "Adlam": range(125184, 125280), + "Indic Siyaq Numbers": range(126064, 126144), + "Ottoman Siyaq Numbers": range(126208, 126288), + "Arabic Mathematical Alphabetic Symbols": range(126464, 126720), + "Mahjong Tiles": range(126976, 127024), + "Domino Tiles": range(127024, 127136), + "Playing Cards": range(127136, 127232), + "Enclosed Alphanumeric Supplement": range(127232, 127488), + "Enclosed Ideographic Supplement": range(127488, 127744), + "Miscellaneous Symbols and Pictographs": range(127744, 128512), + "Emoticons range(Emoji)": range(128512, 128592), + "Ornamental Dingbats": range(128592, 128640), + "Transport and Map Symbols": range(128640, 128768), + "Alchemical Symbols": range(128768, 128896), + "Geometric Shapes Extended": range(128896, 129024), + "Supplemental Arrows-C": range(129024, 129280), + "Supplemental Symbols and Pictographs": range(129280, 129536), + "Chess Symbols": range(129536, 129648), + "Symbols and Pictographs Extended-A": range(129648, 129792), + "Symbols for Legacy Computing": range(129792, 130048), + "CJK Unified Ideographs Extension B": range(131072, 173792), + "CJK Unified Ideographs Extension C": range(173824, 177984), + "CJK Unified Ideographs Extension D": range(177984, 178208), + "CJK Unified Ideographs Extension E": range(178208, 183984), + "CJK Unified Ideographs Extension F": range(183984, 191472), + "CJK Compatibility Ideographs Supplement": range(194560, 195104), + "CJK Unified Ideographs Extension G": range(196608, 201552), + "CJK Unified Ideographs Extension H": range(201552, 205744), + "Tags": range(917504, 917632), + "Variation Selectors Supplement": range(917760, 918000), + "Supplementary Private Use Area-A": range(983040, 1048576), + "Supplementary Private Use Area-B": range(1048576, 1114112), +} + + +UNICODE_SECONDARY_RANGE_KEYWORD: list[str] = [ + "Supplement", + "Extended", + "Extensions", + "Modifier", + "Marks", + "Punctuation", + "Symbols", + "Forms", + "Operators", + "Miscellaneous", + "Drawing", + "Block", + "Shapes", + "Supplemental", + "Tags", +] + +RE_POSSIBLE_ENCODING_INDICATION = re_compile( + r"(?:(?:encoding)|(?:charset)|(?:coding))(?:[\:= ]{1,10})(?:[\"\']?)([a-zA-Z0-9\-_]+)(?:[\"\']?)", + IGNORECASE, +) + +IANA_NO_ALIASES = [ + "cp720", + "cp737", + "cp856", + "cp874", + "cp875", + "cp1006", + "koi8_r", + "koi8_t", + "koi8_u", +] + +IANA_SUPPORTED: list[str] = sorted( + filter( + lambda x: x.endswith("_codec") is False + and x not in {"rot_13", "tactis", "mbcs"}, + list(set(aliases.values())) + IANA_NO_ALIASES, + ) +) + +IANA_SUPPORTED_COUNT: int = len(IANA_SUPPORTED) + +# pre-computed code page that are similar using the function cp_similarity. +IANA_SUPPORTED_SIMILAR: dict[str, list[str]] = { + "cp037": ["cp1026", "cp1140", "cp273", "cp500"], + "cp1026": ["cp037", "cp1140", "cp273", "cp500"], + "cp1125": ["cp866"], + "cp1140": ["cp037", "cp1026", "cp273", "cp500"], + "cp1250": ["iso8859_2"], + "cp1251": ["kz1048", "ptcp154"], + "cp1252": ["iso8859_15", "iso8859_9", "latin_1"], + "cp1253": ["iso8859_7"], + "cp1254": ["iso8859_15", "iso8859_9", "latin_1"], + "cp1257": ["iso8859_13"], + "cp273": ["cp037", "cp1026", "cp1140", "cp500"], + "cp437": ["cp850", "cp858", "cp860", "cp861", "cp862", "cp863", "cp865"], + "cp500": ["cp037", "cp1026", "cp1140", "cp273"], + "cp850": ["cp437", "cp857", "cp858", "cp865"], + "cp857": ["cp850", "cp858", "cp865"], + "cp858": ["cp437", "cp850", "cp857", "cp865"], + "cp860": ["cp437", "cp861", "cp862", "cp863", "cp865"], + "cp861": ["cp437", "cp860", "cp862", "cp863", "cp865"], + "cp862": ["cp437", "cp860", "cp861", "cp863", "cp865"], + "cp863": ["cp437", "cp860", "cp861", "cp862", "cp865"], + "cp865": ["cp437", "cp850", "cp857", "cp858", "cp860", "cp861", "cp862", "cp863"], + "cp866": ["cp1125"], + "iso8859_10": ["iso8859_14", "iso8859_15", "iso8859_4", "iso8859_9", "latin_1"], + "iso8859_11": ["tis_620"], + "iso8859_13": ["cp1257"], + "iso8859_14": [ + "iso8859_10", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_15": [ + "cp1252", + "cp1254", + "iso8859_10", + "iso8859_14", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_16": [ + "iso8859_14", + "iso8859_15", + "iso8859_2", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_2": ["cp1250", "iso8859_16", "iso8859_4"], + "iso8859_3": ["iso8859_14", "iso8859_15", "iso8859_16", "iso8859_9", "latin_1"], + "iso8859_4": ["iso8859_10", "iso8859_2", "iso8859_9", "latin_1"], + "iso8859_7": ["cp1253"], + "iso8859_9": [ + "cp1252", + "cp1254", + "cp1258", + "iso8859_10", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_4", + "latin_1", + ], + "kz1048": ["cp1251", "ptcp154"], + "latin_1": [ + "cp1252", + "cp1254", + "cp1258", + "iso8859_10", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_4", + "iso8859_9", + ], + "mac_iceland": ["mac_roman", "mac_turkish"], + "mac_roman": ["mac_iceland", "mac_turkish"], + "mac_turkish": ["mac_iceland", "mac_roman"], + "ptcp154": ["cp1251", "kz1048"], + "tis_620": ["iso8859_11"], +} + + +CHARDET_CORRESPONDENCE: dict[str, str] = { + "iso2022_kr": "ISO-2022-KR", + "iso2022_jp": "ISO-2022-JP", + "euc_kr": "EUC-KR", + "tis_620": "TIS-620", + "utf_32": "UTF-32", + "euc_jp": "EUC-JP", + "koi8_r": "KOI8-R", + "iso8859_1": "ISO-8859-1", + "iso8859_2": "ISO-8859-2", + "iso8859_5": "ISO-8859-5", + "iso8859_6": "ISO-8859-6", + "iso8859_7": "ISO-8859-7", + "iso8859_8": "ISO-8859-8", + "utf_16": "UTF-16", + "cp855": "IBM855", + "mac_cyrillic": "MacCyrillic", + "gb2312": "GB2312", + "gb18030": "GB18030", + "cp932": "CP932", + "cp866": "IBM866", + "utf_8": "utf-8", + "utf_8_sig": "UTF-8-SIG", + "shift_jis": "SHIFT_JIS", + "big5": "Big5", + "cp1250": "windows-1250", + "cp1251": "windows-1251", + "cp1252": "Windows-1252", + "cp1253": "windows-1253", + "cp1255": "windows-1255", + "cp1256": "windows-1256", + "cp1254": "Windows-1254", + "cp949": "CP949", +} + + +COMMON_SAFE_ASCII_CHARACTERS: set[str] = { + "<", + ">", + "=", + ":", + "/", + "&", + ";", + "{", + "}", + "[", + "]", + ",", + "|", + '"', + "-", + "(", + ")", +} + +# Sample character sets — replace with full lists if needed +COMMON_CHINESE_CHARACTERS = "的一是在不了有和人这中大为上个国我以要他时来用们生到作地于出就分对成会可主发年动同工也能下过子说产种面而方后多定行学法所民得经十三之进着等部度家电力里如水化高自二理起小物现实加量都两体制机当使点从业本去把性好应开它合还因由其些然前外天政四日那社义事平形相全表间样与关各重新线内数正心反你明看原又么利比或但质气第向道命此变条只没结解问意建月公无系军很情者最立代想已通并提直题党程展五果料象员革位入常文总次品式活设及管特件长求老头基资边流路级少图山统接知较将组见计别她手角期根论运农指几九区强放决西被干做必战先回则任取据处队南给色光门即保治北造百规热领七海口东导器压志世金增争济阶油思术极交受联什认六共权收证改清己美再采转更单风切打白教速花带安场身车例真务具万每目至达走积示议声报斗完类八离华名确才科张信马节话米整空元况今集温传土许步群广石记需段研界拉林律叫且究观越织装影算低持音众书布复容儿须际商非验连断深难近矿千周委素技备半办青省列习响约支般史感劳便团往酸历市克何除消构府太准精值号率族维划选标写存候毛亲快效斯院查江型眼王按格养易置派层片始却专状育厂京识适属圆包火住调满县局照参红细引听该铁价严龙飞" + +COMMON_JAPANESE_CHARACTERS = "日一国年大十二本中長出三時行見月分後前生五間上東四今金九入学高円子外八六下来気小七山話女北午百書先名川千水半男西電校語土木聞食車何南万毎白天母火右読友左休父雨" + +COMMON_KOREAN_CHARACTERS = "一二三四五六七八九十百千萬上下左右中人女子大小山川日月火水木金土父母天地國名年時文校學生" + +# Combine all into a set +COMMON_CJK_CHARACTERS = set( + "".join( + [ + COMMON_CHINESE_CHARACTERS, + COMMON_JAPANESE_CHARACTERS, + COMMON_KOREAN_CHARACTERS, + ] + ) +) + +KO_NAMES: set[str] = {"johab", "cp949", "euc_kr"} +ZH_NAMES: set[str] = {"big5", "cp950", "big5hkscs", "hz"} + +# Logging LEVEL below DEBUG +TRACE: int = 5 + + +# Language label that contain the em dash "—" +# character are to be considered alternative seq to origin +FREQUENCIES: dict[str, list[str]] = { + "English": [ + "e", + "a", + "t", + "i", + "o", + "n", + "s", + "r", + "h", + "l", + "d", + "c", + "u", + "m", + "f", + "p", + "g", + "w", + "y", + "b", + "v", + "k", + "x", + "j", + "z", + "q", + ], + "English—": [ + "e", + "a", + "t", + "i", + "o", + "n", + "s", + "r", + "h", + "l", + "d", + "c", + "m", + "u", + "f", + "p", + "g", + "w", + "b", + "y", + "v", + "k", + "j", + "x", + "z", + "q", + ], + "German": [ + "e", + "n", + "i", + "r", + "s", + "t", + "a", + "d", + "h", + "u", + "l", + "g", + "o", + "c", + "m", + "b", + "f", + "k", + "w", + "z", + "p", + "v", + "ü", + "ä", + "ö", + "j", + ], + "French": [ + "e", + "a", + "s", + "n", + "i", + "t", + "r", + "l", + "u", + "o", + "d", + "c", + "p", + "m", + "é", + "v", + "g", + "f", + "b", + "h", + "q", + "à", + "x", + "è", + "y", + "j", + ], + "Dutch": [ + "e", + "n", + "a", + "i", + "r", + "t", + "o", + "d", + "s", + "l", + "g", + "h", + "v", + "m", + "u", + "k", + "c", + "p", + "b", + "w", + "j", + "z", + "f", + "y", + "x", + "ë", + ], + "Italian": [ + "e", + "i", + "a", + "o", + "n", + "l", + "t", + "r", + "s", + "c", + "d", + "u", + "p", + "m", + "g", + "v", + "f", + "b", + "z", + "h", + "q", + "è", + "à", + "k", + "y", + "ò", + ], + "Polish": [ + "a", + "i", + "o", + "e", + "n", + "r", + "z", + "w", + "s", + "c", + "t", + "k", + "y", + "d", + "p", + "m", + "u", + "l", + "j", + "ł", + "g", + "b", + "h", + "ą", + "ę", + "ó", + ], + "Spanish": [ + "e", + "a", + "o", + "n", + "s", + "r", + "i", + "l", + "d", + "t", + "c", + "u", + "m", + "p", + "b", + "g", + "v", + "f", + "y", + "ó", + "h", + "q", + "í", + "j", + "z", + "á", + ], + "Russian": [ + "о", + "а", + "е", + "и", + "н", + "с", + "т", + "р", + "в", + "л", + "к", + "м", + "д", + "п", + "у", + "г", + "я", + "ы", + "з", + "б", + "й", + "ь", + "ч", + "х", + "ж", + "ц", + ], + # Jap-Kanji + "Japanese": [ + "人", + "一", + "大", + "亅", + "丁", + "丨", + "竹", + "笑", + "口", + "日", + "今", + "二", + "彳", + "行", + "十", + "土", + "丶", + "寸", + "寺", + "時", + "乙", + "丿", + "乂", + "气", + "気", + "冂", + "巾", + "亠", + "市", + "目", + "儿", + "見", + "八", + "小", + "凵", + "県", + "月", + "彐", + "門", + "間", + "木", + "東", + "山", + "出", + "本", + "中", + "刀", + "分", + "耳", + "又", + "取", + "最", + "言", + "田", + "心", + "思", + "刂", + "前", + "京", + "尹", + "事", + "生", + "厶", + "云", + "会", + "未", + "来", + "白", + "冫", + "楽", + "灬", + "馬", + "尸", + "尺", + "駅", + "明", + "耂", + "者", + "了", + "阝", + "都", + "高", + "卜", + "占", + "厂", + "广", + "店", + "子", + "申", + "奄", + "亻", + "俺", + "上", + "方", + "冖", + "学", + "衣", + "艮", + "食", + "自", + ], + # Jap-Katakana + "Japanese—": [ + "ー", + "ン", + "ス", + "・", + "ル", + "ト", + "リ", + "イ", + "ア", + "ラ", + "ッ", + "ク", + "ド", + "シ", + "レ", + "ジ", + "タ", + "フ", + "ロ", + "カ", + "テ", + "マ", + "ィ", + "グ", + "バ", + "ム", + "プ", + "オ", + "コ", + "デ", + "ニ", + "ウ", + "メ", + "サ", + "ビ", + "ナ", + "ブ", + "ャ", + "エ", + "ュ", + "チ", + "キ", + "ズ", + "ダ", + "パ", + "ミ", + "ェ", + "ョ", + "ハ", + "セ", + "ベ", + "ガ", + "モ", + "ツ", + "ネ", + "ボ", + "ソ", + "ノ", + "ァ", + "ヴ", + "ワ", + "ポ", + "ペ", + "ピ", + "ケ", + "ゴ", + "ギ", + "ザ", + "ホ", + "ゲ", + "ォ", + "ヤ", + "ヒ", + "ユ", + "ヨ", + "ヘ", + "ゼ", + "ヌ", + "ゥ", + "ゾ", + "ヶ", + "ヂ", + "ヲ", + "ヅ", + "ヵ", + "ヱ", + "ヰ", + "ヮ", + "ヽ", + "゠", + "ヾ", + "ヷ", + "ヿ", + "ヸ", + "ヹ", + "ヺ", + ], + # Jap-Hiragana + "Japanese——": [ + "の", + "に", + "る", + "た", + "と", + "は", + "し", + "い", + "を", + "で", + "て", + "が", + "な", + "れ", + "か", + "ら", + "さ", + "っ", + "り", + "す", + "あ", + "も", + "こ", + "ま", + "う", + "く", + "よ", + "き", + "ん", + "め", + "お", + "け", + "そ", + "つ", + "だ", + "や", + "え", + "ど", + "わ", + "ち", + "み", + "せ", + "じ", + "ば", + "へ", + "び", + "ず", + "ろ", + "ほ", + "げ", + "む", + "べ", + "ひ", + "ょ", + "ゆ", + "ぶ", + "ご", + "ゃ", + "ね", + "ふ", + "ぐ", + "ぎ", + "ぼ", + "ゅ", + "づ", + "ざ", + "ぞ", + "ぬ", + "ぜ", + "ぱ", + "ぽ", + "ぷ", + "ぴ", + "ぃ", + "ぁ", + "ぇ", + "ぺ", + "ゞ", + "ぢ", + "ぉ", + "ぅ", + "ゐ", + "ゝ", + "ゑ", + "゛", + "゜", + "ゎ", + "ゔ", + "゚", + "ゟ", + "゙", + "ゕ", + "ゖ", + ], + "Portuguese": [ + "a", + "e", + "o", + "s", + "i", + "r", + "d", + "n", + "t", + "m", + "u", + "c", + "l", + "p", + "g", + "v", + "b", + "f", + "h", + "ã", + "q", + "é", + "ç", + "á", + "z", + "í", + ], + "Swedish": [ + "e", + "a", + "n", + "r", + "t", + "s", + "i", + "l", + "d", + "o", + "m", + "k", + "g", + "v", + "h", + "f", + "u", + "p", + "ä", + "c", + "b", + "ö", + "å", + "y", + "j", + "x", + ], + "Chinese": [ + "的", + "一", + "是", + "不", + "了", + "在", + "人", + "有", + "我", + "他", + "这", + "个", + "们", + "中", + "来", + "上", + "大", + "为", + "和", + "国", + "地", + "到", + "以", + "说", + "时", + "要", + "就", + "出", + "会", + "可", + "也", + "你", + "对", + "生", + "能", + "而", + "子", + "那", + "得", + "于", + "着", + "下", + "自", + "之", + "年", + "过", + "发", + "后", + "作", + "里", + "用", + "道", + "行", + "所", + "然", + "家", + "种", + "事", + "成", + "方", + "多", + "经", + "么", + "去", + "法", + "学", + "如", + "都", + "同", + "现", + "当", + "没", + "动", + "面", + "起", + "看", + "定", + "天", + "分", + "还", + "进", + "好", + "小", + "部", + "其", + "些", + "主", + "样", + "理", + "心", + "她", + "本", + "前", + "开", + "但", + "因", + "只", + "从", + "想", + "实", + ], + "Ukrainian": [ + "о", + "а", + "н", + "і", + "и", + "р", + "в", + "т", + "е", + "с", + "к", + "л", + "у", + "д", + "м", + "п", + "з", + "я", + "ь", + "б", + "г", + "й", + "ч", + "х", + "ц", + "ї", + ], + "Norwegian": [ + "e", + "r", + "n", + "t", + "a", + "s", + "i", + "o", + "l", + "d", + "g", + "k", + "m", + "v", + "f", + "p", + "u", + "b", + "h", + "å", + "y", + "j", + "ø", + "c", + "æ", + "w", + ], + "Finnish": [ + "a", + "i", + "n", + "t", + "e", + "s", + "l", + "o", + "u", + "k", + "ä", + "m", + "r", + "v", + "j", + "h", + "p", + "y", + "d", + "ö", + "g", + "c", + "b", + "f", + "w", + "z", + ], + "Vietnamese": [ + "n", + "h", + "t", + "i", + "c", + "g", + "a", + "o", + "u", + "m", + "l", + "r", + "à", + "đ", + "s", + "e", + "v", + "p", + "b", + "y", + "ư", + "d", + "á", + "k", + "ộ", + "ế", + ], + "Czech": [ + "o", + "e", + "a", + "n", + "t", + "s", + "i", + "l", + "v", + "r", + "k", + "d", + "u", + "m", + "p", + "í", + "c", + "h", + "z", + "á", + "y", + "j", + "b", + "ě", + "é", + "ř", + ], + "Hungarian": [ + "e", + "a", + "t", + "l", + "s", + "n", + "k", + "r", + "i", + "o", + "z", + "á", + "é", + "g", + "m", + "b", + "y", + "v", + "d", + "h", + "u", + "p", + "j", + "ö", + "f", + "c", + ], + "Korean": [ + "이", + "다", + "에", + "의", + "는", + "로", + "하", + "을", + "가", + "고", + "지", + "서", + "한", + "은", + "기", + "으", + "년", + "대", + "사", + "시", + "를", + "리", + "도", + "인", + "스", + "일", + ], + "Indonesian": [ + "a", + "n", + "e", + "i", + "r", + "t", + "u", + "s", + "d", + "k", + "m", + "l", + "g", + "p", + "b", + "o", + "h", + "y", + "j", + "c", + "w", + "f", + "v", + "z", + "x", + "q", + ], + "Turkish": [ + "a", + "e", + "i", + "n", + "r", + "l", + "ı", + "k", + "d", + "t", + "s", + "m", + "y", + "u", + "o", + "b", + "ü", + "ş", + "v", + "g", + "z", + "h", + "c", + "p", + "ç", + "ğ", + ], + "Romanian": [ + "e", + "i", + "a", + "r", + "n", + "t", + "u", + "l", + "o", + "c", + "s", + "d", + "p", + "m", + "ă", + "f", + "v", + "î", + "g", + "b", + "ș", + "ț", + "z", + "h", + "â", + "j", + ], + "Farsi": [ + "ا", + "ی", + "ر", + "د", + "ن", + "ه", + "و", + "م", + "ت", + "ب", + "س", + "ل", + "ک", + "ش", + "ز", + "ف", + "گ", + "ع", + "خ", + "ق", + "ج", + "آ", + "پ", + "ح", + "ط", + "ص", + ], + "Arabic": [ + "ا", + "ل", + "ي", + "م", + "و", + "ن", + "ر", + "ت", + "ب", + "ة", + "ع", + "د", + "س", + "ف", + "ه", + "ك", + "ق", + "أ", + "ح", + "ج", + "ش", + "ط", + "ص", + "ى", + "خ", + "إ", + ], + "Danish": [ + "e", + "r", + "n", + "t", + "a", + "i", + "s", + "d", + "l", + "o", + "g", + "m", + "k", + "f", + "v", + "u", + "b", + "h", + "p", + "å", + "y", + "ø", + "æ", + "c", + "j", + "w", + ], + "Serbian": [ + "а", + "и", + "о", + "е", + "н", + "р", + "с", + "у", + "т", + "к", + "ј", + "в", + "д", + "м", + "п", + "л", + "г", + "з", + "б", + "a", + "i", + "e", + "o", + "n", + "ц", + "ш", + ], + "Lithuanian": [ + "i", + "a", + "s", + "o", + "r", + "e", + "t", + "n", + "u", + "k", + "m", + "l", + "p", + "v", + "d", + "j", + "g", + "ė", + "b", + "y", + "ų", + "š", + "ž", + "c", + "ą", + "į", + ], + "Slovene": [ + "e", + "a", + "i", + "o", + "n", + "r", + "s", + "l", + "t", + "j", + "v", + "k", + "d", + "p", + "m", + "u", + "z", + "b", + "g", + "h", + "č", + "c", + "š", + "ž", + "f", + "y", + ], + "Slovak": [ + "o", + "a", + "e", + "n", + "i", + "r", + "v", + "t", + "s", + "l", + "k", + "d", + "m", + "p", + "u", + "c", + "h", + "j", + "b", + "z", + "á", + "y", + "ý", + "í", + "č", + "é", + ], + "Hebrew": [ + "י", + "ו", + "ה", + "ל", + "ר", + "ב", + "ת", + "מ", + "א", + "ש", + "נ", + "ע", + "ם", + "ד", + "ק", + "ח", + "פ", + "ס", + "כ", + "ג", + "ט", + "צ", + "ן", + "ז", + "ך", + ], + "Bulgarian": [ + "а", + "и", + "о", + "е", + "н", + "т", + "р", + "с", + "в", + "л", + "к", + "д", + "п", + "м", + "з", + "г", + "я", + "ъ", + "у", + "б", + "ч", + "ц", + "й", + "ж", + "щ", + "х", + ], + "Croatian": [ + "a", + "i", + "o", + "e", + "n", + "r", + "j", + "s", + "t", + "u", + "k", + "l", + "v", + "d", + "m", + "p", + "g", + "z", + "b", + "c", + "č", + "h", + "š", + "ž", + "ć", + "f", + ], + "Hindi": [ + "क", + "र", + "स", + "न", + "त", + "म", + "ह", + "प", + "य", + "ल", + "व", + "ज", + "द", + "ग", + "ब", + "श", + "ट", + "अ", + "ए", + "थ", + "भ", + "ड", + "च", + "ध", + "ष", + "इ", + ], + "Estonian": [ + "a", + "i", + "e", + "s", + "t", + "l", + "u", + "n", + "o", + "k", + "r", + "d", + "m", + "v", + "g", + "p", + "j", + "h", + "ä", + "b", + "õ", + "ü", + "f", + "c", + "ö", + "y", + ], + "Thai": [ + "า", + "น", + "ร", + "อ", + "ก", + "เ", + "ง", + "ม", + "ย", + "ล", + "ว", + "ด", + "ท", + "ส", + "ต", + "ะ", + "ป", + "บ", + "ค", + "ห", + "แ", + "จ", + "พ", + "ช", + "ข", + "ใ", + ], + "Greek": [ + "α", + "τ", + "ο", + "ι", + "ε", + "ν", + "ρ", + "σ", + "κ", + "η", + "π", + "ς", + "υ", + "μ", + "λ", + "ί", + "ό", + "ά", + "γ", + "έ", + "δ", + "ή", + "ω", + "χ", + "θ", + "ύ", + ], + "Tamil": [ + "க", + "த", + "ப", + "ட", + "ர", + "ம", + "ல", + "ன", + "வ", + "ற", + "ய", + "ள", + "ச", + "ந", + "இ", + "ண", + "அ", + "ஆ", + "ழ", + "ங", + "எ", + "உ", + "ஒ", + "ஸ", + ], + "Kazakh": [ + "а", + "ы", + "е", + "н", + "т", + "р", + "л", + "і", + "д", + "с", + "м", + "қ", + "к", + "о", + "б", + "и", + "у", + "ғ", + "ж", + "ң", + "з", + "ш", + "й", + "п", + "г", + "ө", + ], +} + +LANGUAGE_SUPPORTED_COUNT: int = len(FREQUENCIES) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/legacy.py b/ocr/.venv/Lib/site-packages/charset_normalizer/legacy.py new file mode 100644 index 00000000..360a3107 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/legacy.py @@ -0,0 +1,80 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Any +from warnings import warn + +from .api import from_bytes +from .constant import CHARDET_CORRESPONDENCE, TOO_SMALL_SEQUENCE + +# TODO: remove this check when dropping Python 3.7 support +if TYPE_CHECKING: + from typing_extensions import TypedDict + + class ResultDict(TypedDict): + encoding: str | None + language: str + confidence: float | None + + +def detect( + byte_str: bytes, should_rename_legacy: bool = False, **kwargs: Any +) -> ResultDict: + """ + chardet legacy method + Detect the encoding of the given byte string. It should be mostly backward-compatible. + Encoding name will match Chardet own writing whenever possible. (Not on encoding name unsupported by it) + This function is deprecated and should be used to migrate your project easily, consult the documentation for + further information. Not planned for removal. + + :param byte_str: The byte sequence to examine. + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + """ + if len(kwargs): + warn( + f"charset-normalizer disregard arguments '{','.join(list(kwargs.keys()))}' in legacy function detect()" + ) + + if not isinstance(byte_str, (bytearray, bytes)): + raise TypeError( # pragma: nocover + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + + if isinstance(byte_str, bytearray): + byte_str = bytes(byte_str) + + r = from_bytes(byte_str).best() + + encoding = r.encoding if r is not None else None + language = r.language if r is not None and r.language != "Unknown" else "" + confidence = 1.0 - r.chaos if r is not None else None + + # automatically lower confidence + # on small bytes samples. + # https://github.com/jawah/charset_normalizer/issues/391 + if ( + confidence is not None + and confidence >= 0.9 + and encoding + not in { + "utf_8", + "ascii", + } + and r.bom is False # type: ignore[union-attr] + and len(byte_str) < TOO_SMALL_SEQUENCE + ): + confidence -= 0.2 + + # Note: CharsetNormalizer does not return 'UTF-8-SIG' as the sig get stripped in the detection/normalization process + # but chardet does return 'utf-8-sig' and it is a valid codec name. + if r is not None and encoding == "utf_8" and r.bom: + encoding += "_sig" + + if should_rename_legacy is False and encoding in CHARDET_CORRESPONDENCE: + encoding = CHARDET_CORRESPONDENCE[encoding] + + return { + "encoding": encoding, + "language": language, + "confidence": confidence, + } diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/md.cp310-win_amd64.pyd b/ocr/.venv/Lib/site-packages/charset_normalizer/md.cp310-win_amd64.pyd new file mode 100644 index 0000000000000000000000000000000000000000..376beb452474e230c522205556cc3bd3ea073fda GIT binary patch literal 10752 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 VXXDP+o#CDBJ3rT6`hPq5{{;GM7)JmA literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/md.py b/ocr/.venv/Lib/site-packages/charset_normalizer/md.py new file mode 100644 index 00000000..12ce024b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/md.py @@ -0,0 +1,635 @@ +from __future__ import annotations + +from functools import lru_cache +from logging import getLogger + +from .constant import ( + COMMON_SAFE_ASCII_CHARACTERS, + TRACE, + UNICODE_SECONDARY_RANGE_KEYWORD, +) +from .utils import ( + is_accentuated, + is_arabic, + is_arabic_isolated_form, + is_case_variable, + is_cjk, + is_emoticon, + is_hangul, + is_hiragana, + is_katakana, + is_latin, + is_punctuation, + is_separator, + is_symbol, + is_thai, + is_unprintable, + remove_accent, + unicode_range, + is_cjk_uncommon, +) + + +class MessDetectorPlugin: + """ + Base abstract class used for mess detection plugins. + All detectors MUST extend and implement given methods. + """ + + def eligible(self, character: str) -> bool: + """ + Determine if given character should be fed in. + """ + raise NotImplementedError # pragma: nocover + + def feed(self, character: str) -> None: + """ + The main routine to be executed upon character. + Insert the logic in witch the text would be considered chaotic. + """ + raise NotImplementedError # pragma: nocover + + def reset(self) -> None: # pragma: no cover + """ + Permit to reset the plugin to the initial state. + """ + raise NotImplementedError + + @property + def ratio(self) -> float: + """ + Compute the chaos ratio based on what your feed() has seen. + Must NOT be lower than 0.; No restriction gt 0. + """ + raise NotImplementedError # pragma: nocover + + +class TooManySymbolOrPunctuationPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._punctuation_count: int = 0 + self._symbol_count: int = 0 + self._character_count: int = 0 + + self._last_printable_char: str | None = None + self._frenzy_symbol_in_word: bool = False + + def eligible(self, character: str) -> bool: + return character.isprintable() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if ( + character != self._last_printable_char + and character not in COMMON_SAFE_ASCII_CHARACTERS + ): + if is_punctuation(character): + self._punctuation_count += 1 + elif ( + character.isdigit() is False + and is_symbol(character) + and is_emoticon(character) is False + ): + self._symbol_count += 2 + + self._last_printable_char = character + + def reset(self) -> None: # Abstract + self._punctuation_count = 0 + self._character_count = 0 + self._symbol_count = 0 + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + ratio_of_punctuation: float = ( + self._punctuation_count + self._symbol_count + ) / self._character_count + + return ratio_of_punctuation if ratio_of_punctuation >= 0.3 else 0.0 + + +class TooManyAccentuatedPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._character_count: int = 0 + self._accentuated_count: int = 0 + + def eligible(self, character: str) -> bool: + return character.isalpha() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if is_accentuated(character): + self._accentuated_count += 1 + + def reset(self) -> None: # Abstract + self._character_count = 0 + self._accentuated_count = 0 + + @property + def ratio(self) -> float: + if self._character_count < 8: + return 0.0 + + ratio_of_accentuation: float = self._accentuated_count / self._character_count + return ratio_of_accentuation if ratio_of_accentuation >= 0.35 else 0.0 + + +class UnprintablePlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._unprintable_count: int = 0 + self._character_count: int = 0 + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + if is_unprintable(character): + self._unprintable_count += 1 + self._character_count += 1 + + def reset(self) -> None: # Abstract + self._unprintable_count = 0 + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return (self._unprintable_count * 8) / self._character_count + + +class SuspiciousDuplicateAccentPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._successive_count: int = 0 + self._character_count: int = 0 + + self._last_latin_character: str | None = None + + def eligible(self, character: str) -> bool: + return character.isalpha() and is_latin(character) + + def feed(self, character: str) -> None: + self._character_count += 1 + if ( + self._last_latin_character is not None + and is_accentuated(character) + and is_accentuated(self._last_latin_character) + ): + if character.isupper() and self._last_latin_character.isupper(): + self._successive_count += 1 + # Worse if its the same char duplicated with different accent. + if remove_accent(character) == remove_accent(self._last_latin_character): + self._successive_count += 1 + self._last_latin_character = character + + def reset(self) -> None: # Abstract + self._successive_count = 0 + self._character_count = 0 + self._last_latin_character = None + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return (self._successive_count * 2) / self._character_count + + +class SuspiciousRange(MessDetectorPlugin): + def __init__(self) -> None: + self._suspicious_successive_range_count: int = 0 + self._character_count: int = 0 + self._last_printable_seen: str | None = None + + def eligible(self, character: str) -> bool: + return character.isprintable() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if ( + character.isspace() + or is_punctuation(character) + or character in COMMON_SAFE_ASCII_CHARACTERS + ): + self._last_printable_seen = None + return + + if self._last_printable_seen is None: + self._last_printable_seen = character + return + + unicode_range_a: str | None = unicode_range(self._last_printable_seen) + unicode_range_b: str | None = unicode_range(character) + + if is_suspiciously_successive_range(unicode_range_a, unicode_range_b): + self._suspicious_successive_range_count += 1 + + self._last_printable_seen = character + + def reset(self) -> None: # Abstract + self._character_count = 0 + self._suspicious_successive_range_count = 0 + self._last_printable_seen = None + + @property + def ratio(self) -> float: + if self._character_count <= 13: + return 0.0 + + ratio_of_suspicious_range_usage: float = ( + self._suspicious_successive_range_count * 2 + ) / self._character_count + + return ratio_of_suspicious_range_usage + + +class SuperWeirdWordPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._word_count: int = 0 + self._bad_word_count: int = 0 + self._foreign_long_count: int = 0 + + self._is_current_word_bad: bool = False + self._foreign_long_watch: bool = False + + self._character_count: int = 0 + self._bad_character_count: int = 0 + + self._buffer: str = "" + self._buffer_accent_count: int = 0 + self._buffer_glyph_count: int = 0 + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + if character.isalpha(): + self._buffer += character + if is_accentuated(character): + self._buffer_accent_count += 1 + if ( + self._foreign_long_watch is False + and (is_latin(character) is False or is_accentuated(character)) + and is_cjk(character) is False + and is_hangul(character) is False + and is_katakana(character) is False + and is_hiragana(character) is False + and is_thai(character) is False + ): + self._foreign_long_watch = True + if ( + is_cjk(character) + or is_hangul(character) + or is_katakana(character) + or is_hiragana(character) + or is_thai(character) + ): + self._buffer_glyph_count += 1 + return + if not self._buffer: + return + if ( + character.isspace() or is_punctuation(character) or is_separator(character) + ) and self._buffer: + self._word_count += 1 + buffer_length: int = len(self._buffer) + + self._character_count += buffer_length + + if buffer_length >= 4: + if self._buffer_accent_count / buffer_length >= 0.5: + self._is_current_word_bad = True + # Word/Buffer ending with an upper case accentuated letter are so rare, + # that we will consider them all as suspicious. Same weight as foreign_long suspicious. + elif ( + is_accentuated(self._buffer[-1]) + and self._buffer[-1].isupper() + and all(_.isupper() for _ in self._buffer) is False + ): + self._foreign_long_count += 1 + self._is_current_word_bad = True + elif self._buffer_glyph_count == 1: + self._is_current_word_bad = True + self._foreign_long_count += 1 + if buffer_length >= 24 and self._foreign_long_watch: + camel_case_dst = [ + i + for c, i in zip(self._buffer, range(0, buffer_length)) + if c.isupper() + ] + probable_camel_cased: bool = False + + if camel_case_dst and (len(camel_case_dst) / buffer_length <= 0.3): + probable_camel_cased = True + + if not probable_camel_cased: + self._foreign_long_count += 1 + self._is_current_word_bad = True + + if self._is_current_word_bad: + self._bad_word_count += 1 + self._bad_character_count += len(self._buffer) + self._is_current_word_bad = False + + self._foreign_long_watch = False + self._buffer = "" + self._buffer_accent_count = 0 + self._buffer_glyph_count = 0 + elif ( + character not in {"<", ">", "-", "=", "~", "|", "_"} + and character.isdigit() is False + and is_symbol(character) + ): + self._is_current_word_bad = True + self._buffer += character + + def reset(self) -> None: # Abstract + self._buffer = "" + self._is_current_word_bad = False + self._foreign_long_watch = False + self._bad_word_count = 0 + self._word_count = 0 + self._character_count = 0 + self._bad_character_count = 0 + self._foreign_long_count = 0 + + @property + def ratio(self) -> float: + if self._word_count <= 10 and self._foreign_long_count == 0: + return 0.0 + + return self._bad_character_count / self._character_count + + +class CjkUncommonPlugin(MessDetectorPlugin): + """ + Detect messy CJK text that probably means nothing. + """ + + def __init__(self) -> None: + self._character_count: int = 0 + self._uncommon_count: int = 0 + + def eligible(self, character: str) -> bool: + return is_cjk(character) + + def feed(self, character: str) -> None: + self._character_count += 1 + + if is_cjk_uncommon(character): + self._uncommon_count += 1 + return + + def reset(self) -> None: # Abstract + self._character_count = 0 + self._uncommon_count = 0 + + @property + def ratio(self) -> float: + if self._character_count < 8: + return 0.0 + + uncommon_form_usage: float = self._uncommon_count / self._character_count + + # we can be pretty sure it's garbage when uncommon characters are widely + # used. otherwise it could just be traditional chinese for example. + return uncommon_form_usage / 10 if uncommon_form_usage > 0.5 else 0.0 + + +class ArchaicUpperLowerPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._buf: bool = False + + self._character_count_since_last_sep: int = 0 + + self._successive_upper_lower_count: int = 0 + self._successive_upper_lower_count_final: int = 0 + + self._character_count: int = 0 + + self._last_alpha_seen: str | None = None + self._current_ascii_only: bool = True + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + is_concerned = character.isalpha() and is_case_variable(character) + chunk_sep = is_concerned is False + + if chunk_sep and self._character_count_since_last_sep > 0: + if ( + self._character_count_since_last_sep <= 64 + and character.isdigit() is False + and self._current_ascii_only is False + ): + self._successive_upper_lower_count_final += ( + self._successive_upper_lower_count + ) + + self._successive_upper_lower_count = 0 + self._character_count_since_last_sep = 0 + self._last_alpha_seen = None + self._buf = False + self._character_count += 1 + self._current_ascii_only = True + + return + + if self._current_ascii_only is True and character.isascii() is False: + self._current_ascii_only = False + + if self._last_alpha_seen is not None: + if (character.isupper() and self._last_alpha_seen.islower()) or ( + character.islower() and self._last_alpha_seen.isupper() + ): + if self._buf is True: + self._successive_upper_lower_count += 2 + self._buf = False + else: + self._buf = True + else: + self._buf = False + + self._character_count += 1 + self._character_count_since_last_sep += 1 + self._last_alpha_seen = character + + def reset(self) -> None: # Abstract + self._character_count = 0 + self._character_count_since_last_sep = 0 + self._successive_upper_lower_count = 0 + self._successive_upper_lower_count_final = 0 + self._last_alpha_seen = None + self._buf = False + self._current_ascii_only = True + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return self._successive_upper_lower_count_final / self._character_count + + +class ArabicIsolatedFormPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._character_count: int = 0 + self._isolated_form_count: int = 0 + + def reset(self) -> None: # Abstract + self._character_count = 0 + self._isolated_form_count = 0 + + def eligible(self, character: str) -> bool: + return is_arabic(character) + + def feed(self, character: str) -> None: + self._character_count += 1 + + if is_arabic_isolated_form(character): + self._isolated_form_count += 1 + + @property + def ratio(self) -> float: + if self._character_count < 8: + return 0.0 + + isolated_form_usage: float = self._isolated_form_count / self._character_count + + return isolated_form_usage + + +@lru_cache(maxsize=1024) +def is_suspiciously_successive_range( + unicode_range_a: str | None, unicode_range_b: str | None +) -> bool: + """ + Determine if two Unicode range seen next to each other can be considered as suspicious. + """ + if unicode_range_a is None or unicode_range_b is None: + return True + + if unicode_range_a == unicode_range_b: + return False + + if "Latin" in unicode_range_a and "Latin" in unicode_range_b: + return False + + if "Emoticons" in unicode_range_a or "Emoticons" in unicode_range_b: + return False + + # Latin characters can be accompanied with a combining diacritical mark + # eg. Vietnamese. + if ("Latin" in unicode_range_a or "Latin" in unicode_range_b) and ( + "Combining" in unicode_range_a or "Combining" in unicode_range_b + ): + return False + + keywords_range_a, keywords_range_b = ( + unicode_range_a.split(" "), + unicode_range_b.split(" "), + ) + + for el in keywords_range_a: + if el in UNICODE_SECONDARY_RANGE_KEYWORD: + continue + if el in keywords_range_b: + return False + + # Japanese Exception + range_a_jp_chars, range_b_jp_chars = ( + unicode_range_a + in ( + "Hiragana", + "Katakana", + ), + unicode_range_b in ("Hiragana", "Katakana"), + ) + if (range_a_jp_chars or range_b_jp_chars) and ( + "CJK" in unicode_range_a or "CJK" in unicode_range_b + ): + return False + if range_a_jp_chars and range_b_jp_chars: + return False + + if "Hangul" in unicode_range_a or "Hangul" in unicode_range_b: + if "CJK" in unicode_range_a or "CJK" in unicode_range_b: + return False + if unicode_range_a == "Basic Latin" or unicode_range_b == "Basic Latin": + return False + + # Chinese/Japanese use dedicated range for punctuation and/or separators. + if ("CJK" in unicode_range_a or "CJK" in unicode_range_b) or ( + unicode_range_a in ["Katakana", "Hiragana"] + and unicode_range_b in ["Katakana", "Hiragana"] + ): + if "Punctuation" in unicode_range_a or "Punctuation" in unicode_range_b: + return False + if "Forms" in unicode_range_a or "Forms" in unicode_range_b: + return False + if unicode_range_a == "Basic Latin" or unicode_range_b == "Basic Latin": + return False + + return True + + +@lru_cache(maxsize=2048) +def mess_ratio( + decoded_sequence: str, maximum_threshold: float = 0.2, debug: bool = False +) -> float: + """ + Compute a mess ratio given a decoded bytes sequence. The maximum threshold does stop the computation earlier. + """ + + detectors: list[MessDetectorPlugin] = [ + md_class() for md_class in MessDetectorPlugin.__subclasses__() + ] + + length: int = len(decoded_sequence) + 1 + + mean_mess_ratio: float = 0.0 + + if length < 512: + intermediary_mean_mess_ratio_calc: int = 32 + elif length <= 1024: + intermediary_mean_mess_ratio_calc = 64 + else: + intermediary_mean_mess_ratio_calc = 128 + + for character, index in zip(decoded_sequence + "\n", range(length)): + for detector in detectors: + if detector.eligible(character): + detector.feed(character) + + if ( + index > 0 and index % intermediary_mean_mess_ratio_calc == 0 + ) or index == length - 1: + mean_mess_ratio = sum(dt.ratio for dt in detectors) + + if mean_mess_ratio >= maximum_threshold: + break + + if debug: + logger = getLogger("charset_normalizer") + + logger.log( + TRACE, + "Mess-detector extended-analysis start. " + f"intermediary_mean_mess_ratio_calc={intermediary_mean_mess_ratio_calc} mean_mess_ratio={mean_mess_ratio} " + f"maximum_threshold={maximum_threshold}", + ) + + if len(decoded_sequence) > 16: + logger.log(TRACE, f"Starting with: {decoded_sequence[:16]}") + logger.log(TRACE, f"Ending with: {decoded_sequence[-16::]}") + + for dt in detectors: + logger.log(TRACE, f"{dt.__class__}: {dt.ratio}") + + return round(mean_mess_ratio, 3) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/md__mypyc.cp310-win_amd64.pyd b/ocr/.venv/Lib/site-packages/charset_normalizer/md__mypyc.cp310-win_amd64.pyd new file mode 100644 index 0000000000000000000000000000000000000000..c3a6516123ddf2d05d7e25dc5d97e4ab6b6a88e0 GIT binary patch literal 124416 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/models.py b/ocr/.venv/Lib/site-packages/charset_normalizer/models.py new file mode 100644 index 00000000..1042758f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/models.py @@ -0,0 +1,360 @@ +from __future__ import annotations + +from encodings.aliases import aliases +from hashlib import sha256 +from json import dumps +from re import sub +from typing import Any, Iterator, List, Tuple + +from .constant import RE_POSSIBLE_ENCODING_INDICATION, TOO_BIG_SEQUENCE +from .utils import iana_name, is_multi_byte_encoding, unicode_range + + +class CharsetMatch: + def __init__( + self, + payload: bytes, + guessed_encoding: str, + mean_mess_ratio: float, + has_sig_or_bom: bool, + languages: CoherenceMatches, + decoded_payload: str | None = None, + preemptive_declaration: str | None = None, + ): + self._payload: bytes = payload + + self._encoding: str = guessed_encoding + self._mean_mess_ratio: float = mean_mess_ratio + self._languages: CoherenceMatches = languages + self._has_sig_or_bom: bool = has_sig_or_bom + self._unicode_ranges: list[str] | None = None + + self._leaves: list[CharsetMatch] = [] + self._mean_coherence_ratio: float = 0.0 + + self._output_payload: bytes | None = None + self._output_encoding: str | None = None + + self._string: str | None = decoded_payload + + self._preemptive_declaration: str | None = preemptive_declaration + + def __eq__(self, other: object) -> bool: + if not isinstance(other, CharsetMatch): + if isinstance(other, str): + return iana_name(other) == self.encoding + return False + return self.encoding == other.encoding and self.fingerprint == other.fingerprint + + def __lt__(self, other: object) -> bool: + """ + Implemented to make sorted available upon CharsetMatches items. + """ + if not isinstance(other, CharsetMatch): + raise ValueError + + chaos_difference: float = abs(self.chaos - other.chaos) + coherence_difference: float = abs(self.coherence - other.coherence) + + # Below 1% difference --> Use Coherence + if chaos_difference < 0.01 and coherence_difference > 0.02: + return self.coherence > other.coherence + elif chaos_difference < 0.01 and coherence_difference <= 0.02: + # When having a difficult decision, use the result that decoded as many multi-byte as possible. + # preserve RAM usage! + if len(self._payload) >= TOO_BIG_SEQUENCE: + return self.chaos < other.chaos + return self.multi_byte_usage > other.multi_byte_usage + + return self.chaos < other.chaos + + @property + def multi_byte_usage(self) -> float: + return 1.0 - (len(str(self)) / len(self.raw)) + + def __str__(self) -> str: + # Lazy Str Loading + if self._string is None: + self._string = str(self._payload, self._encoding, "strict") + return self._string + + def __repr__(self) -> str: + return f"" + + def add_submatch(self, other: CharsetMatch) -> None: + if not isinstance(other, CharsetMatch) or other == self: + raise ValueError( + "Unable to add instance <{}> as a submatch of a CharsetMatch".format( + other.__class__ + ) + ) + + other._string = None # Unload RAM usage; dirty trick. + self._leaves.append(other) + + @property + def encoding(self) -> str: + return self._encoding + + @property + def encoding_aliases(self) -> list[str]: + """ + Encoding name are known by many name, using this could help when searching for IBM855 when it's listed as CP855. + """ + also_known_as: list[str] = [] + for u, p in aliases.items(): + if self.encoding == u: + also_known_as.append(p) + elif self.encoding == p: + also_known_as.append(u) + return also_known_as + + @property + def bom(self) -> bool: + return self._has_sig_or_bom + + @property + def byte_order_mark(self) -> bool: + return self._has_sig_or_bom + + @property + def languages(self) -> list[str]: + """ + Return the complete list of possible languages found in decoded sequence. + Usually not really useful. Returned list may be empty even if 'language' property return something != 'Unknown'. + """ + return [e[0] for e in self._languages] + + @property + def language(self) -> str: + """ + Most probable language found in decoded sequence. If none were detected or inferred, the property will return + "Unknown". + """ + if not self._languages: + # Trying to infer the language based on the given encoding + # Its either English or we should not pronounce ourselves in certain cases. + if "ascii" in self.could_be_from_charset: + return "English" + + # doing it there to avoid circular import + from charset_normalizer.cd import encoding_languages, mb_encoding_languages + + languages = ( + mb_encoding_languages(self.encoding) + if is_multi_byte_encoding(self.encoding) + else encoding_languages(self.encoding) + ) + + if len(languages) == 0 or "Latin Based" in languages: + return "Unknown" + + return languages[0] + + return self._languages[0][0] + + @property + def chaos(self) -> float: + return self._mean_mess_ratio + + @property + def coherence(self) -> float: + if not self._languages: + return 0.0 + return self._languages[0][1] + + @property + def percent_chaos(self) -> float: + return round(self.chaos * 100, ndigits=3) + + @property + def percent_coherence(self) -> float: + return round(self.coherence * 100, ndigits=3) + + @property + def raw(self) -> bytes: + """ + Original untouched bytes. + """ + return self._payload + + @property + def submatch(self) -> list[CharsetMatch]: + return self._leaves + + @property + def has_submatch(self) -> bool: + return len(self._leaves) > 0 + + @property + def alphabets(self) -> list[str]: + if self._unicode_ranges is not None: + return self._unicode_ranges + # list detected ranges + detected_ranges: list[str | None] = [unicode_range(char) for char in str(self)] + # filter and sort + self._unicode_ranges = sorted(list({r for r in detected_ranges if r})) + return self._unicode_ranges + + @property + def could_be_from_charset(self) -> list[str]: + """ + The complete list of encoding that output the exact SAME str result and therefore could be the originating + encoding. + This list does include the encoding available in property 'encoding'. + """ + return [self._encoding] + [m.encoding for m in self._leaves] + + def output(self, encoding: str = "utf_8") -> bytes: + """ + Method to get re-encoded bytes payload using given target encoding. Default to UTF-8. + Any errors will be simply ignored by the encoder NOT replaced. + """ + if self._output_encoding is None or self._output_encoding != encoding: + self._output_encoding = encoding + decoded_string = str(self) + if ( + self._preemptive_declaration is not None + and self._preemptive_declaration.lower() + not in ["utf-8", "utf8", "utf_8"] + ): + patched_header = sub( + RE_POSSIBLE_ENCODING_INDICATION, + lambda m: m.string[m.span()[0] : m.span()[1]].replace( + m.groups()[0], + iana_name(self._output_encoding).replace("_", "-"), # type: ignore[arg-type] + ), + decoded_string[:8192], + count=1, + ) + + decoded_string = patched_header + decoded_string[8192:] + + self._output_payload = decoded_string.encode(encoding, "replace") + + return self._output_payload # type: ignore + + @property + def fingerprint(self) -> str: + """ + Retrieve the unique SHA256 computed using the transformed (re-encoded) payload. Not the original one. + """ + return sha256(self.output()).hexdigest() + + +class CharsetMatches: + """ + Container with every CharsetMatch items ordered by default from most probable to the less one. + Act like a list(iterable) but does not implements all related methods. + """ + + def __init__(self, results: list[CharsetMatch] | None = None): + self._results: list[CharsetMatch] = sorted(results) if results else [] + + def __iter__(self) -> Iterator[CharsetMatch]: + yield from self._results + + def __getitem__(self, item: int | str) -> CharsetMatch: + """ + Retrieve a single item either by its position or encoding name (alias may be used here). + Raise KeyError upon invalid index or encoding not present in results. + """ + if isinstance(item, int): + return self._results[item] + if isinstance(item, str): + item = iana_name(item, False) + for result in self._results: + if item in result.could_be_from_charset: + return result + raise KeyError + + def __len__(self) -> int: + return len(self._results) + + def __bool__(self) -> bool: + return len(self._results) > 0 + + def append(self, item: CharsetMatch) -> None: + """ + Insert a single match. Will be inserted accordingly to preserve sort. + Can be inserted as a submatch. + """ + if not isinstance(item, CharsetMatch): + raise ValueError( + "Cannot append instance '{}' to CharsetMatches".format( + str(item.__class__) + ) + ) + # We should disable the submatch factoring when the input file is too heavy (conserve RAM usage) + if len(item.raw) < TOO_BIG_SEQUENCE: + for match in self._results: + if match.fingerprint == item.fingerprint and match.chaos == item.chaos: + match.add_submatch(item) + return + self._results.append(item) + self._results = sorted(self._results) + + def best(self) -> CharsetMatch | None: + """ + Simply return the first match. Strict equivalent to matches[0]. + """ + if not self._results: + return None + return self._results[0] + + def first(self) -> CharsetMatch | None: + """ + Redundant method, call the method best(). Kept for BC reasons. + """ + return self.best() + + +CoherenceMatch = Tuple[str, float] +CoherenceMatches = List[CoherenceMatch] + + +class CliDetectionResult: + def __init__( + self, + path: str, + encoding: str | None, + encoding_aliases: list[str], + alternative_encodings: list[str], + language: str, + alphabets: list[str], + has_sig_or_bom: bool, + chaos: float, + coherence: float, + unicode_path: str | None, + is_preferred: bool, + ): + self.path: str = path + self.unicode_path: str | None = unicode_path + self.encoding: str | None = encoding + self.encoding_aliases: list[str] = encoding_aliases + self.alternative_encodings: list[str] = alternative_encodings + self.language: str = language + self.alphabets: list[str] = alphabets + self.has_sig_or_bom: bool = has_sig_or_bom + self.chaos: float = chaos + self.coherence: float = coherence + self.is_preferred: bool = is_preferred + + @property + def __dict__(self) -> dict[str, Any]: # type: ignore + return { + "path": self.path, + "encoding": self.encoding, + "encoding_aliases": self.encoding_aliases, + "alternative_encodings": self.alternative_encodings, + "language": self.language, + "alphabets": self.alphabets, + "has_sig_or_bom": self.has_sig_or_bom, + "chaos": self.chaos, + "coherence": self.coherence, + "unicode_path": self.unicode_path, + "is_preferred": self.is_preferred, + } + + def to_json(self) -> str: + return dumps(self.__dict__, ensure_ascii=True, indent=4) diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/py.typed b/ocr/.venv/Lib/site-packages/charset_normalizer/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/utils.py b/ocr/.venv/Lib/site-packages/charset_normalizer/utils.py new file mode 100644 index 00000000..6bf0384c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/utils.py @@ -0,0 +1,414 @@ +from __future__ import annotations + +import importlib +import logging +import unicodedata +from codecs import IncrementalDecoder +from encodings.aliases import aliases +from functools import lru_cache +from re import findall +from typing import Generator + +from _multibytecodec import ( # type: ignore[import-not-found,import] + MultibyteIncrementalDecoder, +) + +from .constant import ( + ENCODING_MARKS, + IANA_SUPPORTED_SIMILAR, + RE_POSSIBLE_ENCODING_INDICATION, + UNICODE_RANGES_COMBINED, + UNICODE_SECONDARY_RANGE_KEYWORD, + UTF8_MAXIMAL_ALLOCATION, + COMMON_CJK_CHARACTERS, +) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_accentuated(character: str) -> bool: + try: + description: str = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + return ( + "WITH GRAVE" in description + or "WITH ACUTE" in description + or "WITH CEDILLA" in description + or "WITH DIAERESIS" in description + or "WITH CIRCUMFLEX" in description + or "WITH TILDE" in description + or "WITH MACRON" in description + or "WITH RING ABOVE" in description + ) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def remove_accent(character: str) -> str: + decomposed: str = unicodedata.decomposition(character) + if not decomposed: + return character + + codes: list[str] = decomposed.split(" ") + + return chr(int(codes[0], 16)) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def unicode_range(character: str) -> str | None: + """ + Retrieve the Unicode range official name from a single character. + """ + character_ord: int = ord(character) + + for range_name, ord_range in UNICODE_RANGES_COMBINED.items(): + if character_ord in ord_range: + return range_name + + return None + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_latin(character: str) -> bool: + try: + description: str = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + return "LATIN" in description + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_punctuation(character: str) -> bool: + character_category: str = unicodedata.category(character) + + if "P" in character_category: + return True + + character_range: str | None = unicode_range(character) + + if character_range is None: + return False + + return "Punctuation" in character_range + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_symbol(character: str) -> bool: + character_category: str = unicodedata.category(character) + + if "S" in character_category or "N" in character_category: + return True + + character_range: str | None = unicode_range(character) + + if character_range is None: + return False + + return "Forms" in character_range and character_category != "Lo" + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_emoticon(character: str) -> bool: + character_range: str | None = unicode_range(character) + + if character_range is None: + return False + + return "Emoticons" in character_range or "Pictographs" in character_range + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_separator(character: str) -> bool: + if character.isspace() or character in {"|", "+", "<", ">"}: + return True + + character_category: str = unicodedata.category(character) + + return "Z" in character_category or character_category in {"Po", "Pd", "Pc"} + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_case_variable(character: str) -> bool: + return character.islower() != character.isupper() + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_cjk(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "CJK" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_hiragana(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "HIRAGANA" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_katakana(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "KATAKANA" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_hangul(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "HANGUL" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_thai(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "THAI" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_arabic(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "ARABIC" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_arabic_isolated_form(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: # Defensive: unicode database outdated? + return False + + return "ARABIC" in character_name and "ISOLATED FORM" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_cjk_uncommon(character: str) -> bool: + return character not in COMMON_CJK_CHARACTERS + + +@lru_cache(maxsize=len(UNICODE_RANGES_COMBINED)) +def is_unicode_range_secondary(range_name: str) -> bool: + return any(keyword in range_name for keyword in UNICODE_SECONDARY_RANGE_KEYWORD) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_unprintable(character: str) -> bool: + return ( + character.isspace() is False # includes \n \t \r \v + and character.isprintable() is False + and character != "\x1a" # Why? Its the ASCII substitute character. + and character != "\ufeff" # bug discovered in Python, + # Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space. + ) + + +def any_specified_encoding(sequence: bytes, search_zone: int = 8192) -> str | None: + """ + Extract using ASCII-only decoder any specified encoding in the first n-bytes. + """ + if not isinstance(sequence, bytes): + raise TypeError + + seq_len: int = len(sequence) + + results: list[str] = findall( + RE_POSSIBLE_ENCODING_INDICATION, + sequence[: min(seq_len, search_zone)].decode("ascii", errors="ignore"), + ) + + if len(results) == 0: + return None + + for specified_encoding in results: + specified_encoding = specified_encoding.lower().replace("-", "_") + + encoding_alias: str + encoding_iana: str + + for encoding_alias, encoding_iana in aliases.items(): + if encoding_alias == specified_encoding: + return encoding_iana + if encoding_iana == specified_encoding: + return encoding_iana + + return None + + +@lru_cache(maxsize=128) +def is_multi_byte_encoding(name: str) -> bool: + """ + Verify is a specific encoding is a multi byte one based on it IANA name + """ + return name in { + "utf_8", + "utf_8_sig", + "utf_16", + "utf_16_be", + "utf_16_le", + "utf_32", + "utf_32_le", + "utf_32_be", + "utf_7", + } or issubclass( + importlib.import_module(f"encodings.{name}").IncrementalDecoder, + MultibyteIncrementalDecoder, + ) + + +def identify_sig_or_bom(sequence: bytes) -> tuple[str | None, bytes]: + """ + Identify and extract SIG/BOM in given sequence. + """ + + for iana_encoding in ENCODING_MARKS: + marks: bytes | list[bytes] = ENCODING_MARKS[iana_encoding] + + if isinstance(marks, bytes): + marks = [marks] + + for mark in marks: + if sequence.startswith(mark): + return iana_encoding, mark + + return None, b"" + + +def should_strip_sig_or_bom(iana_encoding: str) -> bool: + return iana_encoding not in {"utf_16", "utf_32"} + + +def iana_name(cp_name: str, strict: bool = True) -> str: + """Returns the Python normalized encoding name (Not the IANA official name).""" + cp_name = cp_name.lower().replace("-", "_") + + encoding_alias: str + encoding_iana: str + + for encoding_alias, encoding_iana in aliases.items(): + if cp_name in [encoding_alias, encoding_iana]: + return encoding_iana + + if strict: + raise ValueError(f"Unable to retrieve IANA for '{cp_name}'") + + return cp_name + + +def cp_similarity(iana_name_a: str, iana_name_b: str) -> float: + if is_multi_byte_encoding(iana_name_a) or is_multi_byte_encoding(iana_name_b): + return 0.0 + + decoder_a = importlib.import_module(f"encodings.{iana_name_a}").IncrementalDecoder + decoder_b = importlib.import_module(f"encodings.{iana_name_b}").IncrementalDecoder + + id_a: IncrementalDecoder = decoder_a(errors="ignore") + id_b: IncrementalDecoder = decoder_b(errors="ignore") + + character_match_count: int = 0 + + for i in range(255): + to_be_decoded: bytes = bytes([i]) + if id_a.decode(to_be_decoded) == id_b.decode(to_be_decoded): + character_match_count += 1 + + return character_match_count / 254 + + +def is_cp_similar(iana_name_a: str, iana_name_b: str) -> bool: + """ + Determine if two code page are at least 80% similar. IANA_SUPPORTED_SIMILAR dict was generated using + the function cp_similarity. + """ + return ( + iana_name_a in IANA_SUPPORTED_SIMILAR + and iana_name_b in IANA_SUPPORTED_SIMILAR[iana_name_a] + ) + + +def set_logging_handler( + name: str = "charset_normalizer", + level: int = logging.INFO, + format_string: str = "%(asctime)s | %(levelname)s | %(message)s", +) -> None: + logger = logging.getLogger(name) + logger.setLevel(level) + + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter(format_string)) + logger.addHandler(handler) + + +def cut_sequence_chunks( + sequences: bytes, + encoding_iana: str, + offsets: range, + chunk_size: int, + bom_or_sig_available: bool, + strip_sig_or_bom: bool, + sig_payload: bytes, + is_multi_byte_decoder: bool, + decoded_payload: str | None = None, +) -> Generator[str, None, None]: + if decoded_payload and is_multi_byte_decoder is False: + for i in offsets: + chunk = decoded_payload[i : i + chunk_size] + if not chunk: + break + yield chunk + else: + for i in offsets: + chunk_end = i + chunk_size + if chunk_end > len(sequences) + 8: + continue + + cut_sequence = sequences[i : i + chunk_size] + + if bom_or_sig_available and strip_sig_or_bom is False: + cut_sequence = sig_payload + cut_sequence + + chunk = cut_sequence.decode( + encoding_iana, + errors="ignore" if is_multi_byte_decoder else "strict", + ) + + # multi-byte bad cutting detector and adjustment + # not the cleanest way to perform that fix but clever enough for now. + if is_multi_byte_decoder and i > 0: + chunk_partial_size_chk: int = min(chunk_size, 16) + + if ( + decoded_payload + and chunk[:chunk_partial_size_chk] not in decoded_payload + ): + for j in range(i, i - 4, -1): + cut_sequence = sequences[j:chunk_end] + + if bom_or_sig_available and strip_sig_or_bom is False: + cut_sequence = sig_payload + cut_sequence + + chunk = cut_sequence.decode(encoding_iana, errors="ignore") + + if chunk[:chunk_partial_size_chk] in decoded_payload: + break + + yield chunk diff --git a/ocr/.venv/Lib/site-packages/charset_normalizer/version.py b/ocr/.venv/Lib/site-packages/charset_normalizer/version.py new file mode 100644 index 00000000..c843e533 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/charset_normalizer/version.py @@ -0,0 +1,8 @@ +""" +Expose version +""" + +from __future__ import annotations + +__version__ = "3.4.4" +VERSION = __version__.split(".") diff --git a/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/METADATA b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/METADATA new file mode 100644 index 00000000..534eb572 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/METADATA @@ -0,0 +1,84 @@ +Metadata-Version: 2.4 +Name: click +Version: 8.3.0 +Summary: Composable command line interface toolkit +Maintainer-email: Pallets +Requires-Python: >=3.10 +Description-Content-Type: text/markdown +License-Expression: BSD-3-Clause +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Typing :: Typed +License-File: LICENSE.txt +Requires-Dist: colorama; platform_system == 'Windows' +Project-URL: Changes, https://click.palletsprojects.com/page/changes/ +Project-URL: Chat, https://discord.gg/pallets +Project-URL: Documentation, https://click.palletsprojects.com/ +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Source, https://github.com/pallets/click/ + +
+ +# Click + +Click is a Python package for creating beautiful command line interfaces +in a composable way with as little code as necessary. It's the "Command +Line Interface Creation Kit". It's highly configurable but comes with +sensible defaults out of the box. + +It aims to make the process of writing command line tools quick and fun +while also preventing any frustration caused by the inability to +implement an intended CLI API. + +Click in three points: + +- Arbitrary nesting of commands +- Automatic help page generation +- Supports lazy loading of subcommands at runtime + + +## A Simple Example + +```python +import click + +@click.command() +@click.option("--count", default=1, help="Number of greetings.") +@click.option("--name", prompt="Your name", help="The person to greet.") +def hello(count, name): + """Simple program that greets NAME for a total of COUNT times.""" + for _ in range(count): + click.echo(f"Hello, {name}!") + +if __name__ == '__main__': + hello() +``` + +``` +$ python hello.py --count=3 +Your name: Click +Hello, Click! +Hello, Click! +Hello, Click! +``` + + +## Donate + +The Pallets organization develops and supports Click and other popular +packages. In order to grow the community of contributors and users, and +allow the maintainers to devote more time to the projects, [please +donate today][]. + +[please donate today]: https://palletsprojects.com/donate + +## Contributing + +See our [detailed contributing documentation][contrib] for many ways to +contribute, including reporting issues, requesting features, asking or answering +questions, and making PRs. + +[contrib]: https://palletsprojects.com/contributing/ + diff --git a/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/RECORD b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/RECORD new file mode 100644 index 00000000..aee32d76 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/RECORD @@ -0,0 +1,40 @@ +click-8.3.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +click-8.3.0.dist-info/METADATA,sha256=P6vpEHZ_MLBt4SO2eB-QaadcOdiznkzaZtJImRo7_V4,2621 +click-8.3.0.dist-info/RECORD,, +click-8.3.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 +click-8.3.0.dist-info/licenses/LICENSE.txt,sha256=morRBqOU6FO_4h9C9OctWSgZoigF2ZG18ydQKSkrZY0,1475 +click/__init__.py,sha256=6YyS1aeyknZ0LYweWozNZy0A9nZ_11wmYIhv3cbQrYo,4473 +click/__pycache__/__init__.cpython-310.pyc,, +click/__pycache__/_compat.cpython-310.pyc,, +click/__pycache__/_termui_impl.cpython-310.pyc,, +click/__pycache__/_textwrap.cpython-310.pyc,, +click/__pycache__/_utils.cpython-310.pyc,, +click/__pycache__/_winconsole.cpython-310.pyc,, +click/__pycache__/core.cpython-310.pyc,, +click/__pycache__/decorators.cpython-310.pyc,, +click/__pycache__/exceptions.cpython-310.pyc,, +click/__pycache__/formatting.cpython-310.pyc,, +click/__pycache__/globals.cpython-310.pyc,, +click/__pycache__/parser.cpython-310.pyc,, +click/__pycache__/shell_completion.cpython-310.pyc,, +click/__pycache__/termui.cpython-310.pyc,, +click/__pycache__/testing.cpython-310.pyc,, +click/__pycache__/types.cpython-310.pyc,, +click/__pycache__/utils.cpython-310.pyc,, +click/_compat.py,sha256=v3xBZkFbvA1BXPRkFfBJc6-pIwPI7345m-kQEnpVAs4,18693 +click/_termui_impl.py,sha256=ktpAHyJtNkhyR-x64CQFD6xJQI11fTA3qg2AV3iCToU,26799 +click/_textwrap.py,sha256=BOae0RQ6vg3FkNgSJyOoGzG1meGMxJ_ukWVZKx_v-0o,1400 +click/_utils.py,sha256=kZwtTf5gMuCilJJceS2iTCvRvCY-0aN5rJq8gKw7p8g,943 +click/_winconsole.py,sha256=_vxUuUaxwBhoR0vUWCNuHY8VUefiMdCIyU2SXPqoF-A,8465 +click/core.py,sha256=1A5T8UoAXklIGPTJ83_DJbVi35ehtJS2FTkP_wQ7es0,128855 +click/decorators.py,sha256=5P7abhJtAQYp_KHgjUvhMv464ERwOzrv2enNknlwHyQ,18461 +click/exceptions.py,sha256=8utf8w6V5hJXMnO_ic1FNrtbwuEn1NUu1aDwV8UqnG4,9954 +click/formatting.py,sha256=RVfwwr0rwWNpgGr8NaHodPzkIr7_tUyVh_nDdanLMNc,9730 +click/globals.py,sha256=gM-Nh6A4M0HB_SgkaF5M4ncGGMDHc_flHXu9_oh4GEU,1923 +click/parser.py,sha256=Q31pH0FlQZEq-UXE_ABRzlygEfvxPTuZbWNh4xfXmzw,19010 +click/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +click/shell_completion.py,sha256=Cc4GQUFuWpfQBa9sF5qXeeYI7n3tI_1k6ZdSn4BZbT0,20994 +click/termui.py,sha256=vAYrKC2a7f_NfEIhAThEVYfa__ib5XQbTSCGtJlABRA,30847 +click/testing.py,sha256=EERbzcl1br0mW0qBS9EqkknfNfXB9WQEW0ELIpkvuSs,19102 +click/types.py,sha256=ek54BNSFwPKsqtfT7jsqcc4WHui8AIFVMKM4oVZIXhc,39927 +click/utils.py,sha256=gCUoewdAhA-QLBUUHxrLh4uj6m7T1WjZZMNPvR0I7YA,20257 diff --git a/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/WHEEL new file mode 100644 index 00000000..d8b9936d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.12.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/licenses/LICENSE.txt b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/licenses/LICENSE.txt new file mode 100644 index 00000000..d12a8491 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click-8.3.0.dist-info/licenses/LICENSE.txt @@ -0,0 +1,28 @@ +Copyright 2014 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/ocr/.venv/Lib/site-packages/click/__init__.py b/ocr/.venv/Lib/site-packages/click/__init__.py new file mode 100644 index 00000000..1aa547c5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/__init__.py @@ -0,0 +1,123 @@ +""" +Click is a simple Python module inspired by the stdlib optparse to make +writing command line scripts fun. Unlike other modules, it's based +around a simple API that does not come with too much magic and is +composable. +""" + +from __future__ import annotations + +from .core import Argument as Argument +from .core import Command as Command +from .core import CommandCollection as CommandCollection +from .core import Context as Context +from .core import Group as Group +from .core import Option as Option +from .core import Parameter as Parameter +from .decorators import argument as argument +from .decorators import command as command +from .decorators import confirmation_option as confirmation_option +from .decorators import group as group +from .decorators import help_option as help_option +from .decorators import make_pass_decorator as make_pass_decorator +from .decorators import option as option +from .decorators import pass_context as pass_context +from .decorators import pass_obj as pass_obj +from .decorators import password_option as password_option +from .decorators import version_option as version_option +from .exceptions import Abort as Abort +from .exceptions import BadArgumentUsage as BadArgumentUsage +from .exceptions import BadOptionUsage as BadOptionUsage +from .exceptions import BadParameter as BadParameter +from .exceptions import ClickException as ClickException +from .exceptions import FileError as FileError +from .exceptions import MissingParameter as MissingParameter +from .exceptions import NoSuchOption as NoSuchOption +from .exceptions import UsageError as UsageError +from .formatting import HelpFormatter as HelpFormatter +from .formatting import wrap_text as wrap_text +from .globals import get_current_context as get_current_context +from .termui import clear as clear +from .termui import confirm as confirm +from .termui import echo_via_pager as echo_via_pager +from .termui import edit as edit +from .termui import getchar as getchar +from .termui import launch as launch +from .termui import pause as pause +from .termui import progressbar as progressbar +from .termui import prompt as prompt +from .termui import secho as secho +from .termui import style as style +from .termui import unstyle as unstyle +from .types import BOOL as BOOL +from .types import Choice as Choice +from .types import DateTime as DateTime +from .types import File as File +from .types import FLOAT as FLOAT +from .types import FloatRange as FloatRange +from .types import INT as INT +from .types import IntRange as IntRange +from .types import ParamType as ParamType +from .types import Path as Path +from .types import STRING as STRING +from .types import Tuple as Tuple +from .types import UNPROCESSED as UNPROCESSED +from .types import UUID as UUID +from .utils import echo as echo +from .utils import format_filename as format_filename +from .utils import get_app_dir as get_app_dir +from .utils import get_binary_stream as get_binary_stream +from .utils import get_text_stream as get_text_stream +from .utils import open_file as open_file + + +def __getattr__(name: str) -> object: + import warnings + + if name == "BaseCommand": + from .core import _BaseCommand + + warnings.warn( + "'BaseCommand' is deprecated and will be removed in Click 9.0. Use" + " 'Command' instead.", + DeprecationWarning, + stacklevel=2, + ) + return _BaseCommand + + if name == "MultiCommand": + from .core import _MultiCommand + + warnings.warn( + "'MultiCommand' is deprecated and will be removed in Click 9.0. Use" + " 'Group' instead.", + DeprecationWarning, + stacklevel=2, + ) + return _MultiCommand + + if name == "OptionParser": + from .parser import _OptionParser + + warnings.warn( + "'OptionParser' is deprecated and will be removed in Click 9.0. The" + " old parser is available in 'optparse'.", + DeprecationWarning, + stacklevel=2, + ) + return _OptionParser + + if name == "__version__": + import importlib.metadata + import warnings + + warnings.warn( + "The '__version__' attribute is deprecated and will be removed in" + " Click 9.1. Use feature detection or" + " 'importlib.metadata.version(\"click\")' instead.", + DeprecationWarning, + stacklevel=2, + ) + return importlib.metadata.version("click") + + raise AttributeError(name) diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72117092ab1dcb7437ac8b88afc566ff156c62b9 GIT binary patch literal 3658 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..224805802fc68c683aa21ab865ee80b233be23cb GIT binary patch literal 18066 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%0As_2fjXi_U7vep|LcuJ_qnVr*DF~v$3 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 TCNhM^>EXd)vEAc6Z2$iOlkJG| literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3971adf51fbed759154340b588fc555ad7bcc980 GIT binary patch literal 1660 zcmZWpO>ZMb5bf@1kH-_QLq0ai0?Wbyi8)}nA)yrlb|th31&LjVH0!7}neHTGk9(Z% zagvS35-8y>a9JTGNB&Y@Ipr_p5~{||GO%q;sk-{3%J04E;@-WG!07z3nw_=?`5PzA z!C~?>A=G{gjwF)iWK3g9(Pududof@5t+)j-FZajoxJ}7-L~_}>AhM-e!{FSD1IeC~ z$iK$hBkGnCt&1`#vqIZ#nD^2`m+G_}CptM$CdF;d@urYIL=}mtBr%igvLnL_9(#(* z`?4pOFZelyLN?@zT!pwV*C6SpTY3Rk@0esVQN}GBb*zk4Qly7dJ+e2QJhSCXTbf-L zq*EjEOe@!}J*AzO>C&}MGFcuv->7nGwBy@_Rw)4XW^};A8lNCo5}cA$yz;gHvU4_T zRb)ub#}$?A0h#%gFGTIP`Yu4=^7 zu7l~deHPFz{6hFRU8Vf?>|uk?{#$3ApJ}OpH4iwwSxb|>wEwJBCMgT^5}Dgg8Qgp~ zkT%2sG)L`E;QU5_E;3_C+RUqf*CDCs7laW3D=?#r89nPt@(ZD42S}=L6?O}dCX)8= z`~(EQ9WmF-bXI0bE*9mj*y)~CM^h+u5sJ83g96NZVB*yxmk@6riSJ|Vtz$JcbMpXB zx-LL#lEs~Pm)!uve)XA8d+=j`sLw*`-v;z-tBGavpyNoGvouFv z6gq$P37oM#Fr2OfHUWI=EM#Y!O-vg5x1(_0I0(eNdup$4A(U+0N2d0caM}d}q#_6A zeKd9S;XH~JH=?*6wOt^DPR2?I7YZ>hNG`pp|85G2SKEY;1RTjRfiq z)JNzA^#OY7`|P!+zCur(4Io8oN7|WhX4f;{jHg;%?I4i$w_g6!LFkutmc<3<4MJFb z0>BW%0?l!ZvBgA?m@KRlyL*T^%)LR(<)mm`JF&;T!jJtn0vp5uShr|%{{@OW_c#E& z!pIc$Tfc41J~k_9SynpLc~z=OW`oND1n@83F=0cDQ?u;?_cY%x5lZ-MF#O zJV+gwV9HCKmt0(Z9hJ>IY!qjqu0qC7AsVXt+wdY44Oda86M{q$T<}z=YB;=$*y!>8 zXg}Q8cpa{X4@twL#b@E>nbx%$4hA)^Ra9TX6RA>^nt;+WopV60wJ=Fn zadG+s$rZ@*=flo0IaFM#q$qe*&XQfO&UIBM?`vLuOoiZ@Zof;aOeWCz!9&RUnBJB>z7N~w812CpT z>AYf%uzb6eer{56&)%n$RT+f6>ZIVAHm$?SbaY^zyd7`v(aC7EJEce4kACX18-?g<*8<;-SmX@_~IV^?o^ktowGlR8p?UpQ_OWT`# zW?%VZn1)P6>>tntrMP!M{~`4sJ|@__>vhZiT=g7O7X>81J;!@Yutx~)cyNe|{{q1_ B-h}`F literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b451205889d8bcbd956d03ef80af1d9df0041ca2 GIT binary patch literal 8273 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 v1v`&~n6+Wq1%%9=ZT-67x&!zEVGZUAsluszFei literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/core.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d16001fd252ed67222158421802f1db300b91936 GIT binary patch literal 97946 zcmdSC33yxAeJ6^0aRGuLNKq6mOR{Vu@*>feVA)Q*Fpfipl58aw7tKujb+;-t&pqq^{Lg8oU7^^+~cUIz$coY4laWj=j zSbjd4NVo~tswbALqGd5{*X^Zb(b4HtF(uE^#kBk#C=STqOfe&W2aAL9H(MOS-()?9 zZRXq#6}KTh?2goLTH0FND(MaN?MpWoZGIL?ULS%^c}@JBz+^&cNXuI^p^V0rCr5c zlHQ8+L~%mW+v;~M-Cev}(l;T!ySQ7@+v|Il3dMq?Z$|o_;yseSrM`FR-r~KIz7^^F ziuXx6kM#Y;`z8IR`kR;DQhbY~cOd;h@c~KShV+BQ2PJ(w(hn6MlJp%&KU{oR(sv>~ zS)8;I)uF|=dRH-GJL``uy{-5*dGe^c%bjrVdc`ijy*hO1QTOi4R&mO0xc9mDzw8vJ z2jA>A-DUS}?xQcKitlirbN9LX@qDH_I%vC|>$?ZtcfOpuU={bdE%&hdB;M_REaAS} zJ@RtGJyK0A9=MP!K87bp-931+=Ym~)9Cvf>!?=4GcL#CzlzR+!$Exo{-gn{tY4<(2 ze^2#b^o)xPQid7WdCq59vI!cy`?VCOrG5>LKJg?5?;c z+zQ(BB;L4g6>qAj@7=gta8KgyWcA(1cLevR+#2p{a(~o4NdA@b1+$f)vHzO7G zWGQ$uxc~WD>u9T7IgJlTR+imzt6Dnim6w<0gMpLP7K^~kOe0LEz3Otc%%{V1sHl1Z z-_M;}u71T*ZA`Ur<6p75qX(XteylXRfB(LtrDM}iJhdO6q@J2Rx_=HYQ`0A!9t+96 zqwGFe_R33D)q#1D6EBo9-5>s-BxN8=?I{i?J|cy$t;EH%(kR#K`y zzg%v(r7~KNd#74C)x_T$m&&KB_-3KJQg4;~Qy8PtDYPH2GV%(Oi}cu&0>gHBqrd+R=Pt>c=6bgmi`Bq`Naqc*ZNSy%8xLxa5 zH(6;tPY@D#>1JzMoB)g7**!vIg!%WhV><+EGeAuLk!rkhqB zm`HhhG4|elxO7uXfT~*8ArN{GZZ(&m zJ-l3PJdM#s!P5tyZC1Qz3umg0GtWLzJMpYvYgP9wWA$UP`Oj9kZ11Twy=r0kTz4DW zL0GJo&eZ%Gz|Sl1pe+qml8dCovvXuj`y>HtStyw%Mpw9DHJa1`KBihEL)tz%SutT2{wy*%xd- z>n4r@*t~77)v-Qfy8@p0oBUkrywd^zUa(%WTu0ue2)cNej=q~1m~G#Fu$8a*dEn;! zauY}j{mr+U`LgSVaFK71$und+RrNGvwr^CxiH~cIeC1Rb*QKUgEwo1uaD7HUe^b8f zM<9G{Vfl7pozn7ir&xn(p}(@c47>u^n@Dw2QYThDFe^Z*QK`y+dvC``b#q6st<;t@ zDouG9!-Thwm;Jmv#ykT{RiEfq07+e@`FvBUa;jQ6U20S@JuYt0wS#!!Z^LCY=~#}P zu^lUY)xMg^W?s{&lsC(dGXO1*NNaU8#5%-b$BuWiC(5nLsghr713}dqt<_Cj5gH#I z+nooR>%m0CN(2J|f$d1N5-s4NR;Cb6hv~TFxixzNZ!n+YT z)GncafZ|eZ`OZH3n_PqUm`>ciUljk1M-wy`gKd8PB^PMHWeN^ugc}+$r zfWy{W#&r96kPBWJpbU(N{T3S$p|ol?bH6Y<;dtZdgF;G0rU(xc$?!qfS_4bt<&~35 z)kdqdLP#rBxzGD$eCOwJv0t!Lz#&%FN?T+2XIq&U)E!gy>)tmZQ+Ko$;O$b=bF1F! z78&`Y)#p~K0Q+ZxnK|Cw=vFIrV0?B!XWk${7Uqd<)&ZG zowr*F4!Jw<3Te4)IS05nB73SY8<(oA>gEMRNCpWq;C?0zB@Q^32Q9Etcezu5l&E0M zVg0JjX$~3tm4S^c?^XBsr&bmg>L}g?-PUlq`*2!<(t&Z#o~l(&$+jg`ovq?a4%g|b zyPHVoY!&+}{_>+L*E$xpY_L_#dZgKr28E+-IswAQN878FD)!Y1`gR6bkR?V2Tjed} z4;HFKWonmJgJ7B|pR8c7;y9eCx#$=&E)mXH*vu0LiRZkkzYMY~GDdiKqI#-)riQ(m z+kCABXkA!9CJsjhdmIVbe3gWNf?Rw7;;mfc*p*w8GCrqTt!01mo_l1sD=f>-=%XQv zD90~g&%3AExCeL?xayv=dxrSbz2`Pl`kt`#J<=;FQ*g>scQ61h@6CXv)iFh3aa-G+ zU#K_Bt>YDv*ycyvBw%?hC+bwX--nM?NEoAb!a7RXS8SgnH zSXJ!DQJ&%m%oXeAf)KwG;d8}j~ zs1kcT_(XSdGXGFvuM|KcTbj_PS6qay*Ccgb&Ckzc-POo|&d=xB-loBB*DHP+WV#}g z=I5V0a`@1bb0~p}80};AvlBzzOi5_RQmLCQl|WvtfE+D>2P-|dQm(TrxEm;y+-3y{ zha=y0$}6pAcWCDDp+nQN`<^&ByT3cMfA-kHBZp@X?Vp|N4(!{1VEU;i=DI^VQ93mJ zWH+r^5TOYOHUfv9ht$XM&)|uoxhG3L7}V z5b`m*ns$?qBnF+>f2r7=<9^t^=`uzJ8{Ch(kGOBc7o+Yc+-dh6NNsdK z>F#$AAT{QGtNWPyI8vKX9;Gx+aU9=&oBM=&NWQ-THO{(+@qDxUDadE$kh;$X=e2`frkF&${2~ewSM^&yeH0-Fe;>Z*o8FR$Le5Y5R}ikj$W7}x71ey(}=~ukkatoAIwXz~)7BEB= z%Mf$|uqn6?d{eC#^7(@;V1x##v3mU+H+990Nnu#+hL6mzH0s>bu@=weA=uc1?N%X! z772!Og?O4zYOTm7AL$Tw5^62%rVXGAe9+T5^c&19d2IYcCTRr=@tXBuK*ByP zK+Lp)og7RL$PCaQUbQUr3-ClazW`y26aap-<~1865V7#R8aH2Gw{kidbhZh^6WWRD z{ot`7V*~P{0^Sq7grER44>xY9Bfz0ezdA4UQ?=~5&9l7%0>ze23Qp5wn-|=tWdxXd zJ!mm80WdLIuRc@hzS&4u3no)Jc`KMWEIcH;F!zsD8{nci?=7%@(hp+9_zx{20$yrD zjN(=mT-DB0qvc||QQ+3})+t1H6?Goaq7VoV1O&~e7*W);;sfE<&#hAm+d*v1ZH;MF zD~KPI835{uYQ1@u6I26a|Dy_ujW|}@B)|{=d7=iE1q(;7KhzBv@$!VR*caRoN`N(h z7zmf@LJhJYwo;|JHt?Oal{v}%RPqtfT&JnQWQ355Ma%wUxbXix8A6f()rJB8>y^ZX z5v@5~6fDrK`CK3nJc&@?dWE@7tUt;%%8FLTdXXv2`=As4Dcw`d2BmCZe$JN9sZ|{t zX(RqzDlcP>(BcYF9Or0Py>=SlA((PP$?|k&wdJn|5P6xGfZhRi;J9n49`Nr{4H&p| zw&sFRl1Y`MfkTr)hK&4*NM|va*BZQ915zG{fO`+JI?$%qR=0|tb6zg{C_6d8i0^7D|-p)ugGBcp)FwWXCMU7uQpk_n&) zR>1=*J+aU~ACCIH6mRKGtOBftpmCR5dbCOSO}y zuGcDxFa0L)v0q-Ow$4H1v%E}dK#LDN77+s@?A0~E7JvuzuVi5tIPMg4 z)cqz1h3ge_5;RqSMA#76t9i0T!2)2BTGso2PtSK`|zMEqxs?te0W6n9dMsaAHW7&8Pxx#ARp zN>m=gKH7*KVYlD`wap2+#CGd~$R_Ys5vM^B0luD}pHb{=A=)rV*EIbkR4J-5?c)%j zyr3YFa4die3h=hP>Mzi{FZgT@O`4wvIw9ez(K#xGipi^;Sb;!9s-z+Ts7Z+u3~B3C zm(VtVLL(?mP4B~ny#*9XV+$0eSbLDW)VAUq{2^Jh(hxF(>y<0;n&QoSg9=o0dqxNa z0rvp<+1QZWjDppAql+2CqJ^Nta37jFg_VF3o?NqCq1g30?b4IB4on2SQ?McH8cXIH zRXJO-T?!dyOM2&O;#sM&aDA_eA1WU=2ygG7C zb!=~ID-BbCfeTi{Zly2q-2jZS5-=dx1zmOmMp^i~n4yUl-ep=a9B{2#;sQ&|c3`WE zoCiBe$$3zJfxnBe(#5xux|D;Fmvuhffw@-+&v6~@z`7S-7WEhSyEt-wpfiAXBb|)A zJEh;@@8X8@nN9}pHgsUegYUeKwK#e{+sWeDXoqzrybhjiJU`SK!n2K?oILvwo{gQ) zb#iz%))|&(-=)j_c9gs6{BR@b+9$2^!<}K|+0+@4Jm0VL;P2x2`H{{D-i>z#alN4f zJ7v`NUv!RNK#t9LVtKy+b*maNdG;AtDf7vt8!sn5llWZne5&DeQoK8#k}@pscX7YP zbzGXj;TcNb+}R+d|FJF|e;2o&-_Y5BcUwE7^6szoJN#YTc7C)oig(*&K5uea#&((K zn_IWYY~D({r-}4z*TF_rZl@K^+qFuo)*cUPro=?v`vCr^75^eqvf|52K6GQ)N4p!S zzK!hBuokSgy2B*)wS2Vddl&c}4N19ucT*+S<$Z_`lX%!2BRdW&gHmX?=Urr_-^|Om z@bWQUs5kRI!OOSu@=;zsh)XvGTP7HP4ZtR~4qH_3Q+)I7xD-c$vLLK48M%PpO@p>t zhMC;PHHuGffMpGVvxZqGv@S4+-Pm>fYJEZVUdDk#ApMb=r4y01N|V-YaL}xXW^kHy zLNf{Cqg5)w1U=!uACJ=GX&e6~@h`R69<|d}IyquxoDB4Yu$AMxoO&u(C&L`+$Tgd> znU`g#9O+ahm4Ss_)*4URSM3*2mYu`^mQ=34N6w|Xuk^u*xP89TYzpx=nf9* zu8FX~klTPXbB%4nL^?!oz37JcWnw_ycXQF=y%+JOUv3!02(V1?y{@gw9EANA?dA~0KLK9+ox^sh7K15 zEbBl;Bw?#-Ux1-g$H6j4s&P=;SW*Uq7Rj<75W0ZqwR?d8jdwFDx{^|p_eG?=|BaWQ z#-%tUdjbeXSWfp2BapYeEq$4zNOPx=v;#Cd0#xeQQBNb&3ayZGTSnqVP;EXao9O(vZ|fvJK15@BZ4hcZcz*$Sw~@Iw;oo!?u)+V{i+@k^ z``zYyJ)$rHqiGV}z~EDrtlq%fGg&?e(s7QeNRqO^Date_CQg#&3WQ^rM59QBND>%t z2_!|^aSnF(lMhNrGXP@8L@nT*_6zf*hbAO39^z{LGmhZ zf>Mm|Pl=kaR$#A1Atw;2D`J~oVL#xJ$aMi0hIuHC+|X=+T@=v{MoQJfPLaKY+D%zI zRW#S7)z<8SR$V}03gHN}Y(dMU1u%Lj2Xmy&9wL}||MO+)9?)8-+9oGM49d31923p@ zmF9AF*Th;>3~P@n+$;J_+pY<=9Uq593Pj-{OmAzz8NfyBRrn27v=;ln1srxTF2=1x z4e?s>r5XEhX2Ec2D_m~{io^9K;s$*h5{=Ncl4(eaJ7~) zN~O>;veKwUJqz0)0r+buW#A12lYiL8AV1xkL`J5iog&}`Xkw0(kk~APaJ5C-!}P4! z^sABpRmR*wpdG6cctTpKhBYikHYd2P2||Y5rfil!3&hs7y)(VYH6@_-=ftcun1g%B z%_A_BOJkqf4kFe`j#-(jqgH#^>{yb2&DM$UW$S#En;f?eY!6oX+p(h>AdDFp1Oi|m zI%SNK06zK^9rjSCBFYNNm6ekNCz3W1xChJ|ymo|I`N zL~N~7sxUZUHJdQ?5)FpnK-iDv^G|E-h>Qcpwd@mn9u92{mIBJ|O`}ejeP9Dpmf6r3 ziP{TAJ+24ktS%CY3z!9CNkj{aj0v*|tB3)i6`9mqcKIieg(_kg7HJR-gRHI4)II1U zA=^I(3GGs31h0uapO~I~tn{w^?**m0u=9P!6!mB^O^)XQL<`jJ`d#ZJy@vys8;Vg@Ztt=b3Qq`^tN`+tb7qF+=Pc~R(~M)8pB(z ze*6>u$+g58!!E-CIWYqo#28iw_SXu)Vgk|m02E0L#bnL0YvzqkC+N;xGmk9}Z09*p zJb?Bks10TP27*-pG7TkVhbFS2eS=mQfHnvUk`=6oFGvEFiFSUHLY2w+pe!Y%ji^c@ z5E|};{jIb)0im@04U`!J6qKPoh$oIX#^_$u8ETO$QUhOr^Cl-e|ZyvazCS6dp@`De{)x0g-XNrcm@& zinJuscdR1g=7}NiCCX$`axcXi0W~eSzUI?~w;c4_jIaio-CS?MXkwH~@bi+UW8e;Z z@-`?jC`9Z~Cb7rCmm-(};S1;=P2d254yVsxK6Py%@IBw?&bVyeh!A8-;UDoRhCIWp zHvZMGlzqUi9eeiB&S6L2JT$^K>{F}^ZZxQ27xsoeSe`ou_zEprA%vF<^Jbh)Q4mThFjs)0;WPp% zA(rba?XkV@$CB?3$JUAw@%XDqcT@X@8P&@|EJxQ`@b)0Xx;V%C z1-u2G`5?BP2%a&#fF`=QaDgM%APA_1VKxylJ0~~@9ji%qK};B0f#m@CfPR7J9}09= zXk;TeN7+^fFcBEt7xG6m%Hk>pv7{|G@=uDS4v3>?CW9g<-fTiIrB}SNfglA*Vlsv- zK}KS~C6Wxi8iQiYN@xE8cxIKxhIw8{PY4boQ?G$&yA*l5O_ks5B2cD<#jf%81sJc&c$0PH+Of(kE9R_(_LneAZvd7?;v^2|@p*Zpk67U}ige`daQGOkA`UsX!G! zd!(IK>Voa?I0d`RSvEFyo{mj)3118UsMAj1&bV~3l(G}y5(TcRq(6-rW&XqU2= z$-O)6U!4=8X$kgISPI&@NVrZggn|yi?h4ugaVax4KQ9D&giec2yS8T*qMnB4C`H_+ z;)0Eea0xMscT{~s*$xpbL>s|9k^G`mD?tx0nPa;)p#4NBeQ88AJU= zw5%A|;B$!XHQ4MxqN8+#03U$O251W-_x?afp~3A3u+$YD362O38gx(6qga@QqJ^WR zQ8nV3K-|&O_U<73CfpJS`cv!yBPcjff}#gku>t};N06&Kq$H_I)iEHdj$_AHGsldY zf}JqGBoh25Yhf=E=oCco(xuIC_qV}iBCZ6whZKbCh`nIm`_R<^itYA9*hRsQw1ZVH zfB+Z>PGD<^4GVe~1WiaP5V(MvRL`~W?DzTL_js8KE}XgUkn~HH_Zjw|ib+P?fZ`Xb zU&Px;w>KFq5Xl=OT-ZbYo8gLAQ+El90+?*5z9u+*7oao%qLydUuNR)6kB-K}k)r4G zu-+r@s;0FDGEz;e?lnp0U`aHp@bNOns~C^@$mC%67gj8AO#+f6eQogKEa2k5q1mFW zH)2K^DMEkmNP!sip`$FR3VwiNMX&lS6z(}{!~#MumQTe;L4=-qeRV^t@Px!GsXs&8 z`{NaknfWno;UCBFRiaRuU0ktdr5RWBG`=0ry+7n-D!9lrj?|mY(<{ryDD+3rI*BUc zBt!N%o~5ul8a7AN6~|X^H&$0sqas)o#f+%dZMFA*vrT^#H0-|zsVSz|PVax<@{?$s z_s2-YN@AD!kNx-WLxTH+tP{j1QLJ~%hM5a?0q+JxWJzAIpx8@Zz$kTKHqep?1xl-} zr5;A@L);$qN>}We5{c+MG$MlucK{ihMkJ1&%+KO#5OrXj7ebL?W-!Bu`K0i|z)bE_Ref7FM74SAP0BB23qgrepn_KacE88hKS z7;5hlFEju{{3Knm*$4uV>!w5$*aLYoqd(2XKp{ysizp7T5OF{}c!%&{HQOr8HjhXU zlNidt7a__Z&Xw3Fi3|2i)`Zpm776;M)_=fp1aqJwq-l}6atEgMu(+NClLcNP7Jo9+U_cu2|ND0y4aJVWiXQ$0h_b@ZE zXckNaEC#W{1bk&b=t(vH;syv4YWf-p?QgamlAPFT5rZmRIQ?NWwAm(<&j7;cfQ7XI zDqZi@S_1*DwTF2z8wBAp;HW}tSr*7*^fuDN{ZZv2dnV)I01v=x35^DY9?mW%_E$N~ zn{hFd{O5cy6rhUPU4_s4(BGf&YNNCcz5S z1Jf87h`=DNgFWXJnxWb4GfLbK3{E1$jJBrOeQpXQx@dDGLU)~EH>sCkj?~_xzSlDp zyd%hBU-F>YZdF75^%XlL?fzn1>umC3FY$4PSY{*KE4@OSTw;>H~9qwqSyFPRLyZ${q> zcf0Go2C$5#6v(?NQWdqdO(43NK#NTYXiSb4N#mqv9raNB@QJ3_#!2NLsDH@urxF`OmfAxu|A z;uFW##X)f=D%uPkG?Gs2CZ0irIpmZ-$XqW^Z9Tr~_V$rR9(s8x|3w9h} zO?YX*)Y&=-%=mfhNWx%8Zs+ATcB`Ycr5YkIaFuI>Vw4S4`yCE`-Pcm@PCP7KNs+ZLmap#!FBMF1MK!BLiZyOrl^thnnzcr>OOq4NKO z^*BFomg4o+A{)S8dz&Hqxp>)UtOV^fiqOL%xDDzx@KNw%n*V0F@3SO&Lct`&dIWo{ zkcMA7s$~pXX)l7fP&S}t%dtRwv|J?*6##*VA(R;zAx2hdz~TmOp=YrlG*8e0HKyf{ z2`GqjD5_ZVb%>dCe%0K`{4}=Qr4!g%(C{8Z775J!q^bX?43YM3=R8ug^L-c+BQ6v1 zK$>$lg{SI53amR$^Q2%%bl|`l466{OBLi)aWY8?ZSF~To)y+Lk=qFqyDQf1)=u6*& zhmZaLJUM1%i&>lscLtaPR#D!ER1k^AwoKiFX9O77>B`#LiUZA`);Ab50^Jpjg0SUb z2@z(52@(FIXHTM4M*wKXqD1e!?^gx`{pPu#LliP_8K^pi%Yt$ggc2Y@^r_fREifI8 z5E<(2B_a>_N5iSdeQPq`GyB&QFvJNEC2peSip0bcF))WKfJP9Z3I{2jA4XmlBf`Z5 zo#pVW)esgemcrlax52(Unzsr@X?{$9R#{$Ai=- znEE6y-^$Ck@$xBNBp==9RO-!49mEC0BIzqgU(x9wjXb}X>5TV9{PF$`FXBM)Q%wCd zFaMSoDSJe#>$KT9k-^Mo0xXIpJR@n=S6bdqn`c}AM6R9GG)GFQ%&=z zzeE`#_y2<+_y5`Vsg#@+dduT?N*4d+;44nT6{`SmA%Tl9%bx^U{vV{)z7M;{BG8;e z{6M~!F8wK=>hYAcrF>Q#@6VZ$GCtLJdFey|Mn2cW{>#ip3R7*RUt>yGb4i6`ml3K{ zytmiS$!{=~Qs&pMS>{!hQ}%G#<3G*p{c4voqk|_qi^uHJIsq{!GPv?IW1%H?dOowY zcv<0vnrDvyA|{6LLM=tkL@AZLAH=I}MzL6}bKZ|I=a2F7le~zoJk8X9;N?4b`Om!k zA}_zf%dhf6t-1FbymWaHb<+RE6zTMCh8CKL$n1)k+@lP^`=7l01uuWa%U|;%q&(>z zFNMB%1H26KGR0@%Wtz8~Os+5gd0euH51XsnDbn5R{g?am#0TuVb5?dJdqXy5kANV$ z19vxNN3u6(bJ+oV40mJMfo#qhwC$0r4%`w)uI8NVcs7G;Hk;0-oeY#*4)WRAz1dA8 zgB8>r`=xL>k^cq;br@O(U3Is+HzNdV7GYQ4pSR#Z z9)_7+aUa5AJ`6Lv>`uCGMQR*J=$v)m?oOe;8&Hl4O}iPX8FwGv--wh7Qo98y6{L3S zVA_2ipcTXORsy|A6#xQEL7WssWQuw{(40)uG9a6yO>BMnF%#C}>bAm|x#+oCI&|g-U zYxO4L|4G13b}Cu`g^UWf@7EtGf%Z8F90`(J#XCj=KzCOW*ey1k z@YB*KC#mMky=udHtq&%sU)=->2HOB+8JlgH0*PP77N}-(DbTD@gL14%ut*g}hmM9e zNoz7AaguWs4E&o3$3h3KtKu?5ESF;Nsc#fW85ryF<5Fg8;4K8k$gRZM)o4mA!4g9J zo9U*w3|yQ<@)F0IQ_vQ|{(-Cm!j^{elIyJ>Lx`J}sdkdjF-~TYQBbYw*F8QvxDbgQ zi2{WE!I(ydh&mh7w)G}aitp163=XA|Q4m%KC{6MtDDr1AC~DG$tq^cj9v|^VgD4X^ zIF%R<%&Uluvg#Vm#vVE7Nh<+iGw=H=z-eW0?sAOIy6uKF6XX9A)&zAae5BgL@eC>z ziSa4K=BzV5XXsJYJFrv)o3E$@hJZ}Ln(|yQ%5x1&f%{5mG1^-o;8__xmW_&2^RU8U z>K&lJq&bw`&T*XaKf8zhje1`C#}L;5!RTr{q z-3ROt#9h(miA)~Pg6^^6U=B9IJGeIl>HP@OoENAyFp=7UxMnu zCb_$zXNyr$tv2)wp!YU5H)~+K>aJ#Wlq+oSAwO0bMmFbasnriknm9upt=ls zG*}bsM_K`@fKnZ2c}xNiB_()~BLSXL5~wLHp_~RJWKu>#J`GB+rmTc#8j^ra2+?#@ zS)5G_s}aVbtV(5~M99#R;(RM!aN=sh!*Q%QMhX`k>A}&`JFIsTpR>2#cBD|2$ee|R zU$;OhOG;&dJw^1gY~(dRmjugp3lix~a-LZ-?PMJW(~16*WK(R1XZl+a zDt9tu#;!+acB}%!mbU?NdwY4fsB#}I8r!`I6lh4zh2Eu3sdm;5afqRA8 zk(9kT+=_KEIM!v}=`GK zs{B_D5v4a7Iq;2UO==b?aFs53L{7260^=M^p&Xyb2{c0mD-M{P0*P535f-$Io#ZEB z$~=haMKmiMK*}gqSadd*8*DXz(C{}cC%YwJ-{D+N$Qwkc6AfktHX$i@ppyY$WImU4 z2i@!|n2hK4bZE#rG&?8qy%>y{*_5TZ9j%q6ndQ=4MB&FBT3dfI`P@KciFO^}ejm!3 zTZyE&NV`cq=^e8?-hLJ3i*9CnqJ3v{ycEaTZ-K699-9a#w){L2h(eP%KJ+XsVZ;nP zaoX|hjvPn$oUQa|D$av6#x(KGXbH}m^!Z zq2eACzQV41{|XlfcZsmN8whLBUFL_FgRRE-Y4B?Ey&q=o!3buO?}pZVgHyE=#T+LR z#$9rLGbCQ7Vcf%f$ikxcJtOD+CMx2g0FI(+DS;ZHb|_i` z>(Vpg5dPZUf0p1>hpbpnF`L-4P#r zP{YN^GqN1Lr|?B|P>O??7!}sO-_Ue#=)n~#YmS3O+jt1wX*z?5Htn0E%QJ#0)EBG6 zhedMNPg~BR1C*-aqkRp{zKxTPxaA@2EAcYP6?FhC_O@g_x#XNrVld%&@iDwpG2|9g zm(rJUSCXM88QK1==%7Z1(b&U>M4h1Di#5su0z5*bY(2F`A!n1MC@+fCHlO-Zf=j>dPVK>`1t~1x(t;oG* zX&Ca;--Wka8fsw}Cg6C66wD=%2$*wH8gQJ%yjkrBl$o=}$ULp5evYGpeTCu-Y!x23S48bhJJ6ngj2?L+R!~?{fkY^_0fca-sCS{TR&rJ)U_KCQut4iLHC}zMHkVMC z>-`$Kv^uU&608K4!~QG7RvB+V%RYRELE)KPE;=Jzp_QUpSRzMOE;}%x0@0s#K89BoZMMn z4)Zd_>~fjrH)F)-p#%nA+TPnSb3Uo|w8OBEfN(_U%_c{$BL3^^nG}yT&p5D>i$FxY zfEeu+1%3a`C{-bI_(GGTi*k1f00+z=^>cuPN-F}qOc;$2WZ{D0UZ^@w4GQGoV%p7s zW#0f@ChMv9d#b<`@>u`{prnC{xbq_x;d_ACHHD{Fn~-p!BhcCmtgS?FxK<{G<@{@9 z(PG&Eg6TC!ny)*mTM|^%9nnv8soi0HuZrl45e}fFV}uRjzFdxHAR|~^fcqj$FzOKuGD0hoF?$Ggd`iStQd0jzMWe#a}c7z)@yw07IOjS;^W9bkd<=ZFOc z5Fd5G%>WC)PXTe<2Z05!Z+K5aOfX0%G5pP5PJDbsQbQ!})$#Ji_ke%}e}aR({saPW z+4lXt(8dW0tnLj@9|t%{Ome~w3x@CxV#K_6^71ZTp5WyWE)zMmlAq**cjM9>#MaW1 zqs{uQZ0`v3Y*55Ma+Xhe<>gb|At+FwniFHqZdSczBaJEQUJSP4h}K*F-cu;}B+KkBuxb+C zM7Y*46&PB*LY!cQtUtIr`VOw$zE2M>F|fiL>x^rNk!LX~BIOQ1-z%cu-ZQ-L+;FpN zg|I8xr_hgZ*Yci5&X01eM({ih;0!?YHF~$l#zn(%4iDc&_-!M>A-rT!Fm^l#F;NQcQE-)lS^q}p0dUj-4El+jK-?@qngEi-`mEh? z=|H};q!rqf zgF_~Ks4}GpM-b~uF%RsbGK0q$JoZLT9VR~qu7iW}jh#Hqf+`w@uXXw`j7_e6_%I7% zbD|bW*F1oD-P4Erm1LS2K!qM#0H8Md2|*Du9pRlQvsqVSqrXQ+Y-)kokg`1y`+M%S z?^`X+3 zd6eRqgI$))h+sz*=@#d;_({vJsIJ?gJ?3NUx&ae5DrE^itRN9 zQOZV7A#um{$=4;k90gu}t_6~w{-)UcMHWa34SrAH^Iox@MTGnFK&GJafIQ)WijDpP zv=YaM=zWR+N)}M7eK`q)J8<59ZU@3?ybGmfd|oYHFAcV`M6InM3d}Af7jv$2X}C4g zLXesZq$g2}60dbEoSlO+b1sdc{*CGxkt>}UNaxgIMf+MkUOzSXwD}==+Wu>S@5)7%uxcuM3*J6cB zv068Yh~h#8dcPyLhytQ)u4PC295Xv8)c}S}y}a7Tx=tt;T`3GTrEB5CK2WCidD21PR`*Nm?Y+N7D5AB1oVgm6v(g$kMrr> z#>+4B@)|Fc6vqgz8jCo@S5v`7z=GL-jbK42PCMIdoVt?)I9$akJzpPBX6?=JrKDfH zBE1xW;N6GJtK(t?f;ajY;DgX8#RCcvKFBhF&ar%o>S-2GPb^s<0T)Ns;iBzLUj)wB z3K7BOgg;GeauF*VxZ>`QfJwNRlt65EUra8heO?Fr-50G(8Ked;TdnNk5KKCDKZhVZ zmvSFYeAxbQasluKEokOs0(pi%Z{a%fc`-l`5&R7ot;G#)3UGCbsgJ;49)Cw$8v&~o zrWVJ%iZ0Dsu-!DvYHhk`T?8~!d&*Kw8U6u={h1gj{{Ti;iJn1jnQai;s2-S5v|nrJ zr`p-BkbeR}lR~>UZCk4J0Z@Jzu14s&Q{sWAe2w>@9E5CjqoR;$95t;UC`y#NB_s%>@c6_1%2VH4_m*%j$aoAHL4jM|KAcVS*Y_`*rv@Ty0Ox=rxBU5TLm+ z9gir%jb1r!K7+*;cBOzD>B^W^f?ELI1o#{24%kKOaw6U#uZcFH{hwiT=a9alHTQyS z9>!C=ln%*WG{tN|Uj{ISL0=$mutvU~ww>1}#=D!9%U`T7WUW~e1fqVq-dI_ZZBsB^ zH?5d-WdN2j{`JZuMOxyq;&Z%+4v;&c_b4wP;4`+Q*^q=O|7Yp=M8xQ8ZR{gD|x`DNK!oT9icrk9ye9A*v`e zeh_C@O9=H`^}dWYd4Gyag|KXX#K0IBVS0PRq-arwP!w&B-urmz@FGO#6uwhi#xznm ze-Ail0}59`O)`u>q`Jcwg*RHQcb*l*%l6)nXIoLU_W>ljn;1W}dDcf%(PeZ}sN)KI zVt%Ba`0rg@u{*GSJD>`&8{F8Eu%52MSL!o$; zI-5XiZ#wrky0)zy$NO@$jg3LJ_Gu6drmY+mljayjTD{>D*11s&y#%G`_*Y*_V3f8~ zbEL-#6lB;cmT@$JGosSv-v?u3OgTvGF=7nZMlJU!=M@*NgN$iI2KWU*I{+XIwivj~ z`z@S+q%0MHnYk5X;>vm-G!-lP*Fbm zGY%T;Jx(<#fN?wX%)OJx=S5e~!a|DOh#U;&)KUi>wol|HVwe(d3>xr`z|p0DBcwqb z7b0b_T}lRn;SA&o;4z_kgj>29L7tg)jl!fc;-wMk)?V~#O>Y2b0rFQJsy5Elyk;a>2Ul5o*Dc9lBJG@_ ztz%eL|L95mItDm^UmP%?n8C15#B@;b5{2?sHTSx05xZRF%7zIK#)Xp~6w(vRqF;0P z42)Jh6weyK>qCr8=JyL_l0R8*o&W~JnNwZ^zCOT1h_g}iBzRM-7g(%l5W-6W(BgXr zBvAC#ds>k^Yibu6!TJJFa%tay5Hz1Z%A*WLwmvyOqvR;+_#m-Lr3{@uJ-`ipxvW?O z*h1)5#E}g}raXLR4M7LoAhIh$AlEDap?NkoX3F(WGk%d>)`K4)MUhgoT)}*m&9*3F=yP-!ySEPQ5;-PQ*UbwVS^3Y`6n7v=|F| zwR5*lf>sari3E3}DPwC}NMQGE&IcXm(TkpFH^F{xG~)H$4Z?KX}-i zFa<()BvDdDBRi2*!t#F1%L{C-a4>sW|Ce|<&dXGAnP!Si$8BIb#8D`7Kg_v`d2R&N!C@6bw%d-fqvfB^E?3Ck3onIFaRWPWDI>?|Td zO(d9|&EVi^{*S}g@mC$fj%$a;6sgZ8$=yS|3Kr;+Lk&B1@-QeTDV=r)>Zzslc|^CM z#}jRGU~G}PkUBrm8o>DmU~XV9jhqvi^50{SW=>Trr>UnQb`|I#Nm}-W${`JhenhB< z-K3A;$L|MAg;WWpvsiJ2fILn&fe(g6;>A`VYfd9!0wAKHsbIPIASi+)1W7JbtO)i# zXQ~8bMm%V?ir_5dkrwkxAHtQR3C1{yH5-X&wLYnJs#$l#eiE;6jC4uFPb8tKaUurI z@2f79DRcn73p&PcaK_d9o;-5+vC{1Hq5bCr`iW#zCXN$OvOEvq zfCs_%GS}yM`5+#22lQ}xm++`Nx(1!_EAIj?L?=eO@ku@i#1KVzGirjDG;$GEF~K-W zwQ5;Up#Zh4rvl^ce0kW6*CP95{l3<4RFY`<59ku~-Mut>Uu^$_Rdxr*SPF z=Gq%Yg365!l@Yd5MZkdd#_4(u8c?o-C=eGgKEyB(p@~{gFcmB4K|^$`A{A6B{RCPr zvXxOelUd1D%uD#>$j=)?nR5pY9GKXqaQI6sQdEl{W=iw`x60Ys!W%0?Cby>ymIgg4+A)V{pl_fdQiyE4>lT;sWQl)k z&>`t|*r8y$VNE18N|#pI!?1JGu-p2^S`r`>%{q(&*PMI*gDmIAc$whazhde)d7&w# z_=YIs`iFQc3f;fv+d1CSMpBIG#GK2cosy!7T&9FD5}ft`zkp;)krslDyzk`g6kmjw zY2F^dr3CyUrgRcU={_gP|M~}0%DtN1jQ~o?>|k~)EcJ)*@22cPZZLaec4Kx+HfIm# zUd!HryHV#JQR0E_82JYTRH8yp()N%_*;a1VUdg>SlCPi%u^-Xh6j5Cs2@^!g&50MG zQ%t(U^bDpUL-4Z-@6M%R;S$~U{6<(;X z^!{bMVN-m;)_Irk;-|QSlH$xHpu|bavo)ZCd;%&mdjY6e021-DgNJ)0VZgOF$h@> zLCVTH2-ywp33<*yWVzyIw<323-FM>dMg$6b!aantwzyS!{-pbEJm30Zto7nHV2lM( z%a#8OBRZXzBSVFe2qYpRy<|i#h(tg~BlNhManPm|h|y10zVbn&3gl?Yog|{N#1Mh1 zj&Yj2*xf6b`Ymk{k$7ET=0n)Dp!{Q3vh5%_-!kCDNDHWdx7`O^%uzOkyBoLM$a% zJi?$NctWIyhT&lh>Q(5d6Cn=_K^(RWXn-g#h3y7~azuc7K$S*YmV{~w#uM1Q+3#wNS#to?*c?Pbjqrg*@-gt zsVxNM_3LVEg4CG=lljA_5#{KJc4pWJ_`MiNqq+XPe`ujPhcQ9z8d(CsP1%_A2;$=6 zG}t1Dq9@JoUqQG#AF6sMF%_cBA@FG-fz9Wtmyzj+Y?+kj#k69kRcWtm&?=POmFj)6HX1adV5v z3&v~iZtf3G5ytoxPy^kuaIqNtCH5xW4L$476K=eRk2#1UDjAX$`bTpH(j-G9G`@%g zPv+w3jAHtjp|kb1m(T!(W&0Z#l=iY3YGFio)Z-6eUZfrL>BQ4#(NhZOd+kf05Z$3lM5hEK0Zu& zIQ{?ANv6{HClRE?g%tNm8hb&)jsIZ$^n&v`oTo?Pa}km6P(l>r1qbk85dSbDmj5v% z2>IHN42C!2V+J4*!_a#G$6|DjgN;bQW@d1M;1IlTE(DL7L z$V8wpi3i>zy!;(6|A7~WZzZQb-efPHb_c~ph0v&ql399~Zw7!(O3)8@Uy9EJE7$`V z_qQRzb3RAt7X{5k7A9t+)^?2dXcFT+rp7xKC2BuD5ivuBz-E3-lewGWaMMbzV=u!p zN@5Mcwg`%a;TDEZ&XWQfq5YE!tJ+u4BVp0uXQt1gNVP8<(IBy=1^1H9LfXb-Dub;CqVwz?;BqS!N$ zbR>Wu&QR53bexbJ{0IxYr+B-kP2P8`)0ijNm_Noxs}DvhyMD#kcXbSia z8_F9nXVYYfyjF#_6DHV($og@IqkPC7kRVcy267jWSP>-;NlXp?Vu{6rD-`jh&d@Mh z1-ZpZ!q23k=0M9u2=v<0Qq`@&fC9&3gyDBty7Ktrd6q&@^)5S@B?W7Zi~w7zwG|N< zj_RA{dV-AxC5wDbBbBfeckR>V}qGMocVCjMASF zOcyxCQ{We)2J!vN4@qXQO%V%)>$aQO`7@d?E=wh$Y(Gfh)J{F_yY9M6QTY?QILu^s zCU%mt*O)Cr6)0>Ya>8FiX_2EM4&XMnNQgT~9B#rQc{Ps&d=fxOT@)o0W8$2Lufrwa zXDV)aGP$TUu&@6oEMm}6Qa*7VBxRq*A7vuF%9NnNDW;}z=?(_Ny^M7(G3>@f2j0%d zP)|r)1s?#@_UQ+N`P0NC95C-Iyqx6ikMME{w^#HDOVTX12&N0fpTEouQ@HnjiK%I( zSjM~2EQw>0+erKCF(EqA*aF8vgy5+6R0d?p8%4a{e-3Jqs#r@mB@4BUdKAtbQXQA4 zt9QR4oF`v=W2pAm(X#Vw!yltftM~sSss*Bz`eP6jL$hB%k^eksR?z07F;x2~QEe*? zr2B9yeG%wXq1{I64WZyCdr)xlpN4{EvZ7k{e*yxQGXAmXS5+*0a!B+1Gaz48ZXeWZ zgpQIyF~(sqk^f~7Z?yH%?Sd$mKZAC;Dm2=Ci=bWk@Sg?gk`#_DnJCireu0SMkC4Ut zFHHR+E(VvfO^TU{<5EFkU*Hn{7365&@)*S$1!?db!k%mpLViuNc&Q`AoixwsYUKW_^V>` zx&tJo;3?<0DUeYRJAiD;l)s1!F#ZEi02+l(HX?cy0X8;5AyyQT0$w0AxfZEtKuGj{ z2(rIiN5C{Uq3eCB!8RbB(!uuX!b7N8B!7C4-h5wZ z2gS#1NTEl}wrg$4pt)#BH(rte^BxhLx)`bq#{Uz`cy4rKTmuFE`<~&`h#G_MlRx6DRGgaz>LNWFf{~b zz^TwWbz~K;lEqi0ygp@Oa^e)s-@3b z6>69aV<*}BR8z!)BtfTs6(5H+As%j{QS~&Pj7Yb2u>M$!#8?Wg5~FrA#?JgVh*sGU z+I_Ys6<$|k9(>ma!-tPdL69OzOTvyzN_sCT4uRMoK#l+JF$^9h#-WX@$3cK7L&)ym z<@+z;0s8U1%qF|hf92C@-jbmHMYf#orjX}Bis!)pe~Sa@(XKbz2ihJ;ZLC?@c1UUp zw??KSm51c}?*%QO)bWSS*p1%ojI?j)Td%i|h2M|Ms_{JsO-tGQ8bKC;a)#iLLxQ$> zkoLhD4cm~_KHn1_K=J7T8_N}=BL*le!~LpPdKI8ur7q!`55gW%7i7Mi*GD~usxKog zyo83Ck=cv1>f97la*?^A@bLFBGTy657}*kI_-U?kZR}nWC;TU!r)&xaG*B1l0JAek zM0v&@ne8UrSG2wxvTJTf5;=k?iI_;|ESMw1KDU4lETdc{sNBIxoZ_uqq|uYO{W7PM z?a12gO=>b(p=r0jhJHvQFaBA=!bJtWFlL6daZ%#Ak&aMCd5#jZzLnLNc%cmYiWc7O zMOgyzy+TuF{~v4_{y}I;v1xmoYF)o5zw5-8W>dM!rMXmHnC7ZDPmn`HG^*0!IS@(J z;A3b(cZ2es2nIvN-}@4~F@@sPvSiM$vaPIY1j5DkxN52XSVsYfK|ZDB!~`=O$lpbx zClcEhk&**322yg0b;qBB-e(a~GyG)`XUNMJ#BuYv0l3D3QS(kg{+)8|Es0i|B431) zPg0+B!P){=6m{S`>Ve=*?ojqlcUf_R9gxy8y0iy61KuL0Gt(NRWG;yFmQ{A;bV4;U zc-ojl3SW*&;rYz`n@G2-`z7>`8V&eF!CC^8C5>&xFFbf6rX$$XNGHaX#K9U?r*R3; zs~~XUYMuQGK_#}|8S>vZ(E1`ZSA*EgAYpM66hFP!d6J z!39Va(PGNG6-pkf1VF_VafTKVXbm9;_d>V}fTBk@9VgrbQ#O_^l%YXB?;Oh-99bB4X9RH=<+v5cdHoiK zSRPeVPrH$-a&srxnIG3Val2rkZFu7{&`E^hx`-Xme*jS(EbpF+iI2m&8-aHiMuow6 zp{T(d$GiC?T(h~p#ZeujtMp&8^6rYRyo-rTDXjc7*DOP{uyh1bNh}V0-a7B_zBC|L z20?NBPou_z42Xh|ERdLAwh{UXG4z0Y(p2pF?|o+iA)-?F3VLJHDu^f3i&@6mgG7Je zl_VqSvE5KJ4J-};k3eGI+tNPm{!p~tYqWab9({{eE}(qaOu89_A!09L?EzkcBft0C z>-OVkq#t3cVFK$8y#imEPUcch;WV@zBVz+Eb_M`?j{n1gku$)SH%kvUq6G+36ZVlK zyr$iM8EyA-zelf}-m&1UeZun7(VU`pAC3~y0qJZY34kceN{IJ6al=R;qJH0q`IWdJ zh;j&REAA8-4P<9F;iRHH#m@P=@hy-X$yU&rvIEDZ9ysVW&US6(0syLjE$J3+#CIr= zS8Q~MJFc$m*rZMzemVYPM?cGGA3OYD#WRSI5%Z zSJNXzvkpRx@IC#?%zx>B$PU0K?Qfjn489l_t#I1D^H18j=vc4rZsCv)2`{3_=|C$O z+>>~d_#^RHPMkjSenN0?#IOh2VyZ3Y(gfrNT+srh{0?AXnyXkIQXrM+g2r&MBuk?C zrjRe`Pbm_FWg_Yq5RoCR@GT;QQ6G(19I&<3vENeOz7FFBCxA*Qe-f;|z=%vKEg#%E zi{M5p6>)DD=TQ@!tKj_`PRKC2fjQ*{rnb>83UF-Hzoz}d!hBHU(~9kLf3 z?_){y4Oz2Sa%N~AF+7Nhksavn)J%m7HgmIHLGM_4pQGHw!#TQLs# zkZ-{9W849_uPLgFg20hQq^BSsN#>C-Ip_z6wdFTRx)zWlEeQVLTdMizo^ z^SF_-k{D$cq3{_@ioTmF`jR@*4Au(EgfL4HZOp(w@gs?`Em*;N`b?5yU9oD`)ujOF_lce9ISSStt4HTsBMB*sqUM zWT3f}c)b$?v$F^I|HN2mou@d+A7{aWiXUgeLTJ&BPMJEr#FSuWdHY3X9_MA1FG5+! zLEe5hU;GhLSdW5q5Adm2aY#Ab{lq;DWSW>%?BN4>%AD77FZwwYeXaLD&-ZIe6-oUy zoR)s$I;H+5-e0i}py2OiOJxY8xxdX9QRldQe1Ct?oi5&cpXKE>1$-EI0 zDei=PxN@2L1EvI{${tKqD6rKX*2m9P=yG0C&_2Zi1Q4g0;^_W7b{`Qs(oxE}8Mt#G zmxH5}c5dQEIQq9Edvidj*c!=uIL?Gg<#uQHWYZ(gNGj`$Y#$lP?%RA*1%<|bXi;Jc zte*F;keW!MVNs*jc2T%U$YQ@C2Nv0m=X>2(ydUClpz`QNy8h>Q@lh;4?}wR#cWc_s zZ5cnyr)`sQPN8ecpgm~2H@VwoBN%dXa5!%6W?k)0svwI^PG}7*^a!0q6 zTya3$H8R*r^Idar-HbXM3A;e~r)?U=7(top5#&b*J5y&k!~Du}6wNbyf-(#{N%fbq z*e)BQP6ibk4Vr!};Aku|$NWc=;z8 z4V4ikB&J5$=>kyf@QhuNaX_4B8OwNeed$etV&W9fCazo0L2ebv;dj6p4=vlM} z+naP_$3mUKK^p!JDbD0(t3i{T)7~t&6@?7i#4~fHUEi34iy9|HY@QATfITy&?Y}t~ zoHtHe&^kKgtMSy^?i)8;SMYF6v-Qxbd`<_q!su&vJ>@>43PGIm87=OB)eID8XeK5c z4PB_=L`DNDGO(l_^mKwifq_2Z2D&&-ksb@xq1kYsfX$^qlfOD9WUtg}EY16EJZp$A z3M#~2dj}Gf4hHtxNn@|QJj|WH1VT9Erew<%Z2Fg2(ZKpYfX`LC_&`-H_-~3Yrg>rZ z&vPSYo#W{dJ2u0B)O;|kv~%m}UMBPieFTfw6^!h0xrk;*YaiSz$k-MI(XeI555 zxG!8>JP3l|QzNgBwm4WBFU{i z9;I&TOww5DP|0)>H%arFW;#tXjoQp~CTYgWOp{L0PVL0wOpw&^9f=TkkO7|Eur>Rgf$HtV->DnhuN z%h=@IL)>?PuPIie!JWb&ef^7?L9zdG8>veVB{tJe4~^b$S8D0)YPq3#-BSPoL%IVH z$I$9&^}^f3@k@+iw=PL!>v#7dciL6$2yS_`Zr3?+Bb(~oa9HpHw7~g3$ zhAVq^+S^RvaBa-YNpOH{7m=d~i!a`y?iZzH3s2Lp!x|>46!*1C&-Zd!D_b)=vud5l zyIOGzDX0R5b+P#`IfK5V5wdVKBA10OETj0yI+dM_;X=#|*6~1&;>$>z0!W$bG7MD%WA zyQ2%yd!iX)d!jX2`V!k4t;?#H*uLl@_PpOuY(H)Ma5PKoK=g?Sn_OZyMB0JJal~jX z92ymal`33$C*p{!19Y3WKW2%Da=WOTeyVayEEPSkHTEwp~O_k zj?X9NBP65p;s$965f(U6)Z(RBinXh*I4r0O-T@)PI5~`#n#|CGZCd=(q;aH+K}2XIn|xNJHvxM)NnK5@92YQ?w_(s3X(IG^OK z+<4%0bg_w|WdKrvw+yO5MSqR~^Wg-Yn+R1`aHlF&F7sV_W=V^JHVG{r?K;{l5`48v z04Q_B1Dy1eIayE*po&Mi06a zW)0MsdBsQEA*X;>ZLn3w%TSYcYTDHSA6<&l2UvNuE~_E-wOTh343Dj%cO0X4Y$F*+ zx8tU{T}nzZP{6LfqwZKnazcTd$m8RQ8Gbr0sX4nXT5F1#=HpK@_(}~c5pRR*946X_ zrlgiE!g<$Hv)-yFY0<75$bL#!>2w=}Fiindgl%G`)G2Ul!d%cY+rAt0>dLwdpt6Y$ zF_Q^A1MA`o6IXJ&lDDv?mht~h=NJt8I6|}8?B+l2NOOW&1lNn! z%A`#ThjL{925cq}?z5DKbDPf;nq-_0Fb5sig}@gYDWY@kQQj6&OSVdh{3U&p8zplb z0pGX=o)>)hE}M}(X16TJr{z|E!&Gf;*BI)ftX(!@0Va!5;v$mN5I9<(7a%SCZ(8G@ld=(D#=%LSiI=5W9Ey) zG^ay@5`gp>6@#~J6X7KK4o(dZ!v&x-W#F6egu?4d`-=RO7Awr$C5}D<0dcZThgh0LRq*aJmLC&w>KXP+ z%5cSSnlL|Kz*S3R(72e*^it+{xrr+pwrGo5Ej^P=sNCEq_MP8rEKY)S=jZJ# z8OrevA=0C?8m{$0W7RZi34Jv_*>)41NZR<&H(KQ>-?HWiH#3MWx~?0CK~AAkbTWXR zwE|uicO6Hl?m~-q|kp`^M$5 zd)B4~g2MhXz3U+Dg0l-wsuCn_izB_B9S&9ZPMPcS;Gv&2gTXOZqGt>}tdm`8z`o6R zZ*I6+SUao>{mkwHTc6kISKcx12^uQ*H4<1X;8n=$?Xt{iLbAIIOmQ9>(+{$xkgjp& zl}(RBHI^Uj1vmzJ>Zm#1@0{XTga=50-S+G0*UkIZ_~rFWq@ohRB|x?wmhpHTHj46@ z4TsxY#$CS+^sFwI_Oq^;lczVsJ%A?hh|Oo{H<2Y>yGcAzbMnbVSb(CB$tQ!tPy8E_ z@jXV)&AtFM@t^QyUSzMmId61&!d04%j$2teVq@cEqR!-RD08!FD=q$v%DF`On|)zd zmx-bOyy{CyJAz)^@D0h z(Vgw$FwIJS6qgwLgrt{}if#~OzgJP>xH!NKhy7A~VVp;mF1S;m!?i~%p33;~_E5G6;OpXl#z?j+r@_GO()i)_y@$I{5???G&g|d-sb(vSH#xBv z{~N3bcD}v_>@?v%&GCZ@G@H6X%dX;>Q_IYBa&wSfrii9FuiLEJR^L~}@9;%@P2UQL zV*}g2QB1HK|D9srCctUF^SDK~`AdFr<9SuP!&a(Q>Nk1qI)4cwi&@%2B=MCc;%4`! zRq!`eu-2}(!fNbjiq)MiBWs1b#5Rzg(zg~&EA}%4_X5YwcN3B3g#O{g5t+Zk@_l{ zA_8pbSI%C|-h;oamsbsniQ{$(JwMz|wHjy+9#9M|Kjj{XN-sB%l9w0WN1=~83Ci71 zA#$XvZ?gM^V61#^4>Da}9oLO{lKbYkH@2?vv9k+{#)+>lUJ{dGlHovD;LptUXz-Nb zTfTq^C-c5`kZxhw8ZV^s0;p&Ur%WkLJn` zmlta&_^k-I8@AExlb&IrnY?}}e+5)l700bx?na!!bCj)_N(rdR7ET6=*;+856!7C< zdfRVIQ^@E`$A>$C0teb(QA|LQgI9g_tl(AWWR;-=Uj6SVCr!0)wD)9?m!AYXz*_8t zKAjT_hsU?_CcaISP~e(bR@df$&iE4^$=1_P>I*HKWXA7Nf_*Wim<5{gaP@ci_@^`! zBP2J#$v0YCEH_NuYWUTphC)f2%5*xV6CvMbnks2W>&EE~ zE=7SO+d&%crMQ25Uod~$hq;B^&FL(*yzpC(ld$K0zV#ielIAi!T;X9JOxo}&suBxu^sC;S-J&ef2qXUihVgvh~M`l`TW=f^V4 z9gmqDgH1PXd%0{?`>vd8DqCTGOPET~j>fX2F1Aw|mJtx`QP@zK3-5b!PP|ptX*<4J zaP#-VCK#Se+axw(c;sD!9@{A|4NV{-v$fx@st*59`KlxVKf8d00eJ($uw{Hi;XfDz zWwJ%T(e3dy6U3xFQhP(?xKglN)i@Tw_wdvDRsu6|26oP(^NidKZPUO)$?rCONSG26 zI8TO(xO(K`d;o>NXMxBJB`IN+D3N)hm<$1@RiDH@=PSTHx=CN-k5gzPx<( zYs%~DEK`bEAlzcB_}7F|r2IXy*EE%6HC~DzW_`yulUi7L1&oo>vbdjxlwb_|@E#RD zl?GPV2}=B*s*B86r?>ZJI77-|ka^7{sx9J7uI)4O+vVb7(<2*%vV#1-Xf zp8GLe5&cjuHeOcN{TnsQ)t}~ijFK8w5_WKw=dq1G%VV`|RL+Wuloq6$pQp*`w7Yyo zVnqbf00+W!!G{l44!k&t&Cf8JMItf=Yhge5bWc2rTae!7FkuOPs1%P#wMo2Cw9|YpmZEyp|Kgx|X)HyJ zr%KIR$;%pxk4B>*hqToPKhwLmFD>N(-u2j9T|(k-`*Uf-o~F9v)2%8tvc0D1F3VJu z9Nmij6jqO}@;I@p{VX(EIxr>#XINb)BUuOw=Wx4&0>yTK8une1BXIN|o)UqxlmU>e zhg3gi$jJ80pI+z3=g>ePvu^n-fMJo}^ha@_sa+cANh0m4R0m}gdJ5dt>b<U*gW=@=W`{2NzZ^!D34tL}G3U-(8t-GBMy3e+osA{$4DWFCHVo zts_kb(Cindlr~MU*~nA?$NGUa)YW?MM~kSSggG0+0xm-@eY<@u!{8bwJfq+j!r(Wv zPRdF$bG$8m*WS(gK0-t$s~dzE4)?w!9*rwv21HwWU0%|yt$l#AX8Bec>Q}7X`9_-M zA8l!lVBVT@kVwnCh~oT;0e?|&#V4N@cx#GkTowHWUL4VQewd^}H)&F4_4ZL7TG$h7Tu?;@SQYzpX+^uFLoLLl z8aYpW0qUwZ{v_Ya3<+kPFO|`bO~$zz)n0_6reoYU)4tsg^s(&ZZ0Cxj_om6*??t+f zg~u|C++_RCZL>YMy0mr$Ct4f{cwRKyOPmaZ5Yu|05kE#T<}?LI+_-=CfB0MY z&S0hTZCx2v``dkuEsYgRrp7k+5iy|a1Ly#`)Oke;Zd0mBoxlcB73S&}tUZ{)+Mb^F z(Ki5VDQJChi+Q#XUHqp642N;1CStYWFnLq2>eo0WeB(W8oMB5f6J%x3Y0b1(2BJ1r zc%jzi3zmh z12d-{IX$1LQ61B{pUe2j1TGIpZHb-_`i|P%IRoh2l}a-eTIn&Zn~VCC(ayFOT&Lb{y8@B4SA$)@|+4CC^*!&9;ScEpA z>4aynxH)1ZWDc=?7{G@#*;+sKMx}RONz>gvkWFr9_AQJ|A|Gr%soCujJ~p2s66y3Z zr?RHNO-?+9nm#B@A|OsrkXlFD9^And3{~LaW=?bX!aS0|a=cm&0-*B3n*gCFgZigt z#v0_>gbeJ(^sDIM4F;Z5Pu{WJWxeQfVt3=DG%S#YZBwf}@&ln96C0&q zX?252W0U(^P^2L)RQ;z5!Sx|=P-hRH-y4XB^_ubL@VsrAMDceu3$LH?8@9x#*Gx0)v z`R?`R7bvX@3#9UC_seaRZb^aPG@LIZozb$Tz!$; z1t#MssVil4&*mggZ4h&Gj1u27Fc^)R*Vkl=))kPNSqEvDu9n|M6V?Hfk`n;QO)7%H zMKrO{jO_HDdK&nR7oG_O0C8fxuqYD@yZ*X!PAFV77k!%xZXZLh(NfFcPqa0u9?W!X z8P#44&(bgK7*p&52ycCD5pk%eXgpIn>?)#;IPaZWrK%}g0SNutFtWDk&GmR23NPfP zGs2v0*{AgQc?DO&B(Q~YL0cEa@MS8Vzy%we z6-?5nJdM{hcZFuhB6iRvG?kJ6+<4|uV90OttI2GlEsFlFm_(V3FLYD!7K6wfrVA@Y zfwuady|~0>_&w)BfehQt*_pWleLYq39JVf{!zz@a6o}%brDl{ik)+7VcH3C;7<%Sc}cDF zxRW?{-cr&@@4!*Ir<1J~@*fsV3b$zcpgHd@4$?&EhR|MNsbossVj)?q2#9e$2?H2A zGh%{rbYme)I$L{)zeX~0b_Xid8!WD9<*suUtsJto6F0;3WhX)vwWS>FDfaMMYihKIQ? zs#K|zuGhJ*>p;15-JI4CN~Hy{&9$+5sXT)8RL(Q&mC`kYd0(sCUb;S59jqX$zrL@A zxFWCF0FIR**Qwv{x6PR|tuOx-H_eX{*kT2XHAu8J-R%;qjGvu)ezO*q||9HIzt zP|ro_K=z(vhY^8~BUCYPVq22P(40b7+Ry1oAF^qj*Eh76^TsBn$7m>t2t504hY#CE|&Z)!MwUNTp8^l1vK1V~G6LS~)iqsM~l|^Ik zV^@Z8rvvg2m-Pu;G9Y;`B*V;+TyBx)xl_0cvYTKOBz`=n;yu}6=8@SWgUG$Ete^n0 zt!Mq-X{QN^s!7JCG8{5F%32w8PcqxN<8EOEi4)!q!$-fkU|SLt-}U7Pd!|3pRT(j6 zQrrPv*Y&bXFe1UZxz(#BB5il2mxI!OOEKNt=5t{358%ubX0v zCJwrCaH`!Oe@jLGhJwdbs;PJUiDJK_;BWQ9IP1^o(M0T)&-BQiSDFz!OIy*S#ca>^ z9er!f|E^+2YKyw^aYHW#3BFj1O(C&Qqmq^QeJZi8w4YGU0Rnb}_bByV1z%C{hYBp` zi;4|(&1B88On*WqsxvJTsh{MEv-gjaR;a`d+DFw0d%ueq-)D_5YMvdyD#o6qBUSaY zSg}95pgI#^u7&Bv>&(F|^_?Hz( zb=CAg;~k0_Dj!y129qO7gX`~!Pbe@>iVXzZkg|vo@{O3bRmQ)>qW-Zcb9|4|3>K#J zm<7{%6sG>KeSq=@iO5w>WwunY)2V^vlq&osb?|GAM;iwltqLZYLM5pcPvFLH0cADG0 zQE1W!;ueFy@Sjn;a^Ee8ypT#>YFQZ#NQ~ ze->lg$ImXA{gV`O(W^-efno61Wmu)$0Y^_`!Q|U|BN6UWPpv3A3vhXBe&eJQF4J>g z$56@I5NL(8=@L!I?%qg^G51vJCOM?jbUfw2M$!hhuBM;)v*!x?z!=|awY_EmAW8yG~ z^_Gri06+)d{5+(U zeK6JWb$}MhVHd&WNe|8WNnR5?ZP9q{N5Zvdjsr*n+byZ<3F=oDng|8ufhc~; ze5Cm(6&)BQqVIxxoCF5V?S^V`vYOCHwRvGtqN1D=fkH2nQf?3%iu~E&5(X3DC?8KrKyh1%fd5 zU1o&ML9#GXjsS4!B*#Aam1`)$zCwhIx^;1iq%?t-Et3amL#+*Xo?}bBGXN)BkLv>O zm2I>0CL5U-lKFY3?DO-!sO^vxmlP=q;Dyn#a3T)6(v*S<^I5WUQ<+XIuU~4y#TeX* z5lFttK|uF|{MT)BX8G|LBR;Nq04`x?++b6aDenQAObPvYm$F|jlrPfw`S~e_bUKJh z-#Uh&DZ|=*(6R=cwgC`Rlkl??l7XyTY{txW#(U1spXkPRzMfkKJZ7ZOsQMB%nFR!v z+m`XuFl6lTa`7NADI?H*5ww)yv&y=6{GMD>=I8D7*EnXU9?7CCLWJmnD^yy+n>8P7 zJQd_*7(dF!?b=S^e{AwuIEiKcA=1q(=G4aHq#T6%FKA>$d$TXl%lIWq z+H7Q?>Ng3PB;?I(u{KAyVlkK8m}F&-w!qJ;F}h)EbI@jd@%;KSBzSYco_zI~d<5fh ztytgOOAxUr#pvW`HxcBYrlj5vRnJ zo$(b*AJRD{ZTzg>Hx-WZRVXL^_2fBzh1jm9!Ukb~{E9pi;P+tA>iTu7t0(^1*4WkE zuj=bPYoqkD-r7q)e>IodM|>X=^}2av*wfm((f0xp;JN*Zt^YRP;P;?4wzB&LPB%$E zV7?Y^AoW1}WkPG6#dbBnj3ilYAk}8&&xze&eYRM5rxer~c(*_PTb=OE-LQsEzW$mw zhl3l9&-KQ8y(h$msr|+Xvxk>d|DL2y<%#6+VbuIS++-dfZpODn&)oP1_KS13Y>W^d z!Ux1o^4_~qR@k~V8Vb;HTQvMsiL?iRm>nVQ0M|!7N)7trQPM}U^!UT150S3FHphyS zXJ^QBkmn1$yPdyFq>qO5{XDPpyi3oizlgCJ&Jj!yYAa4c#MA9Na2s)9$-F)!TL4$h zIqb{Yy!9NObn}DXW5t||AJ;m3mx3o0Op$2vVN}-3oQ<|8=CkujJmdJ?e$aaJ119P- z??ul~#(P;FQv^~h2{G>L6W`@Zi&A*1po=p^O zo;HRa0;@lnc%5+|kQgT~M7~ON#!z0s~O1#qLqeYB8br6rarw1d1c3BYv-{ zc}>BTs+m@x(VcDd^fZ5!NM$$X*HY2Hj;*A*&ZuJ-Q}5-nb2ZzhjY1u;@yDi?ym>cE)a)YwD8SHwkT;trB`@ZV9@hFo=-||;i zyX!PLE4##Zb@Zfg`@!!)GatZ(2dB&YlY#i(RVwWr@3n>VI=(y@3bRHki-tYOgL~bF z?r^79=FJ2AU>;{$eNX~vhSZ=m;5GN_fprq6=NmfDEVrLdd7SR7$KTfvMn>u3P*S;u zF+_5Ok!&!enr1U@fRaIm;Ll(kUl{*hag(f96zi7Vpg;R2D6RiTW$%CwmGdpZ#~6_Y zH@NvfxwBw)zf~D%?+T+|@Mn=bMc})_IXiP;dbu_iZ{i`j0l{?EWR0+w5r^h52YY3n zrzhxs>6Oem0oGxI<40g&z)5&nJ=`uGp5XMudTv60TWsH^Kl$_E&6?{RboNnSG+=K` zBTIMJ;VOm;%|gG5C&iryMmi>1RF{$;$}x87gg{ODBf3wKUl^b(RsLdqi&F8D?pD-2 zT3r2EwXPm)3Dm0IQ6o-$SE`@j=GmwxD(m9UsDgpUL{tSNE8P27-{`|;agkC=8}*1I zVwAc1uQWFLua*JpewdEOH)>Z=ciQNe3ITwNzXx1CDb~1JBTr+a5r1%_LaII6oBj># z8sjruTUXoYLv5<>6=TZN z_xD`wj|QV5n7sxy>jqx>-u#@#Bz*sqT$lO<7!7Xs)n#~$#xRNmrJ%M|ZvGN?Q~naE zJ8XtTE3)-y1^rnYyj_wH-G543j($xGzy z6mz^ikte#^CYt*Xqn#p`91ASneO4mo$wj6#{ZU+#e@c@r@*x{Xzg=)Z+9N+jhWLLG zVCi=gkkWAkwON1r>cWLH(ZYjo68Mp!XSk<*dxFl`m?ci3@@KmKMZ89CKWvr-xN#lr z`%jnvTWCXjoERR1>w`2N>P6_R5oS4qfyhaO)*Nr&$&G{lRvJ@2Xwq3m=B$q;kqoCN zN7|3!Li%CY2>E=wpfNOYoJx~iJl*Ff+t_z*$*hvb4<9?mqJ8JYfT$^3PRyK9X^G8> zbF*ryl=0mfJzdlikE@6OO@RpLW~GT6cjpAE$a0oqES*j3BXcifhnGg*#X8ImCw}|P zV^wprqW;e|TxAmhL%dlv4;Py?mp*q)lpRlwXpUq^P$@eS6aj)TL9q6TKoOUHf*U7u zO$tg;W>k88xW+Ass8H>*9Cm$*6s91tC`~D!`K4;qQdFAvc#|C&7toA!PB^=C9ZwN) zu%y{`T`8|=SI`>|vSTUZt4*FlgjFBe5EiYx;&%?0kP})7}vT9ICOB__`6CydE&;Lj;Hom zSms415jsULkjpxCX`(?h*h10*tW7y2x2;O=XL_Q&x>xxhm(H?zj{064lz|F4u#!ZT ztSrma_!eE9X{l@yg|kVmT)aK1U#Wb$bhY|v(ws8kMz0D@nFiOFxlOr&GH+irfYMPl z>feufj5c}tJ{q!o?+^Kgm5)3_VEP>)2l$ziKBgSJ8PV5#x6@Kr{5#Tj>MC-*fp+{* zG)hgnm7QCNnHtVJeyY%Q1U0DU% z3)jCeWHzPJ1bEzC^9+vsm*xQAW=jCb`MU051?UD#d!#;oR{$n4E0W6w1;>nR4f zst`FhK3}hwF}P)2*Ufogqj$V_4-Toi5B0U(uFd9eCFy;{>}04l{eh3RZO93&<%7Ig zcK=%-DNv|gacjKPZ9J9Y+d#9<2J2Y@v|dkRO^7Kr=Yv3`5WMGmu!XWuZ*PET9#hf(E4cq^$DA}F$SO2?ZEE;f7T`rA_4M;+dk^siJuB!zg=*SLC2f1l|= z6ox7yYg6tF)shR;Mciszj;fWOD}A^IRXGFvMNu*2yQCOgZ(sA1tn#n0>U&y)W=!yv zjlTFZ=E8G;9`)0Y`r7*_wb~kLVQxS#z7RF84kKJr+pDe$OP+UHo*gSAFY*gc4Bfb~WA}PXFFTi8&=MMEX ziLJ)sFDbqGrHyLyOVJKe5g`P`jXJ%kGlo0g-eY61ueE>WzzY&q ziB#SY{|({3m4nd`-+KH;%__nxz2A5BCg;yBe?R4nVt&xGax>3^V7yYai)R!*C&p$R z{=XkUDIhU{ln_}HF#1N`JYIGlTg>BOJ%t8Se+-c?hbhv0Io!{3_<5E?d@BXFk92~! zEu##Pq_**=PsSsBaIN=l2c)74f+88zM7VjCKICBXcu$u4$5>hd8!#Vlb`7{vmbF z?%?dj{gcmS_!H*EkiJk-EM#UTWwZV4Slu63yjumRy|cUW2RKGKS~03x!S{}zsx)NSOBbAH*r(6+h^qm8UfNJ8J`Gsobx7ZohFR(x2 zbA>jI{dt*)e5pvcy4m-xp6BI-L>@@cnkT))eeLE=#@zYri%4bJR^&M63byY0k~m8X zv1BHStar;3oq0UwrIr!V6Ud|O%cAejTejEG_h~+v9XANSiN7a`> zx;pP*$=2FmPt+r{6FAZ=bVo^P=rrKk6sH{LaZ> zSo#^J4Ww#w+5-L!yFeG9WNXAT*Yb()Yza|isFm<+J9k8nk zaQu2mwb}Bwm2AuZF{Rz2z;K1(g)Sw*(qzk2)y>Lg9sQ*_zi8HbVttyXu+5RqcK?MI z-ceo+*BX^tc~Hw_fTdJHM#^$y=Wu=4WNX?*kp8VwqxQ}A-fc!<%Tm$6+ftb)QV^__ z%phSjtW4(}7a zlB^K-*^r!DOT{Dk-g#|Tlzc{aJ?W5ND+!4Q8VW_Nz=GMDmPOFRbiO$=V#ijG<;`)d zoH)Af%>LG{5JvXH|a2PMNV&S(qANw)s@=SzF-_Jfd(eiX70*9c&|BE z#YIjfevI4$S6N5YB7UwBpCq*0@yV7szF(=ofKls4g_>Dy6O{#Ny`Mw?*RfKH#+hIW z!@7=xx3j}eLC48_=TaKqvVNs`je%98`l`9u#e z(XD&~2CXyhI*2vVgVTIlNSU0Y6|j8E!~t@-NuL{#EONbqYT76!DZ=PpJsU) zdAbFXRcYSx=^lKsNN5EQ=Wa_~07SmJrJ0k`G_4UoEZz=e@GvuiCQ)YE*nP*P9)!_?!w zQfz1Q1;WwzhpmUCbnhWHe@hJ2HmD@A*G7Fn4CZ2TO`{vBlPG0KdF~KD>U>EG+`e>^ z69TPpR~#^o)y~aH@#Sx(-Z^^cC1v!GMVJ=LV$3fKyZ|ptmC=w!`j3F1D3%U zw@V|}mmlxV&?C<(YeC9rJ+o`DHeuFKxG^=?x&p4~>h@$iqIbH$)dIiip1a_Z&b_L2 zdO+Mk_H@U+WzlKJ{Ua{^rA-T(nWr!~`e>c1)6u4PNH0t(&QspQhH`{LinTp^vK5!V;59@;3 za8CH_-Q*Y@tXD>C%UZv)_TS;O@2GrP*6iZ4N3;<=Sot%zZXY3KRJ`~|{hN{kDu?~z z5fnb14Qnc|FARqn+!YX;_>mN`9pwS;z+JZYHg~YCOdYt#JG4P%18R$1Xb)bYG;@-D zjE#*18}41sb}7btm6T?lvpN_nz4&Q$TYF{g$F)lz?oEZ2l1=9Pn4)F#O%-JZnYPz? zi{|MNAN$2Zrh;N-lcq{zRLAyI7PIzAL(%8ctPpMP?CqOXvc-%`w3rdAE~<&1&o*k7 z&(7^Fc2K2Q3#7>6>W?PVmx7|3aGG`Iy?QH8b@7`C*q_~__xCEW>~nhcFI3p~>3!aW z(je))-dj%5sQ5l*+VzHQ7fspVx=KHxK$2yXufzuTM&Zpc(UykI-q)37O3kyt=5bn& zvYgw)^fe#i$;=U_k)7B{()QuV*LyxWeADo*My>Id#$ikkPY=JTad7y~JyTZRB1IK` zM0WYk7;3bsTSQ~-iUGRf@$I5Xje3bFG~og37H-;9IzY& z1qnIT?aBd0Nj;Uu2T6VwyJs77;wEvC`09ad{aafBFx{h)ZugxOEIpkSOfTTcud zW_%Iaah0uhTT)%Xy?|hZT=a_|p|>gjD2R;Z*K;q&d`QMxy|3bomgn8}jFjqC+|fQ& zK^9hus(6<`TE)@a%`KEWq&(5$=7<%9{J5P)sJ)DL0@vNOd$TyJHJOTOteFIs2}G|^ zi@p7}IV_Fvcr4e|49-(am(3(7>Fjt;70`vY)%YrfIf@ftI1%|7 z(h@0);V2s!8A5BBQCU%EFLVicP3DlDTUoft^x^FS6J=7dptly znA*-Zbbzj7Zb<0W(yLPB_$seC$}{`(Ost%d&nezJ4VC%wm((ihOe5_?tkXW2w&ovr zw@XA>-C9??+ofrWQ`xO9+T%t#uhdSr);t_>3XF88!byu#`l2dM!R{eXExq-n&mB`= z>%ArZ7#)c}s=y|GkQfJWHUfsthx95N3&YnoS9YMDbHfqODyNN*1=DoK&PIP@z1P^`L)*&eFMFFBkQO z_FI!yYdA*+3GUC%|E4L-=nFlc52LMD&f20bDdKq^7d6tmDo(_ zzG!mLXyH&4RZwvn;g+?*N^ZgmIxJu0%Yx*F7G#ne$_Bcxa(MMBS_@&dacpHy01gQ= zOp(I_1D@aK@vqb(6*Jh|-k%JSIgHuX?~ZZ{a~fET645cLSId<4z9O$GcxJzweDRus zZgq>|e=Dhbl>sOn?BOi!6K1LJN4{ zU5$6+_Ks^#(su~=P_5($`T5?7`ivb>&JO6b?}XdCwND?;J(+5Jrs{73u*AqZciHd> z+^an`{UW@{o}yZEg5BWb3O5~FodN%exV!*oM7zvd2I&f^mFIitD#uSn`H?^u?yl-;u0cG zc3Mu^k>5<&#c!sSZRg54dFQq!+7snG(pi;j723seQPLAgPnIVookx1AJSFJ@(uc~2 zBwa*$x;!oENu&>#4@-KgHPb#)J|gKut=aa`@=@FJ-L+%->oSVtnsnhSeWlvpG52=Td zdbIF}YN@t*LOuCzw)~iK)KeeWs-vD(^Y7-$k4yb?{-o4@0#8q>uKJXE=3V!uU4BZQ z*VVJ5&jm+)OKG)$ylheid4USmb4gyoK~7IySI;v?+Bv1p`-h~LGt%mYT2wDeFK6ZX zhI)DQS$f%2Uq&8#kuuUtU%i^-#l8HhdYw7tvudEes@}w$=P=7lnB|uGhWZuE^5gOI zw^doajpwJ;chpt&O_ZERs-mh$os%9Nlyp?>gN*t$)le(%PLxY1v8tLV@d@QzvgUsM z-^g2Yb~IV*bh=?JY<4@r(rr7M?yaj@=vOv$ZGGL>C^50(hoOHX{5KmlP$GX`uk_k} zC*-@uZo6IUD3k247?RnSb+@;UqPaKL*)XyS7i+rK_CsGI`zTth)O%W^kxIRrRCE3M zYB#bkM)sSLeYq4l7Z&>`D(5?!i?vp(w%qc)fj8_gyWH({RAe`H=fYA_;_c8cEp|I~ z%%FqoZKOG-dGF%YdGF1uQBM0|Pj_}_Myg!on>r_#{6WAh7gq-2_Tfn+RPjBlVXFz1 ze|Kuj4y}Q`ZQUdpC;L}lujy-nSM%x^qKCik@|s@{S*g*~0TMBBOY$~y@f_^tE|&Nk<*seWbN*ta|u-MYR~y6$(bUwN&$d?jdx{<(D! zqPF4(SL&^1{n{s#U+?N#*wsO4eKX2;{EbSZ*Qq~>ZUT<=q}_jHy%q!sGnAfdbwSVI zOQodf((RlX;ln5{!_=6ZHJrc3VsRQAx_*+k$9a2o&ly9X|+t^1J z!pIVFb!5fPAtCH=+U}ngvZ3?=te~G_jSO#Rc#~F!3!P7@@}*hi92WU$JY9$;4RI>r z=DNQ-!TZ~np%(m3(9?e8E_b`F-Ng}3czYy$H?Dwc87U>|?PK+*YEp4B>%GxzwY-h4z9vf^ z9L#~3cU73L*};m}6uE$e5;X|F0&^UpTs+0Op%#;V5E#wUF?8SlK; z81@twO&Q0KW?`L1IbM1Zi3M3#;W@(z312{;kxE8U#Py8OEKu(Ren^#9y{vmalpNK| zMp9LHW*OE`_*a3q)z~yh0sLvd?YEbG4W(pMVail!zZsqhJm3@#Py61cAI2(6)cqVp z%2)!bq63vQOr#x9>#M?hHiXYt%PjSud%f0yF@?-^ zA#&u8A=ubxhO1qe6yOg7brPy``KUVjMbE#{3%+0Q)cFkRc2$LLqJ8H4cP} zHftAW`%m3pw@aAx0emKN#LT5L>Gtzz*v$NMOmX_r(F6MUG+xLkW=^@s^)KNG2>Gz; z)+@>n>bfbQIm%q~H=|4tYQ2CGyG5h`fS0-*Kjm$1%@m9FtcT=;=ulMOHKYTGjJ-F7@tG6Uqxe!BBEfXlwc4zAPTOGSRM>XRIdnd zj7kLJ5p@%3mw@qWRl->sh;c|u{$+05xNp>eC~-Imv2BQT3p!fxzJlJG9j}@KA8EYG zcJ?WwJ=9z9fK?Mx##Sv6jb)!kPv)fNQ&j}J=xaivW@mhyT@BrX=0Sf75gKmPdMzTV zuJ;({a|VMwleUwP2(HSIB9FzhE0w(Kz|)v+O(|b3EO^hBJ}FfX;;?j`v8omU1=m?L z8TA}AnE?^|-IAYOk5QV99)nJ@x9wBb7MNrWTJ0e1WUyVvU^|zqqsiNvYzW9FLh}V? zjH`nXSwRlBoL#g5_MQ>RXY~rG_cIB;t)-t-<~3z8;6<9v*u`vLR=jeLUY7bUm$Uzb zm#*R6S-gMZ#l)!@lacPDmnJ#EFQ8yug_wnvSVNzSaj5Mr6E7(0mBlLDWjH^+Wj!dwd4NGwA$6T(r zN5=+4omANeq&dQ`V1)W54#wk+gSnkCqkDxJc)xd?GN$h#-;6OExd&>}yR@#C?$Y89 z(iU^~o{k~Xe!t*<+u@JW4l}!_j7b=!Tx=nBkB!ki$^CpBKEd;d$Fh&~W~?Z5;36;( zN$!}W!C6B>0q2C)wsX_gC%2s~pquxdZClwrE0}#1!AT+!YT`1U2lb(q;pM`Ch-nLgqnAckGfHCMF=-@|ZEe!VCu9^3 zF&+cQ!cx_$tVtkaHEYGWgBnJyqdikVI$EQ3 zHN)buBqt&waoL2VG14MSEg+OM&RlUf<7lVdRn3MFmh(^e?~Gv)`f$RY7^Z=-%NR;+ z87wg7HNq;G?vk0v;t)(32XVa1WaNvnaPPxW_0?JjzL6lQXJpbG2&a=Uu&`@f{l1wu zZ7F7AZ(|i;0 zade`i?H&7jey z6kIFJZa!%P|Jc@BR;RdumZ~m%_gpwZ`*X{-5#!v+tIRF7V(BlSZebf1?Kvwfu1)G! zVb#!j@Zzi1J9aoF*6>xPx6wO#{VFV@+c||=hjylKSv!Z7tFjoCJ8*Yqkg~62wz6Bf zt%*TSuMH+t?z)BF?3Rmm^RR(%)6~QVnQe=K`>i~CALJ{z7&%<(fA&1~Xxi(>1|$Z7 z>wxuZ3SSu$d~z~ zRs9V-3jCTo5*3>WCK?qc*fJ^*dYU*wX1%)}%~UGlE5gx-H4G3`n8v7e6Cv@qSPmW} z_%F(9pKg+`Fb+S|&$ClIj1FCX>*7n5#V^0K_?1_dUN*xZ^XX?;AS+fcnutwXRMhAv zY{~{yL3pV=2^Fd1?q%%dnN%j@Y_!@|67(obs^vFAc;WtflrsuNUqxp?n}RU~ZIUKJ z1VQJ5*#8+>0Y_D|^Y)Z8V>?dKo#RV zR2bhB#+QE_BXgpOm-RZ=R0H~rOCnJ$FOXs{FxMB5Z^-jFQ_|lRq_910Y3y`cnoqH( z5chEPo?tpDbicmAf#{u`V#nLkZy=GX6;2|9i@#XmeUmxJ4`55j+0s{$*nRXK$Xe|0 z&*uZMvyZW}OYF?R{Dd9}%>T6Xb8nEJ6iMptqb1bYf75jUs^OQJevD=#x$-v2Zc$5vuE1KIslw?;ad2=!GxU2LK zV~<2Ubtn#QeI^chEakB`1d5nFu!M}JYxZd-8#b|LnS=~R+;f>ZE7C8>fN|Tm zAdeD&JV8A4V6qek0HS1PCLN=e)C3yAE77geJ`CAtDD_=Fvb!jsH2xy{q%)D9b)iNP zLEXl~?om-E<``3=Ozx^S^sl1|l)^vmQ3_q*yF?6rK`OzF@&802#9jZw)j>>0@huNf z2FWl!YE>}W?a!eI;^B=6>i;V>px*)en~3~Prf5X9h}yV#_aJKeH}JB5%8>Q|!PdXY z%G}k^@9`!r48=BQDpuLj`+Wb~yz%r}Dx65Cd!vB(c0lB;PAG<#T^zZwf`Xdd0!H1z zj;T6yi^_`W=>gDfoIb2(()1BEo2GG2mFW;zcX*a=?t$7ljOV<9CWj(DcW%>XbTQ_h zjnyWC$iZrNgHb$0Jm9P&Xb0Owkig@DJ+YQXvGb?{H+dMnc}0%oBvlO7Wb{t~+5usp zsTH2$knlCO`jbFpY|zFy>WVLjUHG#(dYSiyMAP0%z3(=wq*8Z-cc9s^B}$*dk@ zSeDtzX04n`T<~7H5$alMv<(0;vk;q2?{lFVubgQ>e-?|PiD0#$K%&zqE4}GYFjoRU z7m=!Ga7+G}hK_}8!MYwpV&DV_iR@UnV3&wg)1519t7Q>`)FEt+^d;T=4yx=yocf!{ z`wgt0Y)raz*6;M6#L8d~n|lG>PQ{FT$gGKHGH3U*LYHWw8B`jr+R9~VEt>Lg0P*=1 zna>3TTV&PyCtvJ(o86wA5+z~c<@bMC{|d&?e{#`uDyv&Fk>fN#C@o-ZN=vu%2N6%p z)W%77+lh*BaAL3`qJl_{*hNZ=jCBt+qN4}Qd_d~VqDHacx}cB*Fc`#`w)Gz)yN)aU z`i0nIdx0B^x2&z)ASYXh4-Rr`nGPZt2(C^@&J%-)HCJ-- z-_8y4lJ~+OzeD!3-^Z~B=ZJ2{m@_;=zIJ;Dc#NBCZ*;i?&R1Y4Gc zfg4;@vk2*CcP98PgRnKz$JL26{lG~6NzC9Bg3AE38$?iA;NIMjZ_+(L8Q%CC#%}I^jLXJ9g(HW33UfdoLJt=fvue;Egdr3+I61P& z?URvdCgY3eG4Elo7*lUE!UP)u`%Wbyn_%(jN%0wRPM$k2GNW-V5;tV_!{P@oUMNtP zXhH1%0aFx0(FV&{_b$hndH%?CRXozYs%ms;%#`9BLy{r8h^kH29TtsqOy_gJT<>R& ziE1$&kFLSuYp-w(NlbVsvP7}=Nobq)4RPQ`6j(hu>x^wx!{b;&IdjahCmx*Ci!o5# zr0G6>NV+9g#m0sE?@ykk*v$bP4o{y+u3-^*A#%#hnAXe$vO-BdzRRGjojjXMt`Dy2jA!=yB17G4)aJ_F77$bA*U7{~x@qX->kCsj2Wt z>Aji&Vid=1h6fe)kS-;KG3GSm@p9aIPj%Qi_beB%*S%2PufwY1BC zZf>@IPT{we*~;|ugUp({gTvLZ;@s#x;^H9Vn!A?U{H)pR4JWp3If#v8O3Hf2*&v$W z2JZ{ugv!V}*BsIgae{Um2b=Id`$6Ue0PR{q<$jm8+uA86p2yt8lFYmRxx_Z5%K`3y z)g;{sJkKPgqOLlVuvMx5#9}Hp)I7S)gC1iV6YJMMJbp;21hC~&t3(rVv-;0Kw%hQ2 z>fKgX&rL>0z^6DZ0`6jHokJ)WdB(&9R41XDVIch>LA%Zg_VU-g#e1L3S)c!ef$5!y6 zmV#k8caCQk?h^>JC?s#i;LBw74#L2{sIUn~@X;CHpGm87>8M#HYC@5MRy{_o8l0fR zO`i!*@TFp%=88^p5KW1%xlI4L#pFPV`7nUKhDb(AVSc?+tv(lo3g4xCiKr!(m7t_| z(CHF3I)8*;(G=x8KLuu8(HZ*3eDPi0gqh_g%v>ORlY%D^SqNwxiq0$#DEzel2`be9@(QhDk z@91x^WX>$}Cg1mYW5{zD=EOWi&C5axjlaY9d*<@cZtYI-VazuQh%DJ4r=FAL317!xM?|oIzHU}K_urT)+%s%HfQ@_pIAM?h5m>5$L_7UwiRB`#|;B)j^{+D3wtbp~W ztUSODBdo(%t32WGSRN-K@DDI(8lQX=C!Ir6cbsRY?@T}Hx`ZjA?yT2-zu$LeW-lb`09|5+=X~cn z-}%n(yPVUXo2%sTEC0)q|DUhsa{tB5_|Hb>y3p*QniUkg#b!xpHqzy08R@)R2rAu~=8U9^!EAS~IVb5-FyCEhE=anJbhTMEa$aF) zQQbhRO0d*jZZ1pd4ALvj6-mz`eX4m1>6*LfEY z&4_2(yalPN|wtKEl_L9-cH`@y3k*DIyE|aZo zzZX4!sng!*)NgtB2VSq^{VI&qXU@KZe|R_gJufaOFB+)c^U8?U;e68{)0Cxk%F=5{ z>_dVEhFXr0ij2o*xa=B-rfa&^6HwmIJvN>iw~zvt?8eY?-f$-RGtq^GCuDzXNcMP$@5Rvuip72^i+6fXUFUJ zw(h*|h4-TV?wyZ!z1}a{K>$WyyK$%AQFrPOyxxO5KlL~6gns0Gd$--W*WU8NJDtGq z+ zH7l<8q2CLmHaHzy;Ad>JUCmH)=t*X-U#rN*i$^+L=AZ?S)$qo4=+SEmL`Dl}r7Nb`It zs^9qdS5f_1Z;yC!?Amdq$$;=XNbExn2RT*b8e%US5oGeQv19G$4(+GVIA360!KA!v zePIFpH99=6URSEGt~!qrb{xnjJTukn=rYa=DAo#!99AWgj8JoP7f!Ry z^oQFNi*KVKoX4wV6b#c`GEBoZDt{g>Pw{|tYqqT3NN^P;6GKplHI=M>X3G@S6;h>$ z)oK-rC1JYNiYu*Fx9<)Dre|BN`-66nlwdX7eh1{T_Ye}?=|dSf>_|RI*66#)#&e0x zcDx`+l9{qVa+pw*9vr?>BE0$te2hYThi-w;Oeh=>>@Bv^D0I9e$ zPv!t1Rd>mqcNYK_1p$j9z+ySBe8RmgOV@rK+W=SrRpY5%JD3KI(BA?zblN}%v~i&I z`l{|Yx3~S!iS~AVfM~E+aqw$z^i_nKy*+1hpa3XJ1C8I?s#m1ORRLfpk(H|gI?`cE zA`-cNxEr+h>f=JtGkJ(-N&X(NH^SX`{+$8_=- z;hV^ePhc)xw`S?hL=06dRu}o2 z#LRV&63i?Z=Z)d=NFXx29PN(@(5L#!faCYbOah0SI{@-(4E zwrc`h@={iichR*@=Un>>6K$>E!f^c^Q)w?BNS)Gw8I_qjtUS%J4r~67D#mmRgr%sA zo{PHY!x_L)?_DY;v}}V7IQQ9%`m~5C7tV zE{~0hsw1xmNP={=S&ePNXjW~CjmREax{cyOtG{B=Y%(6~kZ8NPI95p@Csc2+s=#EK zmZt1D!4!bn2q9T3wrLzrfu$noe1s=_1utSH;KZnyD@Mtz8ilVbR>de`xlMxzY7#*g z#ulFFsdaQ=B;Q(ueuVx;Lap9HwpLPallpzWe!$lc`MS!N!xtx`{+ch5y(!##2L)^u z(g`XN_excBC9g>D;FVTw}H7F5}2yN;k54fhlm0YZSI%|YON zzU>iZRR8myv#I)BbW6b8fD!AU4*)34uuys$!IjgFqIPH7Ne~Wt2XLh41}}ve=||3G z&LK5cuV5g*vn~B(vtcbitR>i6uR9N5Z=-{@>w50htIl`oZ%)9nG}NFx>Z8B0<8`8w zL00qtY|0}L>o^;p6L^~uxp_rw&7)r^c+GFaTxskb(~H09?DoUZ-w3=3l^|0T7wM|3 zm4cel)1(|@0d~RI(b70n-O2hKGm0n%n#P#4XcDw-2ci-q|A9xI-<1*XQZsbgp{Exu zRVZWsvE<5gI)f1E#CgyTd{^`bE$uo#3d3rB-6nJ+m5(My+zJ`jBP&Tl9FG@F*htv*NKT#bFz1VpJSsV zC?&|StNIUo0Jc^oe(yp5o<=&@rXA()MknI?_m0E&7FEtPV){K7W^d%dqDL4&lv00F z(jtAL+D?M0+h~zQy@)VWPCXzXzJh&a?RBqIfhTpu>RZ6tUW&B9$WIBMdb0qJ0jqcK zUdp<>bocI+lR85^ZGNE=IgEVDWKbp`k3v3zJavqirtvs3W(@D>)TTeC`3T-QNTjCy zZo!3h3cRzQB3!!!*?K1U=!sI5FAh!@uddrakFQ*CMXCN9GI}o8CG~J z>qSyK1(f7=ienc3r>wD4+7bI6X$ye{^T6J>)u;QGy1j3?NVE6v=MJnMbO-$e^%=&b z51_}iFk1eeskWnvTfnUHy)&Q`LAeh~Nhph;ltCGSQV~iCsTm;l3`%CdK&$=yZ{gLz zznGK0ZD99&K(?P1R7!3*pR7l+;hW`5f`^M~(TKE? zk`m;n&>bKG$+eG-IvfsxY!TC+fTl&4kS7x0+?VT8Me8Hll*M?U+TMDU3tRAf!c~DhwM6W63DsfhPjhQR4rvZOeu- zu}!EG@kWx`$PZsizWiotY}6-}%Y@)kX=Af#rA?mI$n2|HYpTG7M4y`qlB&9 zKJ-$m4H0h(|8I>)qqh;yX!O@RKw{V#JL5U+Pxyf!`Cj<^^sxsl4495-g^aZ)Tee`hnpLvrBz$uVAAD#=4A{u|5fuYZlp-3&pggvA3JB8}65t{96JGQCCc`(_jfKY0 zyy6Vcz7K7`*B>Ap2v_XUXr1;Bel)yz`DWq=COitcU4@h^iYIiJ8`l zIxW0myfrR_h*o;8qV|g|oXrVyljs>xH0yYek@sdX9Bkp#=}5?hJL$jigk)|3A(yJD zH%ZAb|6H&Of2!t(XD3)Y32N%6Xa|c~R&G*I^^BV+KTZ&3kE@@tbY#BETFWy30tNqu zXJiqVW$XTNX-w%9j#!$*Xb*T2*g-uWjyfVsLa4-N4-IJ z17Tng z)!`uPI5v+kVYJlrkS(z7D+*N!0b)hU5ymDWs4oj-jGYw(z;zNFOj|A@tuD`)^34$% zEX0eAJ~$rU2tPvn`#MjGG;+;gm@&tRwp;pRI+O8p$n4`>mU2$zd1yZ6@q+OMLPnw} zP24DuF2~)bW{GAkqv>f-<0Lu9#TPB-wy|am&m5U;Ch83(XOTP{oH+d8Z0Rzsb4PNv zyhCwl=vhLm;nW5SU+(3Ijd>gMWKXe$kc@=)u_NkYvH&A7kWAkfExp`y7R-_#fmP~EX2G4|r zw;3QJA~L+e!0^dJa)V(Ml&{9+4{%m3f-<}?wmBUhVe_T}cftlR77U@APr%d0D1zP%JI(hVgTVkJ;w0#D<%z#}6A5|_a;2eqZx)xjoytQR!HimP9-n|~< z_Yzf0EwPc)UdABt%)rlX_$UvQ#E_7*l6hVPb;=H-w$yeQe4|7Ej3t>gP8eZm zGUl-(li8XOKZqa&kkLlil&`N##FDPFG0lE z$>c;lyy4pD3#M!x9=wBrGSEp2_ziZAi!N~cY@{Hn=2A(K+QBpNBd6ZOMpb{01TOdF zuknC-_&3+aPP_H-c0i>)bz3Gq_|}IO@J{4-yWUWD(c9Qo9l`4s3SPyas?8eA9hnl5 z?mc3MgT%yc;oTqH@Nr9S8K8>$cUZ!?*uIYY1;c;BjHhNd9qI!|fP3<0E%to2_DtN0B2B z$wW!|W17!8Kbl8l6f|jp=f{9Ug33- z%>i!W;kt<8C&vr8{Sv@*<;}u6F7d?{UQL_sW?Vo#20|Abk+Rs4>^DkBvxw^?T^tb0 zxiW4e2K^1(ztDH2@`K1nS`>)D&fM)^-n`yg|LFSqPi{0muakbb)TM@o!uQQK#+j=C5jq?l*E-lh_WqFrfJ%;NJ^}7U`Ha&cnxMT*d722 z&dw})W(i_zVaov>QI%5pkSZUnaus;gHMbn%L;i#u=b95Mha7x^RbhVb_3Rf2RkEmU z^!9YWe%<{(e(&|flasE2Px%kWn&#_<@t^c#^kd`4j}1d4e?;Z3Aq^=)qa|uWP~8m8 zmQ}O4ZiR)GQ**d(hs9R0RzkfXov_?;YcAJ|;Y6!atDtVyCS@s@lI3fLyeOySk;iuJ zh^)#PIg8qK`K9u4{GE_*%D3dJ(tBK}9sS6V=j7aDL(c7*wPSK#zAoQD-x+CsYE&;h zBd)6=oA9G3PW`kQN68|7Pc`Bw4IZT}Kl0ZCg_h!4kW$Mtp+}U`K(*>&5aF3yPugKK zt;g+j-)%;z*Yg(RD99?ee)h?SH*eJM-M(?>_K)Z%pf>L zR5a<>%oZBxo6yWBQTeUWGwv5Llh`qP<}VCkY?{)*XtDUUQMEF2;c_M(Wnx=Rp*I)% zcR#$kbTM3pc!nH7N_+fH=VbHx=%*sL3Y2i%LAhTNjqs+o_D+d&^0v|-?B(X{ZnH9iBE2$O~ zX+Y*|HD$Vy5Y* zr63liqr#HLYE)QAB9uS9OwPI{c)B!u+gcofP(S^%{OWTcknfQQXRG(wEGF zTxSK|r);VjHPfaa)|-(Gu*joHXC(T7qU%#H|L)SS?Cz*W9Uq2 zSL~E~CDI)9E9;h%#uws=u~+Psp2Fg7&g-#j#*X{M1jV^`;(?s+B~ZaI@CHZb#j8xqTj^jT)Yk*1vV6$tF7vQf0KxK_ ziPu)~!=?-*Cib?PVK~kwQ(5;TIXYY7T?D($2!mF(y>u(~f>t}-_Choz)diOa-CiBC zmw3JkJWWQYS{|(DfYjKCaV^zD^EO%v z1m@t(?a*&vvskqBNt4VR@>y-FB;|vFM3La6imdl2zc1K?J_9_l9`LR6GoeG~&6@(h zu})`~1dUGGd>Ak%W3wM3pjWj7LpE1Ke~n}`31|m!RCM-(QzU8qKj!zwr8yVDq4*`5 z7e%HHCVAoxPWc{5NuX}QHou8x^%jckms#xv$O-&nu&Br=W;Q{O25Ms;vXwJr zDPf4SPeNnoT371!NYhQSP1O+<7cIL3O%go-0n-Tk&udU2l z>8xf>?jA&2yB~IN0*;Cu(ILK||F7S~3>^0_Fu!0d8j%Cz`no?%0-SMBs$H0QD~V*D5$6<>%h3 zHlaDM$5FVg-lG{R>J9u;RVoI@r{?J=&sSve36%N)nlhWFsg+{YTqA6mnd%|1g}S0ou0ZyYh&f2EH!H z_vBG|3^fNejn9knihN(5mM^1cNq%3xBG2M^8P5r;+cj5Sm2>huY7^xPWmEn@UIVs& z6TK_Jr2L`0Bo`h7z1F7i>$-efUglp%S z>(JUp2q(tAFwtgx2p`$7URv=J7%_5|&`6+6c*5K18wu-lC+Pr~ZhIRY*smxE$U~6< zeHf^1FKGu2z#3L=6`|4qrDR@vKTz<1H)AFP>56HRB-SQO1`mUfd@0z2m)TO#X0j?x z<;7c(x9UfYZ7=Sm?M@2Yz$89M$vY*m!sMJmdduI&f@owy9K^u8typc3dyZT%n^8jr zEsWJh)t3^0EGCu*Pk32uC_`dy%sP(vl0$rm=kY%0&;eM17K!B`Qfgv~Lu{iaf`e(b zu_@^9dwm}T1aakkJ^3@jxr^EK!8NFJXxFMmKr}03Y@JCCRlGsc+y9VRrQaWtCH#9- zfDetj0fcA(&y}Uvv4EASegRRD5eh_4CgW#rORd!I*?Wbj#)i|gb`dw7G^D-DJwT@@ zO_ZfI;Lm!QZD3*X+0QWxhf(Sy)Si6@Mb%{shLB<%PAF7lo7Hg?2tArnb`+rpjFR57 zdeZC$SrKtTrxhiTf}eZ7%AcP@Mwbg9|IL9(;}` z32`!Qc4x*{z|Y4*T8eQ89M9rM4>Gbre2XiF3Gv9eK7E^XhZLKoS_>nm3>FsQRQRCD zGkq;Id*fTKzK=)$gzsO7uUWG@JICv#xIAVj~X zM}LRnAVc~whjN(>P`;MgzFJE%M?>R%7ZQ*sI>vO2@)D$tEC7E-g)$G&sEHIPV^@4- zNb66?OQ6-JE&j^*llhh1)9uJspbc8IAx;`Qg@t~ltNK5~oH4w`oK0~x+ zBF3|OjX8K0b^_8!-%CW|a~R*L=`0;4U;e#p`ZM8RV;oFR>oaU`zg?tc%(HGx~u z=#>pEiE1vP+BOr+%wacenKrUiBk&&itw0;Jk#4l7SG^&M1GXfnk5mKZfvbTTL>Gi! z5jg-FNT0zR6s25++3iOx15iH%+6&$d9m|nH9#9}E%gb|jX+>APx#i^{@x`vAn;A3h zi|fxwE1-2l{6c2z8Cg=KPDEYHK0_SJK&ZP^5R_o6RxN6Ms8PeOs8~W#t8{4Ux|XKQ zCES+VZqk&4(mKI(VP$H{2N9kBqV2j z5Q?e~t}=%;I=Tjyi{wCy`q3iN7K3cnP?1=F?u^E58u;s7v$fg`m4y@toj<`p9W)%K z2(I2sV)Wn9k$tyoYw7Rnfc;m-MHG52tpt9}$@y|A8ltEf>zLV@;8|!5yowX($sTWlM{rcV`H!1(L#{UGWCa2` z=||Yiff90pi?O=)3*RE72y@osEoA5TDq|q0kXfWXTDZ=TI``ENXYvq;QbvQ$xpSc; z?^VwqxFO1`A;v%wita3s3>l=4RExF3d+3K9L`???oo=RFeS>(Z?t&&Fs{qdMvx@FTe-N}b6RwpUA2WFyxU0pztmG5k~gPTglO8pHr zzDC8s6>zSB9jM0gH|gn*P#~qiCW7Wr8&o`?;$;-IGA|!j2w_&>Du6mKRjttDicU62 z&Us`7ozwUUjXnSlOWMlF@IUY{xs0MTMTvtFk_pGnGw`b}JnJ+(tZUASS(tH(8)o5& zFW@?(V%h(7FmmV<%xr=|`!mC9FuK{GoYnYshDmec+n`YG8Y;hK_xltnZm3EgPoRcG zzc9M46m+F=kDgi7LYTc@-=dgfkBs4J2cfyX*+ZPkS9_2@4q4NWQ zCNkO?;3n{jpQ|;8E=YVR`G${lXsn4ADQ1%w9wpztHRX_!s{$HZj zM+6DA9yq09KFR;!Swhcn6;pI^6a;#Xo86bj9YEgug&1S7&2NIlaGS?ARg7#Z*LhRl z`QY&Fn#$LHsWG(%?Ees!A)t`V;~Ice(%_aZe6S{3O6SUZn@M2t~2cVTGFHNw~G{@5@G z7h}qCVrYGXx*cdW)jG8j!vH|lluDb3HeaVR|vYGZ9-y;-B5iV8Y+)uG}c z6VgMy1 z=Vzsj=Yr8K;8f3AWe~LK^u&fmFHGPShvJt4mal}c7f|IfU>IHHKgAX3D!uG5;ZHzL zKff^(b_x>Q* z?wa%77$d|4i89n`^j!46OVDSd~JJUlVR*DH&fF;g8O#tz|5&EUZ$Fs3M=@4osi zZ1vxwz)KEAqVz5mj96@X2}0j%6jYCzA;Ly&=8*HuEUcF!{exRn8J!ll-bO+@XFK#d z1P}%y`B`(?JSo&;G{dT}{h6T2*pf_At25H-(W7&N=X3PjR?o@$q<;Q82E*?P4*gVtZ8R-Glwwc3I7!*VG)uIvb)SEyZovVb>zG7Ck` zCKHjlIrIpdE80ZaM9xQ1D+02$+J64ZiGyGg??C9?FEiPCedG-#OvWhkH5z}D3bJIp tUn846uyYVfZC-zL|M`^Lt;vv07ZLdNAhyT!|0nJnwIu z933T?eB*h<{0;*5IFa6%v{Qsa+zT2sX?5A`f{<&W$VW3ape4y!Je- zSNUcB9$(s}Kb4J@8(T)(d#)GR*Zt@j6^zZFYV#LYvO! zrclYS^Q|yjR;8UEQ;|GmQVQF>z1C5Y?lh(%nRf2Q{f+@3pQJ3>Vnbm%k&L6QPlrBbLyL}j>k;L zau-n#CXx=6rXwL!C>?4h(Fh%xnHJGV_2~8}hShOA99eMI8Hu5$wJ;XkjuRSNLN=8e~+@qij(F?_uZJpp5gEbl!!WpV-`H?)V<+e6(% z73p?hF{eic=4r}e$@((Soq*U6*hFHGW+4C_I83wH2+B?}(iA(8!SzXEul+^wL0!kY;HcQ zt|eUTxTCV#(Sz&0W0Z`Dle+ONw3=Cgmw)OkSs@{*lIp)D_@+Yfd%@rMU3lt2p$^~Cj_(bp=8@T6OKvK$G zcn+k@2>|!^Zmx^5ngVhxC16`B#Z*8~VQ1q~j=5D299)Mz3sRLH!Q?0$X)jxVjRM!_ zu;6el`T81emLesUK3qVuJ&9uxX8@1G`Vk2GfN=uX#6Iw$g+TM*5Aqn;&#kWPlTGlz zc@ggYwTAtiFgYUvj66`k^Pni|yg}5!Ejlc8AlVRTW^FJl?$zinc+=bF|S1bG-@pJ`WcrVvUqu6jaliN6r8)1Gh zD&^{zan*k#yUPyL9LO85)ljOR%BtP&U;@{_=yo;cFe}^L6v$Mc!O6TGX~8(o1Dr2z zJi33UyZZf|)gRVc-$Bd6Md9$x+5u`&OT~B|9ST2j)#H3SvF0jYjTN6r@iqR>FbKWo WRs0$$yC)2m2tKu-dZAicF8v2(!F+=N literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/parser.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2bfe7f472d7c45d71ff639ae95cff0622a3c1e8 GIT binary patch literal 14154 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 HIsg9voyYJ< literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/termui.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/termui.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be10d0c6d3be2e277200d29591a9053d5744d199 GIT binary patch literal 28859 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 bUOJz`Wn|6X)`wSKE033ND(6c#ju!q802Wse literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/testing.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b304c34b32651d21cb0b3fcbe46635282703a33a GIT binary patch literal 19211 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/types.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/types.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..331ceb8061da5ef1de1fd6dabdadf2479245f989 GIT binary patch literal 37285 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�qA_VW+){7^Z0qWg`)(DA-7vddB= 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 U9J27_+2YgLvso+rm)?>7Ki$LC3jhEB literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/click/__pycache__/utils.cpython-310.pyc b/ocr/.venv/Lib/site-packages/click/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a0ec5ad680fd1ef8b62a35b2efd57f9c79a0209 GIT binary patch literal 19107 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 t.TextIO: + if encoding is None: + encoding = get_best_encoding(stream) + if errors is None: + errors = "replace" + return _NonClosingTextIOWrapper( + stream, + encoding, + errors, + line_buffering=True, + force_readable=force_readable, + force_writable=force_writable, + ) + + +def is_ascii_encoding(encoding: str) -> bool: + """Checks if a given encoding is ascii.""" + try: + return codecs.lookup(encoding).name == "ascii" + except LookupError: + return False + + +def get_best_encoding(stream: t.IO[t.Any]) -> str: + """Returns the default stream encoding if not found.""" + rv = getattr(stream, "encoding", None) or sys.getdefaultencoding() + if is_ascii_encoding(rv): + return "utf-8" + return rv + + +class _NonClosingTextIOWrapper(io.TextIOWrapper): + def __init__( + self, + stream: t.BinaryIO, + encoding: str | None, + errors: str | None, + force_readable: bool = False, + force_writable: bool = False, + **extra: t.Any, + ) -> None: + self._stream = stream = t.cast( + t.BinaryIO, _FixupStream(stream, force_readable, force_writable) + ) + super().__init__(stream, encoding, errors, **extra) + + def __del__(self) -> None: + try: + self.detach() + except Exception: + pass + + def isatty(self) -> bool: + # https://bitbucket.org/pypy/pypy/issue/1803 + return self._stream.isatty() + + +class _FixupStream: + """The new io interface needs more from streams than streams + traditionally implement. As such, this fix-up code is necessary in + some circumstances. + + The forcing of readable and writable flags are there because some tools + put badly patched objects on sys (one such offender are certain version + of jupyter notebook). + """ + + def __init__( + self, + stream: t.BinaryIO, + force_readable: bool = False, + force_writable: bool = False, + ): + self._stream = stream + self._force_readable = force_readable + self._force_writable = force_writable + + def __getattr__(self, name: str) -> t.Any: + return getattr(self._stream, name) + + def read1(self, size: int) -> bytes: + f = getattr(self._stream, "read1", None) + + if f is not None: + return t.cast(bytes, f(size)) + + return self._stream.read(size) + + def readable(self) -> bool: + if self._force_readable: + return True + x = getattr(self._stream, "readable", None) + if x is not None: + return t.cast(bool, x()) + try: + self._stream.read(0) + except Exception: + return False + return True + + def writable(self) -> bool: + if self._force_writable: + return True + x = getattr(self._stream, "writable", None) + if x is not None: + return t.cast(bool, x()) + try: + self._stream.write(b"") + except Exception: + try: + self._stream.write(b"") + except Exception: + return False + return True + + def seekable(self) -> bool: + x = getattr(self._stream, "seekable", None) + if x is not None: + return t.cast(bool, x()) + try: + self._stream.seek(self._stream.tell()) + except Exception: + return False + return True + + +def _is_binary_reader(stream: t.IO[t.Any], default: bool = False) -> bool: + try: + return isinstance(stream.read(0), bytes) + except Exception: + return default + # This happens in some cases where the stream was already + # closed. In this case, we assume the default. + + +def _is_binary_writer(stream: t.IO[t.Any], default: bool = False) -> bool: + try: + stream.write(b"") + except Exception: + try: + stream.write("") + return False + except Exception: + pass + return default + return True + + +def _find_binary_reader(stream: t.IO[t.Any]) -> t.BinaryIO | None: + # We need to figure out if the given stream is already binary. + # This can happen because the official docs recommend detaching + # the streams to get binary streams. Some code might do this, so + # we need to deal with this case explicitly. + if _is_binary_reader(stream, False): + return t.cast(t.BinaryIO, stream) + + buf = getattr(stream, "buffer", None) + + # Same situation here; this time we assume that the buffer is + # actually binary in case it's closed. + if buf is not None and _is_binary_reader(buf, True): + return t.cast(t.BinaryIO, buf) + + return None + + +def _find_binary_writer(stream: t.IO[t.Any]) -> t.BinaryIO | None: + # We need to figure out if the given stream is already binary. + # This can happen because the official docs recommend detaching + # the streams to get binary streams. Some code might do this, so + # we need to deal with this case explicitly. + if _is_binary_writer(stream, False): + return t.cast(t.BinaryIO, stream) + + buf = getattr(stream, "buffer", None) + + # Same situation here; this time we assume that the buffer is + # actually binary in case it's closed. + if buf is not None and _is_binary_writer(buf, True): + return t.cast(t.BinaryIO, buf) + + return None + + +def _stream_is_misconfigured(stream: t.TextIO) -> bool: + """A stream is misconfigured if its encoding is ASCII.""" + # If the stream does not have an encoding set, we assume it's set + # to ASCII. This appears to happen in certain unittest + # environments. It's not quite clear what the correct behavior is + # but this at least will force Click to recover somehow. + return is_ascii_encoding(getattr(stream, "encoding", None) or "ascii") + + +def _is_compat_stream_attr(stream: t.TextIO, attr: str, value: str | None) -> bool: + """A stream attribute is compatible if it is equal to the + desired value or the desired value is unset and the attribute + has a value. + """ + stream_value = getattr(stream, attr, None) + return stream_value == value or (value is None and stream_value is not None) + + +def _is_compatible_text_stream( + stream: t.TextIO, encoding: str | None, errors: str | None +) -> bool: + """Check if a stream's encoding and errors attributes are + compatible with the desired values. + """ + return _is_compat_stream_attr( + stream, "encoding", encoding + ) and _is_compat_stream_attr(stream, "errors", errors) + + +def _force_correct_text_stream( + text_stream: t.IO[t.Any], + encoding: str | None, + errors: str | None, + is_binary: t.Callable[[t.IO[t.Any], bool], bool], + find_binary: t.Callable[[t.IO[t.Any]], t.BinaryIO | None], + force_readable: bool = False, + force_writable: bool = False, +) -> t.TextIO: + if is_binary(text_stream, False): + binary_reader = t.cast(t.BinaryIO, text_stream) + else: + text_stream = t.cast(t.TextIO, text_stream) + # If the stream looks compatible, and won't default to a + # misconfigured ascii encoding, return it as-is. + if _is_compatible_text_stream(text_stream, encoding, errors) and not ( + encoding is None and _stream_is_misconfigured(text_stream) + ): + return text_stream + + # Otherwise, get the underlying binary reader. + possible_binary_reader = find_binary(text_stream) + + # If that's not possible, silently use the original reader + # and get mojibake instead of exceptions. + if possible_binary_reader is None: + return text_stream + + binary_reader = possible_binary_reader + + # Default errors to replace instead of strict in order to get + # something that works. + if errors is None: + errors = "replace" + + # Wrap the binary stream in a text stream with the correct + # encoding parameters. + return _make_text_stream( + binary_reader, + encoding, + errors, + force_readable=force_readable, + force_writable=force_writable, + ) + + +def _force_correct_text_reader( + text_reader: t.IO[t.Any], + encoding: str | None, + errors: str | None, + force_readable: bool = False, +) -> t.TextIO: + return _force_correct_text_stream( + text_reader, + encoding, + errors, + _is_binary_reader, + _find_binary_reader, + force_readable=force_readable, + ) + + +def _force_correct_text_writer( + text_writer: t.IO[t.Any], + encoding: str | None, + errors: str | None, + force_writable: bool = False, +) -> t.TextIO: + return _force_correct_text_stream( + text_writer, + encoding, + errors, + _is_binary_writer, + _find_binary_writer, + force_writable=force_writable, + ) + + +def get_binary_stdin() -> t.BinaryIO: + reader = _find_binary_reader(sys.stdin) + if reader is None: + raise RuntimeError("Was not able to determine binary stream for sys.stdin.") + return reader + + +def get_binary_stdout() -> t.BinaryIO: + writer = _find_binary_writer(sys.stdout) + if writer is None: + raise RuntimeError("Was not able to determine binary stream for sys.stdout.") + return writer + + +def get_binary_stderr() -> t.BinaryIO: + writer = _find_binary_writer(sys.stderr) + if writer is None: + raise RuntimeError("Was not able to determine binary stream for sys.stderr.") + return writer + + +def get_text_stdin(encoding: str | None = None, errors: str | None = None) -> t.TextIO: + rv = _get_windows_console_stream(sys.stdin, encoding, errors) + if rv is not None: + return rv + return _force_correct_text_reader(sys.stdin, encoding, errors, force_readable=True) + + +def get_text_stdout(encoding: str | None = None, errors: str | None = None) -> t.TextIO: + rv = _get_windows_console_stream(sys.stdout, encoding, errors) + if rv is not None: + return rv + return _force_correct_text_writer(sys.stdout, encoding, errors, force_writable=True) + + +def get_text_stderr(encoding: str | None = None, errors: str | None = None) -> t.TextIO: + rv = _get_windows_console_stream(sys.stderr, encoding, errors) + if rv is not None: + return rv + return _force_correct_text_writer(sys.stderr, encoding, errors, force_writable=True) + + +def _wrap_io_open( + file: str | os.PathLike[str] | int, + mode: str, + encoding: str | None, + errors: str | None, +) -> t.IO[t.Any]: + """Handles not passing ``encoding`` and ``errors`` in binary mode.""" + if "b" in mode: + return open(file, mode) + + return open(file, mode, encoding=encoding, errors=errors) + + +def open_stream( + filename: str | os.PathLike[str], + mode: str = "r", + encoding: str | None = None, + errors: str | None = "strict", + atomic: bool = False, +) -> tuple[t.IO[t.Any], bool]: + binary = "b" in mode + filename = os.fspath(filename) + + # Standard streams first. These are simple because they ignore the + # atomic flag. Use fsdecode to handle Path("-"). + if os.fsdecode(filename) == "-": + if any(m in mode for m in ["w", "a", "x"]): + if binary: + return get_binary_stdout(), False + return get_text_stdout(encoding=encoding, errors=errors), False + if binary: + return get_binary_stdin(), False + return get_text_stdin(encoding=encoding, errors=errors), False + + # Non-atomic writes directly go out through the regular open functions. + if not atomic: + return _wrap_io_open(filename, mode, encoding, errors), True + + # Some usability stuff for atomic writes + if "a" in mode: + raise ValueError( + "Appending to an existing file is not supported, because that" + " would involve an expensive `copy`-operation to a temporary" + " file. Open the file in normal `w`-mode and copy explicitly" + " if that's what you're after." + ) + if "x" in mode: + raise ValueError("Use the `overwrite`-parameter instead.") + if "w" not in mode: + raise ValueError("Atomic writes only make sense with `w`-mode.") + + # Atomic writes are more complicated. They work by opening a file + # as a proxy in the same folder and then using the fdopen + # functionality to wrap it in a Python file. Then we wrap it in an + # atomic file that moves the file over on close. + import errno + import random + + try: + perm: int | None = os.stat(filename).st_mode + except OSError: + perm = None + + flags = os.O_RDWR | os.O_CREAT | os.O_EXCL + + if binary: + flags |= getattr(os, "O_BINARY", 0) + + while True: + tmp_filename = os.path.join( + os.path.dirname(filename), + f".__atomic-write{random.randrange(1 << 32):08x}", + ) + try: + fd = os.open(tmp_filename, flags, 0o666 if perm is None else perm) + break + except OSError as e: + if e.errno == errno.EEXIST or ( + os.name == "nt" + and e.errno == errno.EACCES + and os.path.isdir(e.filename) + and os.access(e.filename, os.W_OK) + ): + continue + raise + + if perm is not None: + os.chmod(tmp_filename, perm) # in case perm includes bits in umask + + f = _wrap_io_open(fd, mode, encoding, errors) + af = _AtomicFile(f, tmp_filename, os.path.realpath(filename)) + return t.cast(t.IO[t.Any], af), True + + +class _AtomicFile: + def __init__(self, f: t.IO[t.Any], tmp_filename: str, real_filename: str) -> None: + self._f = f + self._tmp_filename = tmp_filename + self._real_filename = real_filename + self.closed = False + + @property + def name(self) -> str: + return self._real_filename + + def close(self, delete: bool = False) -> None: + if self.closed: + return + self._f.close() + os.replace(self._tmp_filename, self._real_filename) + self.closed = True + + def __getattr__(self, name: str) -> t.Any: + return getattr(self._f, name) + + def __enter__(self) -> _AtomicFile: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.close(delete=exc_type is not None) + + def __repr__(self) -> str: + return repr(self._f) + + +def strip_ansi(value: str) -> str: + return _ansi_re.sub("", value) + + +def _is_jupyter_kernel_output(stream: t.IO[t.Any]) -> bool: + while isinstance(stream, (_FixupStream, _NonClosingTextIOWrapper)): + stream = stream._stream + + return stream.__class__.__module__.startswith("ipykernel.") + + +def should_strip_ansi( + stream: t.IO[t.Any] | None = None, color: bool | None = None +) -> bool: + if color is None: + if stream is None: + stream = sys.stdin + return not isatty(stream) and not _is_jupyter_kernel_output(stream) + return not color + + +# On Windows, wrap the output streams with colorama to support ANSI +# color codes. +# NOTE: double check is needed so mypy does not analyze this on Linux +if sys.platform.startswith("win") and WIN: + from ._winconsole import _get_windows_console_stream + + def _get_argv_encoding() -> str: + import locale + + return locale.getpreferredencoding() + + _ansi_stream_wrappers: cabc.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() + + def auto_wrap_for_ansi(stream: t.TextIO, color: bool | None = None) -> t.TextIO: + """Support ANSI color and style codes on Windows by wrapping a + stream with colorama. + """ + try: + cached = _ansi_stream_wrappers.get(stream) + except Exception: + cached = None + + if cached is not None: + return cached + + import colorama + + strip = should_strip_ansi(stream, color) + ansi_wrapper = colorama.AnsiToWin32(stream, strip=strip) + rv = t.cast(t.TextIO, ansi_wrapper.stream) + _write = rv.write + + def _safe_write(s: str) -> int: + try: + return _write(s) + except BaseException: + ansi_wrapper.reset_all() + raise + + rv.write = _safe_write # type: ignore[method-assign] + + try: + _ansi_stream_wrappers[stream] = rv + except Exception: + pass + + return rv + +else: + + def _get_argv_encoding() -> str: + return getattr(sys.stdin, "encoding", None) or sys.getfilesystemencoding() + + def _get_windows_console_stream( + f: t.TextIO, encoding: str | None, errors: str | None + ) -> t.TextIO | None: + return None + + +def term_len(x: str) -> int: + return len(strip_ansi(x)) + + +def isatty(stream: t.IO[t.Any]) -> bool: + try: + return stream.isatty() + except Exception: + return False + + +def _make_cached_stream_func( + src_func: t.Callable[[], t.TextIO | None], + wrapper_func: t.Callable[[], t.TextIO], +) -> t.Callable[[], t.TextIO | None]: + cache: cabc.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() + + def func() -> t.TextIO | None: + stream = src_func() + + if stream is None: + return None + + try: + rv = cache.get(stream) + except Exception: + rv = None + if rv is not None: + return rv + rv = wrapper_func() + try: + cache[stream] = rv + except Exception: + pass + return rv + + return func + + +_default_text_stdin = _make_cached_stream_func(lambda: sys.stdin, get_text_stdin) +_default_text_stdout = _make_cached_stream_func(lambda: sys.stdout, get_text_stdout) +_default_text_stderr = _make_cached_stream_func(lambda: sys.stderr, get_text_stderr) + + +binary_streams: cabc.Mapping[str, t.Callable[[], t.BinaryIO]] = { + "stdin": get_binary_stdin, + "stdout": get_binary_stdout, + "stderr": get_binary_stderr, +} + +text_streams: cabc.Mapping[str, t.Callable[[str | None, str | None], t.TextIO]] = { + "stdin": get_text_stdin, + "stdout": get_text_stdout, + "stderr": get_text_stderr, +} diff --git a/ocr/.venv/Lib/site-packages/click/_termui_impl.py b/ocr/.venv/Lib/site-packages/click/_termui_impl.py new file mode 100644 index 00000000..47f87b86 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/_termui_impl.py @@ -0,0 +1,847 @@ +""" +This module contains implementations for the termui module. To keep the +import time of Click down, some infrequently used functionality is +placed in this module and only imported as needed. +""" + +from __future__ import annotations + +import collections.abc as cabc +import contextlib +import math +import os +import shlex +import sys +import time +import typing as t +from gettext import gettext as _ +from io import StringIO +from pathlib import Path +from types import TracebackType + +from ._compat import _default_text_stdout +from ._compat import CYGWIN +from ._compat import get_best_encoding +from ._compat import isatty +from ._compat import open_stream +from ._compat import strip_ansi +from ._compat import term_len +from ._compat import WIN +from .exceptions import ClickException +from .utils import echo + +V = t.TypeVar("V") + +if os.name == "nt": + BEFORE_BAR = "\r" + AFTER_BAR = "\n" +else: + BEFORE_BAR = "\r\033[?25l" + AFTER_BAR = "\033[?25h\n" + + +class ProgressBar(t.Generic[V]): + def __init__( + self, + iterable: cabc.Iterable[V] | None, + length: int | None = None, + fill_char: str = "#", + empty_char: str = " ", + bar_template: str = "%(bar)s", + info_sep: str = " ", + hidden: bool = False, + show_eta: bool = True, + show_percent: bool | None = None, + show_pos: bool = False, + item_show_func: t.Callable[[V | None], str | None] | None = None, + label: str | None = None, + file: t.TextIO | None = None, + color: bool | None = None, + update_min_steps: int = 1, + width: int = 30, + ) -> None: + self.fill_char = fill_char + self.empty_char = empty_char + self.bar_template = bar_template + self.info_sep = info_sep + self.hidden = hidden + self.show_eta = show_eta + self.show_percent = show_percent + self.show_pos = show_pos + self.item_show_func = item_show_func + self.label: str = label or "" + + if file is None: + file = _default_text_stdout() + + # There are no standard streams attached to write to. For example, + # pythonw on Windows. + if file is None: + file = StringIO() + + self.file = file + self.color = color + self.update_min_steps = update_min_steps + self._completed_intervals = 0 + self.width: int = width + self.autowidth: bool = width == 0 + + if length is None: + from operator import length_hint + + length = length_hint(iterable, -1) + + if length == -1: + length = None + if iterable is None: + if length is None: + raise TypeError("iterable or length is required") + iterable = t.cast("cabc.Iterable[V]", range(length)) + self.iter: cabc.Iterable[V] = iter(iterable) + self.length = length + self.pos: int = 0 + self.avg: list[float] = [] + self.last_eta: float + self.start: float + self.start = self.last_eta = time.time() + self.eta_known: bool = False + self.finished: bool = False + self.max_width: int | None = None + self.entered: bool = False + self.current_item: V | None = None + self._is_atty = isatty(self.file) + self._last_line: str | None = None + + def __enter__(self) -> ProgressBar[V]: + self.entered = True + self.render_progress() + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.render_finish() + + def __iter__(self) -> cabc.Iterator[V]: + if not self.entered: + raise RuntimeError("You need to use progress bars in a with block.") + self.render_progress() + return self.generator() + + def __next__(self) -> V: + # Iteration is defined in terms of a generator function, + # returned by iter(self); use that to define next(). This works + # because `self.iter` is an iterable consumed by that generator, + # so it is re-entry safe. Calling `next(self.generator())` + # twice works and does "what you want". + return next(iter(self)) + + def render_finish(self) -> None: + if self.hidden or not self._is_atty: + return + self.file.write(AFTER_BAR) + self.file.flush() + + @property + def pct(self) -> float: + if self.finished: + return 1.0 + return min(self.pos / (float(self.length or 1) or 1), 1.0) + + @property + def time_per_iteration(self) -> float: + if not self.avg: + return 0.0 + return sum(self.avg) / float(len(self.avg)) + + @property + def eta(self) -> float: + if self.length is not None and not self.finished: + return self.time_per_iteration * (self.length - self.pos) + return 0.0 + + def format_eta(self) -> str: + if self.eta_known: + t = int(self.eta) + seconds = t % 60 + t //= 60 + minutes = t % 60 + t //= 60 + hours = t % 24 + t //= 24 + if t > 0: + return f"{t}d {hours:02}:{minutes:02}:{seconds:02}" + else: + return f"{hours:02}:{minutes:02}:{seconds:02}" + return "" + + def format_pos(self) -> str: + pos = str(self.pos) + if self.length is not None: + pos += f"/{self.length}" + return pos + + def format_pct(self) -> str: + return f"{int(self.pct * 100): 4}%"[1:] + + def format_bar(self) -> str: + if self.length is not None: + bar_length = int(self.pct * self.width) + bar = self.fill_char * bar_length + bar += self.empty_char * (self.width - bar_length) + elif self.finished: + bar = self.fill_char * self.width + else: + chars = list(self.empty_char * (self.width or 1)) + if self.time_per_iteration != 0: + chars[ + int( + (math.cos(self.pos * self.time_per_iteration) / 2.0 + 0.5) + * self.width + ) + ] = self.fill_char + bar = "".join(chars) + return bar + + def format_progress_line(self) -> str: + show_percent = self.show_percent + + info_bits = [] + if self.length is not None and show_percent is None: + show_percent = not self.show_pos + + if self.show_pos: + info_bits.append(self.format_pos()) + if show_percent: + info_bits.append(self.format_pct()) + if self.show_eta and self.eta_known and not self.finished: + info_bits.append(self.format_eta()) + if self.item_show_func is not None: + item_info = self.item_show_func(self.current_item) + if item_info is not None: + info_bits.append(item_info) + + return ( + self.bar_template + % { + "label": self.label, + "bar": self.format_bar(), + "info": self.info_sep.join(info_bits), + } + ).rstrip() + + def render_progress(self) -> None: + if self.hidden: + return + + if not self._is_atty: + # Only output the label once if the output is not a TTY. + if self._last_line != self.label: + self._last_line = self.label + echo(self.label, file=self.file, color=self.color) + return + + buf = [] + # Update width in case the terminal has been resized + if self.autowidth: + import shutil + + old_width = self.width + self.width = 0 + clutter_length = term_len(self.format_progress_line()) + new_width = max(0, shutil.get_terminal_size().columns - clutter_length) + if new_width < old_width and self.max_width is not None: + buf.append(BEFORE_BAR) + buf.append(" " * self.max_width) + self.max_width = new_width + self.width = new_width + + clear_width = self.width + if self.max_width is not None: + clear_width = self.max_width + + buf.append(BEFORE_BAR) + line = self.format_progress_line() + line_len = term_len(line) + if self.max_width is None or self.max_width < line_len: + self.max_width = line_len + + buf.append(line) + buf.append(" " * (clear_width - line_len)) + line = "".join(buf) + # Render the line only if it changed. + + if line != self._last_line: + self._last_line = line + echo(line, file=self.file, color=self.color, nl=False) + self.file.flush() + + def make_step(self, n_steps: int) -> None: + self.pos += n_steps + if self.length is not None and self.pos >= self.length: + self.finished = True + + if (time.time() - self.last_eta) < 1.0: + return + + self.last_eta = time.time() + + # self.avg is a rolling list of length <= 7 of steps where steps are + # defined as time elapsed divided by the total progress through + # self.length. + if self.pos: + step = (time.time() - self.start) / self.pos + else: + step = time.time() - self.start + + self.avg = self.avg[-6:] + [step] + + self.eta_known = self.length is not None + + def update(self, n_steps: int, current_item: V | None = None) -> None: + """Update the progress bar by advancing a specified number of + steps, and optionally set the ``current_item`` for this new + position. + + :param n_steps: Number of steps to advance. + :param current_item: Optional item to set as ``current_item`` + for the updated position. + + .. versionchanged:: 8.0 + Added the ``current_item`` optional parameter. + + .. versionchanged:: 8.0 + Only render when the number of steps meets the + ``update_min_steps`` threshold. + """ + if current_item is not None: + self.current_item = current_item + + self._completed_intervals += n_steps + + if self._completed_intervals >= self.update_min_steps: + self.make_step(self._completed_intervals) + self.render_progress() + self._completed_intervals = 0 + + def finish(self) -> None: + self.eta_known = False + self.current_item = None + self.finished = True + + def generator(self) -> cabc.Iterator[V]: + """Return a generator which yields the items added to the bar + during construction, and updates the progress bar *after* the + yielded block returns. + """ + # WARNING: the iterator interface for `ProgressBar` relies on + # this and only works because this is a simple generator which + # doesn't create or manage additional state. If this function + # changes, the impact should be evaluated both against + # `iter(bar)` and `next(bar)`. `next()` in particular may call + # `self.generator()` repeatedly, and this must remain safe in + # order for that interface to work. + if not self.entered: + raise RuntimeError("You need to use progress bars in a with block.") + + if not self._is_atty: + yield from self.iter + else: + for rv in self.iter: + self.current_item = rv + + # This allows show_item_func to be updated before the + # item is processed. Only trigger at the beginning of + # the update interval. + if self._completed_intervals == 0: + self.render_progress() + + yield rv + self.update(1) + + self.finish() + self.render_progress() + + +def pager(generator: cabc.Iterable[str], color: bool | None = None) -> None: + """Decide what method to use for paging through text.""" + stdout = _default_text_stdout() + + # There are no standard streams attached to write to. For example, + # pythonw on Windows. + if stdout is None: + stdout = StringIO() + + if not isatty(sys.stdin) or not isatty(stdout): + return _nullpager(stdout, generator, color) + + # Split and normalize the pager command into parts. + pager_cmd_parts = shlex.split(os.environ.get("PAGER", ""), posix=False) + if pager_cmd_parts: + if WIN: + if _tempfilepager(generator, pager_cmd_parts, color): + return + elif _pipepager(generator, pager_cmd_parts, color): + return + + if os.environ.get("TERM") in ("dumb", "emacs"): + return _nullpager(stdout, generator, color) + if (WIN or sys.platform.startswith("os2")) and _tempfilepager( + generator, ["more"], color + ): + return + if _pipepager(generator, ["less"], color): + return + + import tempfile + + fd, filename = tempfile.mkstemp() + os.close(fd) + try: + if _pipepager(generator, ["more"], color): + return + return _nullpager(stdout, generator, color) + finally: + os.unlink(filename) + + +def _pipepager( + generator: cabc.Iterable[str], cmd_parts: list[str], color: bool | None +) -> bool: + """Page through text by feeding it to another program. Invoking a + pager through this might support colors. + + Returns `True` if the command was found, `False` otherwise and thus another + pager should be attempted. + """ + # Split the command into the invoked CLI and its parameters. + if not cmd_parts: + return False + + import shutil + + cmd = cmd_parts[0] + cmd_params = cmd_parts[1:] + + cmd_filepath = shutil.which(cmd) + if not cmd_filepath: + return False + # Resolves symlinks and produces a normalized absolute path string. + cmd_path = Path(cmd_filepath).resolve() + cmd_name = cmd_path.name + + import subprocess + + # Make a local copy of the environment to not affect the global one. + env = dict(os.environ) + + # If we're piping to less and the user hasn't decided on colors, we enable + # them by default we find the -R flag in the command line arguments. + if color is None and cmd_name == "less": + less_flags = f"{os.environ.get('LESS', '')}{' '.join(cmd_params)}" + if not less_flags: + env["LESS"] = "-R" + color = True + elif "r" in less_flags or "R" in less_flags: + color = True + + c = subprocess.Popen( + [str(cmd_path)] + cmd_params, + shell=True, + stdin=subprocess.PIPE, + env=env, + errors="replace", + text=True, + ) + assert c.stdin is not None + try: + for text in generator: + if not color: + text = strip_ansi(text) + + c.stdin.write(text) + except BrokenPipeError: + # In case the pager exited unexpectedly, ignore the broken pipe error. + pass + except Exception as e: + # In case there is an exception we want to close the pager immediately + # and let the caller handle it. + # Otherwise the pager will keep running, and the user may not notice + # the error message, or worse yet it may leave the terminal in a broken state. + c.terminate() + raise e + finally: + # We must close stdin and wait for the pager to exit before we continue + try: + c.stdin.close() + # Close implies flush, so it might throw a BrokenPipeError if the pager + # process exited already. + except BrokenPipeError: + pass + + # Less doesn't respect ^C, but catches it for its own UI purposes (aborting + # search or other commands inside less). + # + # That means when the user hits ^C, the parent process (click) terminates, + # but less is still alive, paging the output and messing up the terminal. + # + # If the user wants to make the pager exit on ^C, they should set + # `LESS='-K'`. It's not our decision to make. + while True: + try: + c.wait() + except KeyboardInterrupt: + pass + else: + break + + return True + + +def _tempfilepager( + generator: cabc.Iterable[str], cmd_parts: list[str], color: bool | None +) -> bool: + """Page through text by invoking a program on a temporary file. + + Returns `True` if the command was found, `False` otherwise and thus another + pager should be attempted. + """ + # Split the command into the invoked CLI and its parameters. + if not cmd_parts: + return False + + import shutil + + cmd = cmd_parts[0] + + cmd_filepath = shutil.which(cmd) + if not cmd_filepath: + return False + # Resolves symlinks and produces a normalized absolute path string. + cmd_path = Path(cmd_filepath).resolve() + + import subprocess + import tempfile + + fd, filename = tempfile.mkstemp() + # TODO: This never terminates if the passed generator never terminates. + text = "".join(generator) + if not color: + text = strip_ansi(text) + encoding = get_best_encoding(sys.stdout) + with open_stream(filename, "wb")[0] as f: + f.write(text.encode(encoding)) + try: + subprocess.call([str(cmd_path), filename]) + except OSError: + # Command not found + pass + finally: + os.close(fd) + os.unlink(filename) + + return True + + +def _nullpager( + stream: t.TextIO, generator: cabc.Iterable[str], color: bool | None +) -> None: + """Simply print unformatted text. This is the ultimate fallback.""" + for text in generator: + if not color: + text = strip_ansi(text) + stream.write(text) + + +class Editor: + def __init__( + self, + editor: str | None = None, + env: cabc.Mapping[str, str] | None = None, + require_save: bool = True, + extension: str = ".txt", + ) -> None: + self.editor = editor + self.env = env + self.require_save = require_save + self.extension = extension + + def get_editor(self) -> str: + if self.editor is not None: + return self.editor + for key in "VISUAL", "EDITOR": + rv = os.environ.get(key) + if rv: + return rv + if WIN: + return "notepad" + + from shutil import which + + for editor in "sensible-editor", "vim", "nano": + if which(editor) is not None: + return editor + return "vi" + + def edit_files(self, filenames: cabc.Iterable[str]) -> None: + import subprocess + + editor = self.get_editor() + environ: dict[str, str] | None = None + + if self.env: + environ = os.environ.copy() + environ.update(self.env) + + exc_filename = " ".join(f'"{filename}"' for filename in filenames) + + try: + c = subprocess.Popen( + args=f"{editor} {exc_filename}", env=environ, shell=True + ) + exit_code = c.wait() + if exit_code != 0: + raise ClickException( + _("{editor}: Editing failed").format(editor=editor) + ) + except OSError as e: + raise ClickException( + _("{editor}: Editing failed: {e}").format(editor=editor, e=e) + ) from e + + @t.overload + def edit(self, text: bytes | bytearray) -> bytes | None: ... + + # We cannot know whether or not the type expected is str or bytes when None + # is passed, so str is returned as that was what was done before. + @t.overload + def edit(self, text: str | None) -> str | None: ... + + def edit(self, text: str | bytes | bytearray | None) -> str | bytes | None: + import tempfile + + if text is None: + data: bytes | bytearray = b"" + elif isinstance(text, (bytes, bytearray)): + data = text + else: + if text and not text.endswith("\n"): + text += "\n" + + if WIN: + data = text.replace("\n", "\r\n").encode("utf-8-sig") + else: + data = text.encode("utf-8") + + fd, name = tempfile.mkstemp(prefix="editor-", suffix=self.extension) + f: t.BinaryIO + + try: + with os.fdopen(fd, "wb") as f: + f.write(data) + + # If the filesystem resolution is 1 second, like Mac OS + # 10.12 Extended, or 2 seconds, like FAT32, and the editor + # closes very fast, require_save can fail. Set the modified + # time to be 2 seconds in the past to work around this. + os.utime(name, (os.path.getatime(name), os.path.getmtime(name) - 2)) + # Depending on the resolution, the exact value might not be + # recorded, so get the new recorded value. + timestamp = os.path.getmtime(name) + + self.edit_files((name,)) + + if self.require_save and os.path.getmtime(name) == timestamp: + return None + + with open(name, "rb") as f: + rv = f.read() + + if isinstance(text, (bytes, bytearray)): + return rv + + return rv.decode("utf-8-sig").replace("\r\n", "\n") + finally: + os.unlink(name) + + +def open_url(url: str, wait: bool = False, locate: bool = False) -> int: + import subprocess + + def _unquote_file(url: str) -> str: + from urllib.parse import unquote + + if url.startswith("file://"): + url = unquote(url[7:]) + + return url + + if sys.platform == "darwin": + args = ["open"] + if wait: + args.append("-W") + if locate: + args.append("-R") + args.append(_unquote_file(url)) + null = open("/dev/null", "w") + try: + return subprocess.Popen(args, stderr=null).wait() + finally: + null.close() + elif WIN: + if locate: + url = _unquote_file(url) + args = ["explorer", f"/select,{url}"] + else: + args = ["start"] + if wait: + args.append("/WAIT") + args.append("") + args.append(url) + try: + return subprocess.call(args) + except OSError: + # Command not found + return 127 + elif CYGWIN: + if locate: + url = _unquote_file(url) + args = ["cygstart", os.path.dirname(url)] + else: + args = ["cygstart"] + if wait: + args.append("-w") + args.append(url) + try: + return subprocess.call(args) + except OSError: + # Command not found + return 127 + + try: + if locate: + url = os.path.dirname(_unquote_file(url)) or "." + else: + url = _unquote_file(url) + c = subprocess.Popen(["xdg-open", url]) + if wait: + return c.wait() + return 0 + except OSError: + if url.startswith(("http://", "https://")) and not locate and not wait: + import webbrowser + + webbrowser.open(url) + return 0 + return 1 + + +def _translate_ch_to_exc(ch: str) -> None: + if ch == "\x03": + raise KeyboardInterrupt() + + if ch == "\x04" and not WIN: # Unix-like, Ctrl+D + raise EOFError() + + if ch == "\x1a" and WIN: # Windows, Ctrl+Z + raise EOFError() + + return None + + +if sys.platform == "win32": + import msvcrt + + @contextlib.contextmanager + def raw_terminal() -> cabc.Iterator[int]: + yield -1 + + def getchar(echo: bool) -> str: + # The function `getch` will return a bytes object corresponding to + # the pressed character. Since Windows 10 build 1803, it will also + # return \x00 when called a second time after pressing a regular key. + # + # `getwch` does not share this probably-bugged behavior. Moreover, it + # returns a Unicode object by default, which is what we want. + # + # Either of these functions will return \x00 or \xe0 to indicate + # a special key, and you need to call the same function again to get + # the "rest" of the code. The fun part is that \u00e0 is + # "latin small letter a with grave", so if you type that on a French + # keyboard, you _also_ get a \xe0. + # E.g., consider the Up arrow. This returns \xe0 and then \x48. The + # resulting Unicode string reads as "a with grave" + "capital H". + # This is indistinguishable from when the user actually types + # "a with grave" and then "capital H". + # + # When \xe0 is returned, we assume it's part of a special-key sequence + # and call `getwch` again, but that means that when the user types + # the \u00e0 character, `getchar` doesn't return until a second + # character is typed. + # The alternative is returning immediately, but that would mess up + # cross-platform handling of arrow keys and others that start with + # \xe0. Another option is using `getch`, but then we can't reliably + # read non-ASCII characters, because return values of `getch` are + # limited to the current 8-bit codepage. + # + # Anyway, Click doesn't claim to do this Right(tm), and using `getwch` + # is doing the right thing in more situations than with `getch`. + + if echo: + func = t.cast(t.Callable[[], str], msvcrt.getwche) + else: + func = t.cast(t.Callable[[], str], msvcrt.getwch) + + rv = func() + + if rv in ("\x00", "\xe0"): + # \x00 and \xe0 are control characters that indicate special key, + # see above. + rv += func() + + _translate_ch_to_exc(rv) + return rv + +else: + import termios + import tty + + @contextlib.contextmanager + def raw_terminal() -> cabc.Iterator[int]: + f: t.TextIO | None + fd: int + + if not isatty(sys.stdin): + f = open("/dev/tty") + fd = f.fileno() + else: + fd = sys.stdin.fileno() + f = None + + try: + old_settings = termios.tcgetattr(fd) + + try: + tty.setraw(fd) + yield fd + finally: + termios.tcsetattr(fd, termios.TCSADRAIN, old_settings) + sys.stdout.flush() + + if f is not None: + f.close() + except termios.error: + pass + + def getchar(echo: bool) -> str: + with raw_terminal() as fd: + ch = os.read(fd, 32).decode(get_best_encoding(sys.stdin), "replace") + + if echo and isatty(sys.stdout): + sys.stdout.write(ch) + + _translate_ch_to_exc(ch) + return ch diff --git a/ocr/.venv/Lib/site-packages/click/_textwrap.py b/ocr/.venv/Lib/site-packages/click/_textwrap.py new file mode 100644 index 00000000..97fbee3d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/_textwrap.py @@ -0,0 +1,51 @@ +from __future__ import annotations + +import collections.abc as cabc +import textwrap +from contextlib import contextmanager + + +class TextWrapper(textwrap.TextWrapper): + def _handle_long_word( + self, + reversed_chunks: list[str], + cur_line: list[str], + cur_len: int, + width: int, + ) -> None: + space_left = max(width - cur_len, 1) + + if self.break_long_words: + last = reversed_chunks[-1] + cut = last[:space_left] + res = last[space_left:] + cur_line.append(cut) + reversed_chunks[-1] = res + elif not cur_line: + cur_line.append(reversed_chunks.pop()) + + @contextmanager + def extra_indent(self, indent: str) -> cabc.Iterator[None]: + old_initial_indent = self.initial_indent + old_subsequent_indent = self.subsequent_indent + self.initial_indent += indent + self.subsequent_indent += indent + + try: + yield + finally: + self.initial_indent = old_initial_indent + self.subsequent_indent = old_subsequent_indent + + def indent_only(self, text: str) -> str: + rv = [] + + for idx, line in enumerate(text.splitlines()): + indent = self.initial_indent + + if idx > 0: + indent = self.subsequent_indent + + rv.append(f"{indent}{line}") + + return "\n".join(rv) diff --git a/ocr/.venv/Lib/site-packages/click/_utils.py b/ocr/.venv/Lib/site-packages/click/_utils.py new file mode 100644 index 00000000..09fb0085 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/_utils.py @@ -0,0 +1,36 @@ +from __future__ import annotations + +import enum +import typing as t + + +class Sentinel(enum.Enum): + """Enum used to define sentinel values. + + .. seealso:: + + `PEP 661 - Sentinel Values `_. + """ + + UNSET = object() + FLAG_NEEDS_VALUE = object() + + def __repr__(self) -> str: + return f"{self.__class__.__name__}.{self.name}" + + +UNSET = Sentinel.UNSET +"""Sentinel used to indicate that a value is not set.""" + +FLAG_NEEDS_VALUE = Sentinel.FLAG_NEEDS_VALUE +"""Sentinel used to indicate an option was passed as a flag without a +value but is not a flag option. + +``Option.consume_value`` uses this to prompt or use the ``flag_value``. +""" + +T_UNSET = t.Literal[UNSET] # type: ignore[valid-type] +"""Type hint for the :data:`UNSET` sentinel value.""" + +T_FLAG_NEEDS_VALUE = t.Literal[FLAG_NEEDS_VALUE] # type: ignore[valid-type] +"""Type hint for the :data:`FLAG_NEEDS_VALUE` sentinel value.""" diff --git a/ocr/.venv/Lib/site-packages/click/_winconsole.py b/ocr/.venv/Lib/site-packages/click/_winconsole.py new file mode 100644 index 00000000..e56c7c6a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/_winconsole.py @@ -0,0 +1,296 @@ +# This module is based on the excellent work by Adam Bartoš who +# provided a lot of what went into the implementation here in +# the discussion to issue1602 in the Python bug tracker. +# +# There are some general differences in regards to how this works +# compared to the original patches as we do not need to patch +# the entire interpreter but just work in our little world of +# echo and prompt. +from __future__ import annotations + +import collections.abc as cabc +import io +import sys +import time +import typing as t +from ctypes import Array +from ctypes import byref +from ctypes import c_char +from ctypes import c_char_p +from ctypes import c_int +from ctypes import c_ssize_t +from ctypes import c_ulong +from ctypes import c_void_p +from ctypes import POINTER +from ctypes import py_object +from ctypes import Structure +from ctypes.wintypes import DWORD +from ctypes.wintypes import HANDLE +from ctypes.wintypes import LPCWSTR +from ctypes.wintypes import LPWSTR + +from ._compat import _NonClosingTextIOWrapper + +assert sys.platform == "win32" +import msvcrt # noqa: E402 +from ctypes import windll # noqa: E402 +from ctypes import WINFUNCTYPE # noqa: E402 + +c_ssize_p = POINTER(c_ssize_t) + +kernel32 = windll.kernel32 +GetStdHandle = kernel32.GetStdHandle +ReadConsoleW = kernel32.ReadConsoleW +WriteConsoleW = kernel32.WriteConsoleW +GetConsoleMode = kernel32.GetConsoleMode +GetLastError = kernel32.GetLastError +GetCommandLineW = WINFUNCTYPE(LPWSTR)(("GetCommandLineW", windll.kernel32)) +CommandLineToArgvW = WINFUNCTYPE(POINTER(LPWSTR), LPCWSTR, POINTER(c_int))( + ("CommandLineToArgvW", windll.shell32) +) +LocalFree = WINFUNCTYPE(c_void_p, c_void_p)(("LocalFree", windll.kernel32)) + +STDIN_HANDLE = GetStdHandle(-10) +STDOUT_HANDLE = GetStdHandle(-11) +STDERR_HANDLE = GetStdHandle(-12) + +PyBUF_SIMPLE = 0 +PyBUF_WRITABLE = 1 + +ERROR_SUCCESS = 0 +ERROR_NOT_ENOUGH_MEMORY = 8 +ERROR_OPERATION_ABORTED = 995 + +STDIN_FILENO = 0 +STDOUT_FILENO = 1 +STDERR_FILENO = 2 + +EOF = b"\x1a" +MAX_BYTES_WRITTEN = 32767 + +if t.TYPE_CHECKING: + try: + # Using `typing_extensions.Buffer` instead of `collections.abc` + # on Windows for some reason does not have `Sized` implemented. + from collections.abc import Buffer # type: ignore + except ImportError: + from typing_extensions import Buffer + +try: + from ctypes import pythonapi +except ImportError: + # On PyPy we cannot get buffers so our ability to operate here is + # severely limited. + get_buffer = None +else: + + class Py_buffer(Structure): + _fields_ = [ # noqa: RUF012 + ("buf", c_void_p), + ("obj", py_object), + ("len", c_ssize_t), + ("itemsize", c_ssize_t), + ("readonly", c_int), + ("ndim", c_int), + ("format", c_char_p), + ("shape", c_ssize_p), + ("strides", c_ssize_p), + ("suboffsets", c_ssize_p), + ("internal", c_void_p), + ] + + PyObject_GetBuffer = pythonapi.PyObject_GetBuffer + PyBuffer_Release = pythonapi.PyBuffer_Release + + def get_buffer(obj: Buffer, writable: bool = False) -> Array[c_char]: + buf = Py_buffer() + flags: int = PyBUF_WRITABLE if writable else PyBUF_SIMPLE + PyObject_GetBuffer(py_object(obj), byref(buf), flags) + + try: + buffer_type = c_char * buf.len + out: Array[c_char] = buffer_type.from_address(buf.buf) + return out + finally: + PyBuffer_Release(byref(buf)) + + +class _WindowsConsoleRawIOBase(io.RawIOBase): + def __init__(self, handle: int | None) -> None: + self.handle = handle + + def isatty(self) -> t.Literal[True]: + super().isatty() + return True + + +class _WindowsConsoleReader(_WindowsConsoleRawIOBase): + def readable(self) -> t.Literal[True]: + return True + + def readinto(self, b: Buffer) -> int: + bytes_to_be_read = len(b) + if not bytes_to_be_read: + return 0 + elif bytes_to_be_read % 2: + raise ValueError( + "cannot read odd number of bytes from UTF-16-LE encoded console" + ) + + buffer = get_buffer(b, writable=True) + code_units_to_be_read = bytes_to_be_read // 2 + code_units_read = c_ulong() + + rv = ReadConsoleW( + HANDLE(self.handle), + buffer, + code_units_to_be_read, + byref(code_units_read), + None, + ) + if GetLastError() == ERROR_OPERATION_ABORTED: + # wait for KeyboardInterrupt + time.sleep(0.1) + if not rv: + raise OSError(f"Windows error: {GetLastError()}") + + if buffer[0] == EOF: + return 0 + return 2 * code_units_read.value + + +class _WindowsConsoleWriter(_WindowsConsoleRawIOBase): + def writable(self) -> t.Literal[True]: + return True + + @staticmethod + def _get_error_message(errno: int) -> str: + if errno == ERROR_SUCCESS: + return "ERROR_SUCCESS" + elif errno == ERROR_NOT_ENOUGH_MEMORY: + return "ERROR_NOT_ENOUGH_MEMORY" + return f"Windows error {errno}" + + def write(self, b: Buffer) -> int: + bytes_to_be_written = len(b) + buf = get_buffer(b) + code_units_to_be_written = min(bytes_to_be_written, MAX_BYTES_WRITTEN) // 2 + code_units_written = c_ulong() + + WriteConsoleW( + HANDLE(self.handle), + buf, + code_units_to_be_written, + byref(code_units_written), + None, + ) + bytes_written = 2 * code_units_written.value + + if bytes_written == 0 and bytes_to_be_written > 0: + raise OSError(self._get_error_message(GetLastError())) + return bytes_written + + +class ConsoleStream: + def __init__(self, text_stream: t.TextIO, byte_stream: t.BinaryIO) -> None: + self._text_stream = text_stream + self.buffer = byte_stream + + @property + def name(self) -> str: + return self.buffer.name + + def write(self, x: t.AnyStr) -> int: + if isinstance(x, str): + return self._text_stream.write(x) + try: + self.flush() + except Exception: + pass + return self.buffer.write(x) + + def writelines(self, lines: cabc.Iterable[t.AnyStr]) -> None: + for line in lines: + self.write(line) + + def __getattr__(self, name: str) -> t.Any: + return getattr(self._text_stream, name) + + def isatty(self) -> bool: + return self.buffer.isatty() + + def __repr__(self) -> str: + return f"" + + +def _get_text_stdin(buffer_stream: t.BinaryIO) -> t.TextIO: + text_stream = _NonClosingTextIOWrapper( + io.BufferedReader(_WindowsConsoleReader(STDIN_HANDLE)), + "utf-16-le", + "strict", + line_buffering=True, + ) + return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) + + +def _get_text_stdout(buffer_stream: t.BinaryIO) -> t.TextIO: + text_stream = _NonClosingTextIOWrapper( + io.BufferedWriter(_WindowsConsoleWriter(STDOUT_HANDLE)), + "utf-16-le", + "strict", + line_buffering=True, + ) + return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) + + +def _get_text_stderr(buffer_stream: t.BinaryIO) -> t.TextIO: + text_stream = _NonClosingTextIOWrapper( + io.BufferedWriter(_WindowsConsoleWriter(STDERR_HANDLE)), + "utf-16-le", + "strict", + line_buffering=True, + ) + return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) + + +_stream_factories: cabc.Mapping[int, t.Callable[[t.BinaryIO], t.TextIO]] = { + 0: _get_text_stdin, + 1: _get_text_stdout, + 2: _get_text_stderr, +} + + +def _is_console(f: t.TextIO) -> bool: + if not hasattr(f, "fileno"): + return False + + try: + fileno = f.fileno() + except (OSError, io.UnsupportedOperation): + return False + + handle = msvcrt.get_osfhandle(fileno) + return bool(GetConsoleMode(handle, byref(DWORD()))) + + +def _get_windows_console_stream( + f: t.TextIO, encoding: str | None, errors: str | None +) -> t.TextIO | None: + if ( + get_buffer is None + or encoding not in {"utf-16-le", None} + or errors not in {"strict", None} + or not _is_console(f) + ): + return None + + func = _stream_factories.get(f.fileno()) + if func is None: + return None + + b = getattr(f, "buffer", None) + + if b is None: + return None + + return func(b) diff --git a/ocr/.venv/Lib/site-packages/click/core.py b/ocr/.venv/Lib/site-packages/click/core.py new file mode 100644 index 00000000..ff2f74ad --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/core.py @@ -0,0 +1,3347 @@ +from __future__ import annotations + +import collections.abc as cabc +import enum +import errno +import inspect +import os +import sys +import typing as t +from collections import abc +from collections import Counter +from contextlib import AbstractContextManager +from contextlib import contextmanager +from contextlib import ExitStack +from functools import update_wrapper +from gettext import gettext as _ +from gettext import ngettext +from itertools import repeat +from types import TracebackType + +from . import types +from ._utils import FLAG_NEEDS_VALUE +from ._utils import UNSET +from .exceptions import Abort +from .exceptions import BadParameter +from .exceptions import ClickException +from .exceptions import Exit +from .exceptions import MissingParameter +from .exceptions import NoArgsIsHelpError +from .exceptions import UsageError +from .formatting import HelpFormatter +from .formatting import join_options +from .globals import pop_context +from .globals import push_context +from .parser import _OptionParser +from .parser import _split_opt +from .termui import confirm +from .termui import prompt +from .termui import style +from .utils import _detect_program_name +from .utils import _expand_args +from .utils import echo +from .utils import make_default_short_help +from .utils import make_str +from .utils import PacifyFlushWrapper + +if t.TYPE_CHECKING: + from .shell_completion import CompletionItem + +F = t.TypeVar("F", bound="t.Callable[..., t.Any]") +V = t.TypeVar("V") + + +def _complete_visible_commands( + ctx: Context, incomplete: str +) -> cabc.Iterator[tuple[str, Command]]: + """List all the subcommands of a group that start with the + incomplete value and aren't hidden. + + :param ctx: Invocation context for the group. + :param incomplete: Value being completed. May be empty. + """ + multi = t.cast(Group, ctx.command) + + for name in multi.list_commands(ctx): + if name.startswith(incomplete): + command = multi.get_command(ctx, name) + + if command is not None and not command.hidden: + yield name, command + + +def _check_nested_chain( + base_command: Group, cmd_name: str, cmd: Command, register: bool = False +) -> None: + if not base_command.chain or not isinstance(cmd, Group): + return + + if register: + message = ( + f"It is not possible to add the group {cmd_name!r} to another" + f" group {base_command.name!r} that is in chain mode." + ) + else: + message = ( + f"Found the group {cmd_name!r} as subcommand to another group " + f" {base_command.name!r} that is in chain mode. This is not supported." + ) + + raise RuntimeError(message) + + +def batch(iterable: cabc.Iterable[V], batch_size: int) -> list[tuple[V, ...]]: + return list(zip(*repeat(iter(iterable), batch_size), strict=False)) + + +@contextmanager +def augment_usage_errors( + ctx: Context, param: Parameter | None = None +) -> cabc.Iterator[None]: + """Context manager that attaches extra information to exceptions.""" + try: + yield + except BadParameter as e: + if e.ctx is None: + e.ctx = ctx + if param is not None and e.param is None: + e.param = param + raise + except UsageError as e: + if e.ctx is None: + e.ctx = ctx + raise + + +def iter_params_for_processing( + invocation_order: cabc.Sequence[Parameter], + declaration_order: cabc.Sequence[Parameter], +) -> list[Parameter]: + """Returns all declared parameters in the order they should be processed. + + The declared parameters are re-shuffled depending on the order in which + they were invoked, as well as the eagerness of each parameters. + + The invocation order takes precedence over the declaration order. I.e. the + order in which the user provided them to the CLI is respected. + + This behavior and its effect on callback evaluation is detailed at: + https://click.palletsprojects.com/en/stable/advanced/#callback-evaluation-order + """ + + def sort_key(item: Parameter) -> tuple[bool, float]: + try: + idx: float = invocation_order.index(item) + except ValueError: + idx = float("inf") + + return not item.is_eager, idx + + return sorted(declaration_order, key=sort_key) + + +class ParameterSource(enum.Enum): + """This is an :class:`~enum.Enum` that indicates the source of a + parameter's value. + + Use :meth:`click.Context.get_parameter_source` to get the + source for a parameter by name. + + .. versionchanged:: 8.0 + Use :class:`~enum.Enum` and drop the ``validate`` method. + + .. versionchanged:: 8.0 + Added the ``PROMPT`` value. + """ + + COMMANDLINE = enum.auto() + """The value was provided by the command line args.""" + ENVIRONMENT = enum.auto() + """The value was provided with an environment variable.""" + DEFAULT = enum.auto() + """Used the default specified by the parameter.""" + DEFAULT_MAP = enum.auto() + """Used a default provided by :attr:`Context.default_map`.""" + PROMPT = enum.auto() + """Used a prompt to confirm a default or provide a value.""" + + +class Context: + """The context is a special internal object that holds state relevant + for the script execution at every single level. It's normally invisible + to commands unless they opt-in to getting access to it. + + The context is useful as it can pass internal objects around and can + control special execution features such as reading data from + environment variables. + + A context can be used as context manager in which case it will call + :meth:`close` on teardown. + + :param command: the command class for this context. + :param parent: the parent context. + :param info_name: the info name for this invocation. Generally this + is the most descriptive name for the script or + command. For the toplevel script it is usually + the name of the script, for commands below it it's + the name of the script. + :param obj: an arbitrary object of user data. + :param auto_envvar_prefix: the prefix to use for automatic environment + variables. If this is `None` then reading + from environment variables is disabled. This + does not affect manually set environment + variables which are always read. + :param default_map: a dictionary (like object) with default values + for parameters. + :param terminal_width: the width of the terminal. The default is + inherit from parent context. If no context + defines the terminal width then auto + detection will be applied. + :param max_content_width: the maximum width for content rendered by + Click (this currently only affects help + pages). This defaults to 80 characters if + not overridden. In other words: even if the + terminal is larger than that, Click will not + format things wider than 80 characters by + default. In addition to that, formatters might + add some safety mapping on the right. + :param resilient_parsing: if this flag is enabled then Click will + parse without any interactivity or callback + invocation. Default values will also be + ignored. This is useful for implementing + things such as completion support. + :param allow_extra_args: if this is set to `True` then extra arguments + at the end will not raise an error and will be + kept on the context. The default is to inherit + from the command. + :param allow_interspersed_args: if this is set to `False` then options + and arguments cannot be mixed. The + default is to inherit from the command. + :param ignore_unknown_options: instructs click to ignore options it does + not know and keeps them for later + processing. + :param help_option_names: optionally a list of strings that define how + the default help parameter is named. The + default is ``['--help']``. + :param token_normalize_func: an optional function that is used to + normalize tokens (options, choices, + etc.). This for instance can be used to + implement case insensitive behavior. + :param color: controls if the terminal supports ANSI colors or not. The + default is autodetection. This is only needed if ANSI + codes are used in texts that Click prints which is by + default not the case. This for instance would affect + help output. + :param show_default: Show the default value for commands. If this + value is not set, it defaults to the value from the parent + context. ``Command.show_default`` overrides this default for the + specific command. + + .. versionchanged:: 8.2 + The ``protected_args`` attribute is deprecated and will be removed in + Click 9.0. ``args`` will contain remaining unparsed tokens. + + .. versionchanged:: 8.1 + The ``show_default`` parameter is overridden by + ``Command.show_default``, instead of the other way around. + + .. versionchanged:: 8.0 + The ``show_default`` parameter defaults to the value from the + parent context. + + .. versionchanged:: 7.1 + Added the ``show_default`` parameter. + + .. versionchanged:: 4.0 + Added the ``color``, ``ignore_unknown_options``, and + ``max_content_width`` parameters. + + .. versionchanged:: 3.0 + Added the ``allow_extra_args`` and ``allow_interspersed_args`` + parameters. + + .. versionchanged:: 2.0 + Added the ``resilient_parsing``, ``help_option_names``, and + ``token_normalize_func`` parameters. + """ + + #: The formatter class to create with :meth:`make_formatter`. + #: + #: .. versionadded:: 8.0 + formatter_class: type[HelpFormatter] = HelpFormatter + + def __init__( + self, + command: Command, + parent: Context | None = None, + info_name: str | None = None, + obj: t.Any | None = None, + auto_envvar_prefix: str | None = None, + default_map: cabc.MutableMapping[str, t.Any] | None = None, + terminal_width: int | None = None, + max_content_width: int | None = None, + resilient_parsing: bool = False, + allow_extra_args: bool | None = None, + allow_interspersed_args: bool | None = None, + ignore_unknown_options: bool | None = None, + help_option_names: list[str] | None = None, + token_normalize_func: t.Callable[[str], str] | None = None, + color: bool | None = None, + show_default: bool | None = None, + ) -> None: + #: the parent context or `None` if none exists. + self.parent = parent + #: the :class:`Command` for this context. + self.command = command + #: the descriptive information name + self.info_name = info_name + #: Map of parameter names to their parsed values. Parameters + #: with ``expose_value=False`` are not stored. + self.params: dict[str, t.Any] = {} + #: the leftover arguments. + self.args: list[str] = [] + #: protected arguments. These are arguments that are prepended + #: to `args` when certain parsing scenarios are encountered but + #: must be never propagated to another arguments. This is used + #: to implement nested parsing. + self._protected_args: list[str] = [] + #: the collected prefixes of the command's options. + self._opt_prefixes: set[str] = set(parent._opt_prefixes) if parent else set() + + if obj is None and parent is not None: + obj = parent.obj + + #: the user object stored. + self.obj: t.Any = obj + self._meta: dict[str, t.Any] = getattr(parent, "meta", {}) + + #: A dictionary (-like object) with defaults for parameters. + if ( + default_map is None + and info_name is not None + and parent is not None + and parent.default_map is not None + ): + default_map = parent.default_map.get(info_name) + + self.default_map: cabc.MutableMapping[str, t.Any] | None = default_map + + #: This flag indicates if a subcommand is going to be executed. A + #: group callback can use this information to figure out if it's + #: being executed directly or because the execution flow passes + #: onwards to a subcommand. By default it's None, but it can be + #: the name of the subcommand to execute. + #: + #: If chaining is enabled this will be set to ``'*'`` in case + #: any commands are executed. It is however not possible to + #: figure out which ones. If you require this knowledge you + #: should use a :func:`result_callback`. + self.invoked_subcommand: str | None = None + + if terminal_width is None and parent is not None: + terminal_width = parent.terminal_width + + #: The width of the terminal (None is autodetection). + self.terminal_width: int | None = terminal_width + + if max_content_width is None and parent is not None: + max_content_width = parent.max_content_width + + #: The maximum width of formatted content (None implies a sensible + #: default which is 80 for most things). + self.max_content_width: int | None = max_content_width + + if allow_extra_args is None: + allow_extra_args = command.allow_extra_args + + #: Indicates if the context allows extra args or if it should + #: fail on parsing. + #: + #: .. versionadded:: 3.0 + self.allow_extra_args = allow_extra_args + + if allow_interspersed_args is None: + allow_interspersed_args = command.allow_interspersed_args + + #: Indicates if the context allows mixing of arguments and + #: options or not. + #: + #: .. versionadded:: 3.0 + self.allow_interspersed_args: bool = allow_interspersed_args + + if ignore_unknown_options is None: + ignore_unknown_options = command.ignore_unknown_options + + #: Instructs click to ignore options that a command does not + #: understand and will store it on the context for later + #: processing. This is primarily useful for situations where you + #: want to call into external programs. Generally this pattern is + #: strongly discouraged because it's not possibly to losslessly + #: forward all arguments. + #: + #: .. versionadded:: 4.0 + self.ignore_unknown_options: bool = ignore_unknown_options + + if help_option_names is None: + if parent is not None: + help_option_names = parent.help_option_names + else: + help_option_names = ["--help"] + + #: The names for the help options. + self.help_option_names: list[str] = help_option_names + + if token_normalize_func is None and parent is not None: + token_normalize_func = parent.token_normalize_func + + #: An optional normalization function for tokens. This is + #: options, choices, commands etc. + self.token_normalize_func: t.Callable[[str], str] | None = token_normalize_func + + #: Indicates if resilient parsing is enabled. In that case Click + #: will do its best to not cause any failures and default values + #: will be ignored. Useful for completion. + self.resilient_parsing: bool = resilient_parsing + + # If there is no envvar prefix yet, but the parent has one and + # the command on this level has a name, we can expand the envvar + # prefix automatically. + if auto_envvar_prefix is None: + if ( + parent is not None + and parent.auto_envvar_prefix is not None + and self.info_name is not None + ): + auto_envvar_prefix = ( + f"{parent.auto_envvar_prefix}_{self.info_name.upper()}" + ) + else: + auto_envvar_prefix = auto_envvar_prefix.upper() + + if auto_envvar_prefix is not None: + auto_envvar_prefix = auto_envvar_prefix.replace("-", "_") + + self.auto_envvar_prefix: str | None = auto_envvar_prefix + + if color is None and parent is not None: + color = parent.color + + #: Controls if styling output is wanted or not. + self.color: bool | None = color + + if show_default is None and parent is not None: + show_default = parent.show_default + + #: Show option default values when formatting help text. + self.show_default: bool | None = show_default + + self._close_callbacks: list[t.Callable[[], t.Any]] = [] + self._depth = 0 + self._parameter_source: dict[str, ParameterSource] = {} + self._exit_stack = ExitStack() + + @property + def protected_args(self) -> list[str]: + import warnings + + warnings.warn( + "'protected_args' is deprecated and will be removed in Click 9.0." + " 'args' will contain remaining unparsed tokens.", + DeprecationWarning, + stacklevel=2, + ) + return self._protected_args + + def to_info_dict(self) -> dict[str, t.Any]: + """Gather information that could be useful for a tool generating + user-facing documentation. This traverses the entire CLI + structure. + + .. code-block:: python + + with Context(cli) as ctx: + info = ctx.to_info_dict() + + .. versionadded:: 8.0 + """ + return { + "command": self.command.to_info_dict(self), + "info_name": self.info_name, + "allow_extra_args": self.allow_extra_args, + "allow_interspersed_args": self.allow_interspersed_args, + "ignore_unknown_options": self.ignore_unknown_options, + "auto_envvar_prefix": self.auto_envvar_prefix, + } + + def __enter__(self) -> Context: + self._depth += 1 + push_context(self) + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> bool | None: + self._depth -= 1 + exit_result: bool | None = None + if self._depth == 0: + exit_result = self._close_with_exception_info(exc_type, exc_value, tb) + pop_context() + + return exit_result + + @contextmanager + def scope(self, cleanup: bool = True) -> cabc.Iterator[Context]: + """This helper method can be used with the context object to promote + it to the current thread local (see :func:`get_current_context`). + The default behavior of this is to invoke the cleanup functions which + can be disabled by setting `cleanup` to `False`. The cleanup + functions are typically used for things such as closing file handles. + + If the cleanup is intended the context object can also be directly + used as a context manager. + + Example usage:: + + with ctx.scope(): + assert get_current_context() is ctx + + This is equivalent:: + + with ctx: + assert get_current_context() is ctx + + .. versionadded:: 5.0 + + :param cleanup: controls if the cleanup functions should be run or + not. The default is to run these functions. In + some situations the context only wants to be + temporarily pushed in which case this can be disabled. + Nested pushes automatically defer the cleanup. + """ + if not cleanup: + self._depth += 1 + try: + with self as rv: + yield rv + finally: + if not cleanup: + self._depth -= 1 + + @property + def meta(self) -> dict[str, t.Any]: + """This is a dictionary which is shared with all the contexts + that are nested. It exists so that click utilities can store some + state here if they need to. It is however the responsibility of + that code to manage this dictionary well. + + The keys are supposed to be unique dotted strings. For instance + module paths are a good choice for it. What is stored in there is + irrelevant for the operation of click. However what is important is + that code that places data here adheres to the general semantics of + the system. + + Example usage:: + + LANG_KEY = f'{__name__}.lang' + + def set_language(value): + ctx = get_current_context() + ctx.meta[LANG_KEY] = value + + def get_language(): + return get_current_context().meta.get(LANG_KEY, 'en_US') + + .. versionadded:: 5.0 + """ + return self._meta + + def make_formatter(self) -> HelpFormatter: + """Creates the :class:`~click.HelpFormatter` for the help and + usage output. + + To quickly customize the formatter class used without overriding + this method, set the :attr:`formatter_class` attribute. + + .. versionchanged:: 8.0 + Added the :attr:`formatter_class` attribute. + """ + return self.formatter_class( + width=self.terminal_width, max_width=self.max_content_width + ) + + def with_resource(self, context_manager: AbstractContextManager[V]) -> V: + """Register a resource as if it were used in a ``with`` + statement. The resource will be cleaned up when the context is + popped. + + Uses :meth:`contextlib.ExitStack.enter_context`. It calls the + resource's ``__enter__()`` method and returns the result. When + the context is popped, it closes the stack, which calls the + resource's ``__exit__()`` method. + + To register a cleanup function for something that isn't a + context manager, use :meth:`call_on_close`. Or use something + from :mod:`contextlib` to turn it into a context manager first. + + .. code-block:: python + + @click.group() + @click.option("--name") + @click.pass_context + def cli(ctx): + ctx.obj = ctx.with_resource(connect_db(name)) + + :param context_manager: The context manager to enter. + :return: Whatever ``context_manager.__enter__()`` returns. + + .. versionadded:: 8.0 + """ + return self._exit_stack.enter_context(context_manager) + + def call_on_close(self, f: t.Callable[..., t.Any]) -> t.Callable[..., t.Any]: + """Register a function to be called when the context tears down. + + This can be used to close resources opened during the script + execution. Resources that support Python's context manager + protocol which would be used in a ``with`` statement should be + registered with :meth:`with_resource` instead. + + :param f: The function to execute on teardown. + """ + return self._exit_stack.callback(f) + + def close(self) -> None: + """Invoke all close callbacks registered with + :meth:`call_on_close`, and exit all context managers entered + with :meth:`with_resource`. + """ + self._close_with_exception_info(None, None, None) + + def _close_with_exception_info( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> bool | None: + """Unwind the exit stack by calling its :meth:`__exit__` providing the exception + information to allow for exception handling by the various resources registered + using :meth;`with_resource` + + :return: Whatever ``exit_stack.__exit__()`` returns. + """ + exit_result = self._exit_stack.__exit__(exc_type, exc_value, tb) + # In case the context is reused, create a new exit stack. + self._exit_stack = ExitStack() + + return exit_result + + @property + def command_path(self) -> str: + """The computed command path. This is used for the ``usage`` + information on the help page. It's automatically created by + combining the info names of the chain of contexts to the root. + """ + rv = "" + if self.info_name is not None: + rv = self.info_name + if self.parent is not None: + parent_command_path = [self.parent.command_path] + + if isinstance(self.parent.command, Command): + for param in self.parent.command.get_params(self): + parent_command_path.extend(param.get_usage_pieces(self)) + + rv = f"{' '.join(parent_command_path)} {rv}" + return rv.lstrip() + + def find_root(self) -> Context: + """Finds the outermost context.""" + node = self + while node.parent is not None: + node = node.parent + return node + + def find_object(self, object_type: type[V]) -> V | None: + """Finds the closest object of a given type.""" + node: Context | None = self + + while node is not None: + if isinstance(node.obj, object_type): + return node.obj + + node = node.parent + + return None + + def ensure_object(self, object_type: type[V]) -> V: + """Like :meth:`find_object` but sets the innermost object to a + new instance of `object_type` if it does not exist. + """ + rv = self.find_object(object_type) + if rv is None: + self.obj = rv = object_type() + return rv + + @t.overload + def lookup_default( + self, name: str, call: t.Literal[True] = True + ) -> t.Any | None: ... + + @t.overload + def lookup_default( + self, name: str, call: t.Literal[False] = ... + ) -> t.Any | t.Callable[[], t.Any] | None: ... + + def lookup_default(self, name: str, call: bool = True) -> t.Any | None: + """Get the default for a parameter from :attr:`default_map`. + + :param name: Name of the parameter. + :param call: If the default is a callable, call it. Disable to + return the callable instead. + + .. versionchanged:: 8.0 + Added the ``call`` parameter. + """ + if self.default_map is not None: + value = self.default_map.get(name, UNSET) + + if call and callable(value): + return value() + + return value + + return UNSET + + def fail(self, message: str) -> t.NoReturn: + """Aborts the execution of the program with a specific error + message. + + :param message: the error message to fail with. + """ + raise UsageError(message, self) + + def abort(self) -> t.NoReturn: + """Aborts the script.""" + raise Abort() + + def exit(self, code: int = 0) -> t.NoReturn: + """Exits the application with a given exit code. + + .. versionchanged:: 8.2 + Callbacks and context managers registered with :meth:`call_on_close` + and :meth:`with_resource` are closed before exiting. + """ + self.close() + raise Exit(code) + + def get_usage(self) -> str: + """Helper method to get formatted usage string for the current + context and command. + """ + return self.command.get_usage(self) + + def get_help(self) -> str: + """Helper method to get formatted help page for the current + context and command. + """ + return self.command.get_help(self) + + def _make_sub_context(self, command: Command) -> Context: + """Create a new context of the same type as this context, but + for a new command. + + :meta private: + """ + return type(self)(command, info_name=command.name, parent=self) + + @t.overload + def invoke( + self, callback: t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any + ) -> V: ... + + @t.overload + def invoke(self, callback: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: ... + + def invoke( + self, callback: Command | t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any + ) -> t.Any | V: + """Invokes a command callback in exactly the way it expects. There + are two ways to invoke this method: + + 1. the first argument can be a callback and all other arguments and + keyword arguments are forwarded directly to the function. + 2. the first argument is a click command object. In that case all + arguments are forwarded as well but proper click parameters + (options and click arguments) must be keyword arguments and Click + will fill in defaults. + + .. versionchanged:: 8.0 + All ``kwargs`` are tracked in :attr:`params` so they will be + passed if :meth:`forward` is called at multiple levels. + + .. versionchanged:: 3.2 + A new context is created, and missing arguments use default values. + """ + if isinstance(callback, Command): + other_cmd = callback + + if other_cmd.callback is None: + raise TypeError( + "The given command does not have a callback that can be invoked." + ) + else: + callback = t.cast("t.Callable[..., V]", other_cmd.callback) + + ctx = self._make_sub_context(other_cmd) + + for param in other_cmd.params: + if param.name not in kwargs and param.expose_value: + kwargs[param.name] = param.type_cast_value( # type: ignore + ctx, param.get_default(ctx) + ) + + # Track all kwargs as params, so that forward() will pass + # them on in subsequent calls. + ctx.params.update(kwargs) + else: + ctx = self + + with augment_usage_errors(self): + with ctx: + return callback(*args, **kwargs) + + def forward(self, cmd: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: + """Similar to :meth:`invoke` but fills in default keyword + arguments from the current context if the other command expects + it. This cannot invoke callbacks directly, only other commands. + + .. versionchanged:: 8.0 + All ``kwargs`` are tracked in :attr:`params` so they will be + passed if ``forward`` is called at multiple levels. + """ + # Can only forward to other commands, not direct callbacks. + if not isinstance(cmd, Command): + raise TypeError("Callback is not a command.") + + for param in self.params: + if param not in kwargs: + kwargs[param] = self.params[param] + + return self.invoke(cmd, *args, **kwargs) + + def set_parameter_source(self, name: str, source: ParameterSource) -> None: + """Set the source of a parameter. This indicates the location + from which the value of the parameter was obtained. + + :param name: The name of the parameter. + :param source: A member of :class:`~click.core.ParameterSource`. + """ + self._parameter_source[name] = source + + def get_parameter_source(self, name: str) -> ParameterSource | None: + """Get the source of a parameter. This indicates the location + from which the value of the parameter was obtained. + + This can be useful for determining when a user specified a value + on the command line that is the same as the default value. It + will be :attr:`~click.core.ParameterSource.DEFAULT` only if the + value was actually taken from the default. + + :param name: The name of the parameter. + :rtype: ParameterSource + + .. versionchanged:: 8.0 + Returns ``None`` if the parameter was not provided from any + source. + """ + return self._parameter_source.get(name) + + +class Command: + """Commands are the basic building block of command line interfaces in + Click. A basic command handles command line parsing and might dispatch + more parsing to commands nested below it. + + :param name: the name of the command to use unless a group overrides it. + :param context_settings: an optional dictionary with defaults that are + passed to the context object. + :param callback: the callback to invoke. This is optional. + :param params: the parameters to register with this command. This can + be either :class:`Option` or :class:`Argument` objects. + :param help: the help string to use for this command. + :param epilog: like the help string but it's printed at the end of the + help page after everything else. + :param short_help: the short help to use for this command. This is + shown on the command listing of the parent command. + :param add_help_option: by default each command registers a ``--help`` + option. This can be disabled by this parameter. + :param no_args_is_help: this controls what happens if no arguments are + provided. This option is disabled by default. + If enabled this will add ``--help`` as argument + if no arguments are passed + :param hidden: hide this command from help outputs. + :param deprecated: If ``True`` or non-empty string, issues a message + indicating that the command is deprecated and highlights + its deprecation in --help. The message can be customized + by using a string as the value. + + .. versionchanged:: 8.2 + This is the base class for all commands, not ``BaseCommand``. + ``deprecated`` can be set to a string as well to customize the + deprecation message. + + .. versionchanged:: 8.1 + ``help``, ``epilog``, and ``short_help`` are stored unprocessed, + all formatting is done when outputting help text, not at init, + and is done even if not using the ``@command`` decorator. + + .. versionchanged:: 8.0 + Added a ``repr`` showing the command name. + + .. versionchanged:: 7.1 + Added the ``no_args_is_help`` parameter. + + .. versionchanged:: 2.0 + Added the ``context_settings`` parameter. + """ + + #: The context class to create with :meth:`make_context`. + #: + #: .. versionadded:: 8.0 + context_class: type[Context] = Context + + #: the default for the :attr:`Context.allow_extra_args` flag. + allow_extra_args = False + + #: the default for the :attr:`Context.allow_interspersed_args` flag. + allow_interspersed_args = True + + #: the default for the :attr:`Context.ignore_unknown_options` flag. + ignore_unknown_options = False + + def __init__( + self, + name: str | None, + context_settings: cabc.MutableMapping[str, t.Any] | None = None, + callback: t.Callable[..., t.Any] | None = None, + params: list[Parameter] | None = None, + help: str | None = None, + epilog: str | None = None, + short_help: str | None = None, + options_metavar: str | None = "[OPTIONS]", + add_help_option: bool = True, + no_args_is_help: bool = False, + hidden: bool = False, + deprecated: bool | str = False, + ) -> None: + #: the name the command thinks it has. Upon registering a command + #: on a :class:`Group` the group will default the command name + #: with this information. You should instead use the + #: :class:`Context`\'s :attr:`~Context.info_name` attribute. + self.name = name + + if context_settings is None: + context_settings = {} + + #: an optional dictionary with defaults passed to the context. + self.context_settings: cabc.MutableMapping[str, t.Any] = context_settings + + #: the callback to execute when the command fires. This might be + #: `None` in which case nothing happens. + self.callback = callback + #: the list of parameters for this command in the order they + #: should show up in the help page and execute. Eager parameters + #: will automatically be handled before non eager ones. + self.params: list[Parameter] = params or [] + self.help = help + self.epilog = epilog + self.options_metavar = options_metavar + self.short_help = short_help + self.add_help_option = add_help_option + self._help_option = None + self.no_args_is_help = no_args_is_help + self.hidden = hidden + self.deprecated = deprecated + + def to_info_dict(self, ctx: Context) -> dict[str, t.Any]: + return { + "name": self.name, + "params": [param.to_info_dict() for param in self.get_params(ctx)], + "help": self.help, + "epilog": self.epilog, + "short_help": self.short_help, + "hidden": self.hidden, + "deprecated": self.deprecated, + } + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.name}>" + + def get_usage(self, ctx: Context) -> str: + """Formats the usage line into a string and returns it. + + Calls :meth:`format_usage` internally. + """ + formatter = ctx.make_formatter() + self.format_usage(ctx, formatter) + return formatter.getvalue().rstrip("\n") + + def get_params(self, ctx: Context) -> list[Parameter]: + params = self.params + help_option = self.get_help_option(ctx) + + if help_option is not None: + params = [*params, help_option] + + if __debug__: + import warnings + + opts = [opt for param in params for opt in param.opts] + opts_counter = Counter(opts) + duplicate_opts = (opt for opt, count in opts_counter.items() if count > 1) + + for duplicate_opt in duplicate_opts: + warnings.warn( + ( + f"The parameter {duplicate_opt} is used more than once. " + "Remove its duplicate as parameters should be unique." + ), + stacklevel=3, + ) + + return params + + def format_usage(self, ctx: Context, formatter: HelpFormatter) -> None: + """Writes the usage line into the formatter. + + This is a low-level method called by :meth:`get_usage`. + """ + pieces = self.collect_usage_pieces(ctx) + formatter.write_usage(ctx.command_path, " ".join(pieces)) + + def collect_usage_pieces(self, ctx: Context) -> list[str]: + """Returns all the pieces that go into the usage line and returns + it as a list of strings. + """ + rv = [self.options_metavar] if self.options_metavar else [] + + for param in self.get_params(ctx): + rv.extend(param.get_usage_pieces(ctx)) + + return rv + + def get_help_option_names(self, ctx: Context) -> list[str]: + """Returns the names for the help option.""" + all_names = set(ctx.help_option_names) + for param in self.params: + all_names.difference_update(param.opts) + all_names.difference_update(param.secondary_opts) + return list(all_names) + + def get_help_option(self, ctx: Context) -> Option | None: + """Returns the help option object. + + Skipped if :attr:`add_help_option` is ``False``. + + .. versionchanged:: 8.1.8 + The help option is now cached to avoid creating it multiple times. + """ + help_option_names = self.get_help_option_names(ctx) + + if not help_option_names or not self.add_help_option: + return None + + # Cache the help option object in private _help_option attribute to + # avoid creating it multiple times. Not doing this will break the + # callback odering by iter_params_for_processing(), which relies on + # object comparison. + if self._help_option is None: + # Avoid circular import. + from .decorators import help_option + + # Apply help_option decorator and pop resulting option + help_option(*help_option_names)(self) + self._help_option = self.params.pop() # type: ignore[assignment] + + return self._help_option + + def make_parser(self, ctx: Context) -> _OptionParser: + """Creates the underlying option parser for this command.""" + parser = _OptionParser(ctx) + for param in self.get_params(ctx): + param.add_to_parser(parser, ctx) + return parser + + def get_help(self, ctx: Context) -> str: + """Formats the help into a string and returns it. + + Calls :meth:`format_help` internally. + """ + formatter = ctx.make_formatter() + self.format_help(ctx, formatter) + return formatter.getvalue().rstrip("\n") + + def get_short_help_str(self, limit: int = 45) -> str: + """Gets short help for the command or makes it by shortening the + long help string. + """ + if self.short_help: + text = inspect.cleandoc(self.short_help) + elif self.help: + text = make_default_short_help(self.help, limit) + else: + text = "" + + if self.deprecated: + deprecated_message = ( + f"(DEPRECATED: {self.deprecated})" + if isinstance(self.deprecated, str) + else "(DEPRECATED)" + ) + text = _("{text} {deprecated_message}").format( + text=text, deprecated_message=deprecated_message + ) + + return text.strip() + + def format_help(self, ctx: Context, formatter: HelpFormatter) -> None: + """Writes the help into the formatter if it exists. + + This is a low-level method called by :meth:`get_help`. + + This calls the following methods: + + - :meth:`format_usage` + - :meth:`format_help_text` + - :meth:`format_options` + - :meth:`format_epilog` + """ + self.format_usage(ctx, formatter) + self.format_help_text(ctx, formatter) + self.format_options(ctx, formatter) + self.format_epilog(ctx, formatter) + + def format_help_text(self, ctx: Context, formatter: HelpFormatter) -> None: + """Writes the help text to the formatter if it exists.""" + if self.help is not None: + # truncate the help text to the first form feed + text = inspect.cleandoc(self.help).partition("\f")[0] + else: + text = "" + + if self.deprecated: + deprecated_message = ( + f"(DEPRECATED: {self.deprecated})" + if isinstance(self.deprecated, str) + else "(DEPRECATED)" + ) + text = _("{text} {deprecated_message}").format( + text=text, deprecated_message=deprecated_message + ) + + if text: + formatter.write_paragraph() + + with formatter.indentation(): + formatter.write_text(text) + + def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: + """Writes all the options into the formatter if they exist.""" + opts = [] + for param in self.get_params(ctx): + rv = param.get_help_record(ctx) + if rv is not None: + opts.append(rv) + + if opts: + with formatter.section(_("Options")): + formatter.write_dl(opts) + + def format_epilog(self, ctx: Context, formatter: HelpFormatter) -> None: + """Writes the epilog into the formatter if it exists.""" + if self.epilog: + epilog = inspect.cleandoc(self.epilog) + formatter.write_paragraph() + + with formatter.indentation(): + formatter.write_text(epilog) + + def make_context( + self, + info_name: str | None, + args: list[str], + parent: Context | None = None, + **extra: t.Any, + ) -> Context: + """This function when given an info name and arguments will kick + off the parsing and create a new :class:`Context`. It does not + invoke the actual command callback though. + + To quickly customize the context class used without overriding + this method, set the :attr:`context_class` attribute. + + :param info_name: the info name for this invocation. Generally this + is the most descriptive name for the script or + command. For the toplevel script it's usually + the name of the script, for commands below it's + the name of the command. + :param args: the arguments to parse as list of strings. + :param parent: the parent context if available. + :param extra: extra keyword arguments forwarded to the context + constructor. + + .. versionchanged:: 8.0 + Added the :attr:`context_class` attribute. + """ + for key, value in self.context_settings.items(): + if key not in extra: + extra[key] = value + + ctx = self.context_class(self, info_name=info_name, parent=parent, **extra) + + with ctx.scope(cleanup=False): + self.parse_args(ctx, args) + return ctx + + def parse_args(self, ctx: Context, args: list[str]) -> list[str]: + if not args and self.no_args_is_help and not ctx.resilient_parsing: + raise NoArgsIsHelpError(ctx) + + parser = self.make_parser(ctx) + opts, args, param_order = parser.parse_args(args=args) + + for param in iter_params_for_processing(param_order, self.get_params(ctx)): + _, args = param.handle_parse_result(ctx, opts, args) + + if args and not ctx.allow_extra_args and not ctx.resilient_parsing: + ctx.fail( + ngettext( + "Got unexpected extra argument ({args})", + "Got unexpected extra arguments ({args})", + len(args), + ).format(args=" ".join(map(str, args))) + ) + + ctx.args = args + ctx._opt_prefixes.update(parser._opt_prefixes) + return args + + def invoke(self, ctx: Context) -> t.Any: + """Given a context, this invokes the attached callback (if it exists) + in the right way. + """ + if self.deprecated: + extra_message = ( + f" {self.deprecated}" if isinstance(self.deprecated, str) else "" + ) + message = _( + "DeprecationWarning: The command {name!r} is deprecated.{extra_message}" + ).format(name=self.name, extra_message=extra_message) + echo(style(message, fg="red"), err=True) + + if self.callback is not None: + return ctx.invoke(self.callback, **ctx.params) + + def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: + """Return a list of completions for the incomplete value. Looks + at the names of options and chained multi-commands. + + Any command could be part of a chained multi-command, so sibling + commands are valid at any point during command completion. + + :param ctx: Invocation context for this command. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + from click.shell_completion import CompletionItem + + results: list[CompletionItem] = [] + + if incomplete and not incomplete[0].isalnum(): + for param in self.get_params(ctx): + if ( + not isinstance(param, Option) + or param.hidden + or ( + not param.multiple + and ctx.get_parameter_source(param.name) # type: ignore + is ParameterSource.COMMANDLINE + ) + ): + continue + + results.extend( + CompletionItem(name, help=param.help) + for name in [*param.opts, *param.secondary_opts] + if name.startswith(incomplete) + ) + + while ctx.parent is not None: + ctx = ctx.parent + + if isinstance(ctx.command, Group) and ctx.command.chain: + results.extend( + CompletionItem(name, help=command.get_short_help_str()) + for name, command in _complete_visible_commands(ctx, incomplete) + if name not in ctx._protected_args + ) + + return results + + @t.overload + def main( + self, + args: cabc.Sequence[str] | None = None, + prog_name: str | None = None, + complete_var: str | None = None, + standalone_mode: t.Literal[True] = True, + **extra: t.Any, + ) -> t.NoReturn: ... + + @t.overload + def main( + self, + args: cabc.Sequence[str] | None = None, + prog_name: str | None = None, + complete_var: str | None = None, + standalone_mode: bool = ..., + **extra: t.Any, + ) -> t.Any: ... + + def main( + self, + args: cabc.Sequence[str] | None = None, + prog_name: str | None = None, + complete_var: str | None = None, + standalone_mode: bool = True, + windows_expand_args: bool = True, + **extra: t.Any, + ) -> t.Any: + """This is the way to invoke a script with all the bells and + whistles as a command line application. This will always terminate + the application after a call. If this is not wanted, ``SystemExit`` + needs to be caught. + + This method is also available by directly calling the instance of + a :class:`Command`. + + :param args: the arguments that should be used for parsing. If not + provided, ``sys.argv[1:]`` is used. + :param prog_name: the program name that should be used. By default + the program name is constructed by taking the file + name from ``sys.argv[0]``. + :param complete_var: the environment variable that controls the + bash completion support. The default is + ``"__COMPLETE"`` with prog_name in + uppercase. + :param standalone_mode: the default behavior is to invoke the script + in standalone mode. Click will then + handle exceptions and convert them into + error messages and the function will never + return but shut down the interpreter. If + this is set to `False` they will be + propagated to the caller and the return + value of this function is the return value + of :meth:`invoke`. + :param windows_expand_args: Expand glob patterns, user dir, and + env vars in command line args on Windows. + :param extra: extra keyword arguments are forwarded to the context + constructor. See :class:`Context` for more information. + + .. versionchanged:: 8.0.1 + Added the ``windows_expand_args`` parameter to allow + disabling command line arg expansion on Windows. + + .. versionchanged:: 8.0 + When taking arguments from ``sys.argv`` on Windows, glob + patterns, user dir, and env vars are expanded. + + .. versionchanged:: 3.0 + Added the ``standalone_mode`` parameter. + """ + if args is None: + args = sys.argv[1:] + + if os.name == "nt" and windows_expand_args: + args = _expand_args(args) + else: + args = list(args) + + if prog_name is None: + prog_name = _detect_program_name() + + # Process shell completion requests and exit early. + self._main_shell_completion(extra, prog_name, complete_var) + + try: + try: + with self.make_context(prog_name, args, **extra) as ctx: + rv = self.invoke(ctx) + if not standalone_mode: + return rv + # it's not safe to `ctx.exit(rv)` here! + # note that `rv` may actually contain data like "1" which + # has obvious effects + # more subtle case: `rv=[None, None]` can come out of + # chained commands which all returned `None` -- so it's not + # even always obvious that `rv` indicates success/failure + # by its truthiness/falsiness + ctx.exit() + except (EOFError, KeyboardInterrupt) as e: + echo(file=sys.stderr) + raise Abort() from e + except ClickException as e: + if not standalone_mode: + raise + e.show() + sys.exit(e.exit_code) + except OSError as e: + if e.errno == errno.EPIPE: + sys.stdout = t.cast(t.TextIO, PacifyFlushWrapper(sys.stdout)) + sys.stderr = t.cast(t.TextIO, PacifyFlushWrapper(sys.stderr)) + sys.exit(1) + else: + raise + except Exit as e: + if standalone_mode: + sys.exit(e.exit_code) + else: + # in non-standalone mode, return the exit code + # note that this is only reached if `self.invoke` above raises + # an Exit explicitly -- thus bypassing the check there which + # would return its result + # the results of non-standalone execution may therefore be + # somewhat ambiguous: if there are codepaths which lead to + # `ctx.exit(1)` and to `return 1`, the caller won't be able to + # tell the difference between the two + return e.exit_code + except Abort: + if not standalone_mode: + raise + echo(_("Aborted!"), file=sys.stderr) + sys.exit(1) + + def _main_shell_completion( + self, + ctx_args: cabc.MutableMapping[str, t.Any], + prog_name: str, + complete_var: str | None = None, + ) -> None: + """Check if the shell is asking for tab completion, process + that, then exit early. Called from :meth:`main` before the + program is invoked. + + :param prog_name: Name of the executable in the shell. + :param complete_var: Name of the environment variable that holds + the completion instruction. Defaults to + ``_{PROG_NAME}_COMPLETE``. + + .. versionchanged:: 8.2.0 + Dots (``.``) in ``prog_name`` are replaced with underscores (``_``). + """ + if complete_var is None: + complete_name = prog_name.replace("-", "_").replace(".", "_") + complete_var = f"_{complete_name}_COMPLETE".upper() + + instruction = os.environ.get(complete_var) + + if not instruction: + return + + from .shell_completion import shell_complete + + rv = shell_complete(self, ctx_args, prog_name, complete_var, instruction) + sys.exit(rv) + + def __call__(self, *args: t.Any, **kwargs: t.Any) -> t.Any: + """Alias for :meth:`main`.""" + return self.main(*args, **kwargs) + + +class _FakeSubclassCheck(type): + def __subclasscheck__(cls, subclass: type) -> bool: + return issubclass(subclass, cls.__bases__[0]) + + def __instancecheck__(cls, instance: t.Any) -> bool: + return isinstance(instance, cls.__bases__[0]) + + +class _BaseCommand(Command, metaclass=_FakeSubclassCheck): + """ + .. deprecated:: 8.2 + Will be removed in Click 9.0. Use ``Command`` instead. + """ + + +class Group(Command): + """A group is a command that nests other commands (or more groups). + + :param name: The name of the group command. + :param commands: Map names to :class:`Command` objects. Can be a list, which + will use :attr:`Command.name` as the keys. + :param invoke_without_command: Invoke the group's callback even if a + subcommand is not given. + :param no_args_is_help: If no arguments are given, show the group's help and + exit. Defaults to the opposite of ``invoke_without_command``. + :param subcommand_metavar: How to represent the subcommand argument in help. + The default will represent whether ``chain`` is set or not. + :param chain: Allow passing more than one subcommand argument. After parsing + a command's arguments, if any arguments remain another command will be + matched, and so on. + :param result_callback: A function to call after the group's and + subcommand's callbacks. The value returned by the subcommand is passed. + If ``chain`` is enabled, the value will be a list of values returned by + all the commands. If ``invoke_without_command`` is enabled, the value + will be the value returned by the group's callback, or an empty list if + ``chain`` is enabled. + :param kwargs: Other arguments passed to :class:`Command`. + + .. versionchanged:: 8.0 + The ``commands`` argument can be a list of command objects. + + .. versionchanged:: 8.2 + Merged with and replaces the ``MultiCommand`` base class. + """ + + allow_extra_args = True + allow_interspersed_args = False + + #: If set, this is used by the group's :meth:`command` decorator + #: as the default :class:`Command` class. This is useful to make all + #: subcommands use a custom command class. + #: + #: .. versionadded:: 8.0 + command_class: type[Command] | None = None + + #: If set, this is used by the group's :meth:`group` decorator + #: as the default :class:`Group` class. This is useful to make all + #: subgroups use a custom group class. + #: + #: If set to the special value :class:`type` (literally + #: ``group_class = type``), this group's class will be used as the + #: default class. This makes a custom group class continue to make + #: custom groups. + #: + #: .. versionadded:: 8.0 + group_class: type[Group] | type[type] | None = None + # Literal[type] isn't valid, so use Type[type] + + def __init__( + self, + name: str | None = None, + commands: cabc.MutableMapping[str, Command] + | cabc.Sequence[Command] + | None = None, + invoke_without_command: bool = False, + no_args_is_help: bool | None = None, + subcommand_metavar: str | None = None, + chain: bool = False, + result_callback: t.Callable[..., t.Any] | None = None, + **kwargs: t.Any, + ) -> None: + super().__init__(name, **kwargs) + + if commands is None: + commands = {} + elif isinstance(commands, abc.Sequence): + commands = {c.name: c for c in commands if c.name is not None} + + #: The registered subcommands by their exported names. + self.commands: cabc.MutableMapping[str, Command] = commands + + if no_args_is_help is None: + no_args_is_help = not invoke_without_command + + self.no_args_is_help = no_args_is_help + self.invoke_without_command = invoke_without_command + + if subcommand_metavar is None: + if chain: + subcommand_metavar = "COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]..." + else: + subcommand_metavar = "COMMAND [ARGS]..." + + self.subcommand_metavar = subcommand_metavar + self.chain = chain + # The result callback that is stored. This can be set or + # overridden with the :func:`result_callback` decorator. + self._result_callback = result_callback + + if self.chain: + for param in self.params: + if isinstance(param, Argument) and not param.required: + raise RuntimeError( + "A group in chain mode cannot have optional arguments." + ) + + def to_info_dict(self, ctx: Context) -> dict[str, t.Any]: + info_dict = super().to_info_dict(ctx) + commands = {} + + for name in self.list_commands(ctx): + command = self.get_command(ctx, name) + + if command is None: + continue + + sub_ctx = ctx._make_sub_context(command) + + with sub_ctx.scope(cleanup=False): + commands[name] = command.to_info_dict(sub_ctx) + + info_dict.update(commands=commands, chain=self.chain) + return info_dict + + def add_command(self, cmd: Command, name: str | None = None) -> None: + """Registers another :class:`Command` with this group. If the name + is not provided, the name of the command is used. + """ + name = name or cmd.name + if name is None: + raise TypeError("Command has no name.") + _check_nested_chain(self, name, cmd, register=True) + self.commands[name] = cmd + + @t.overload + def command(self, __func: t.Callable[..., t.Any]) -> Command: ... + + @t.overload + def command( + self, *args: t.Any, **kwargs: t.Any + ) -> t.Callable[[t.Callable[..., t.Any]], Command]: ... + + def command( + self, *args: t.Any, **kwargs: t.Any + ) -> t.Callable[[t.Callable[..., t.Any]], Command] | Command: + """A shortcut decorator for declaring and attaching a command to + the group. This takes the same arguments as :func:`command` and + immediately registers the created command with this group by + calling :meth:`add_command`. + + To customize the command class used, set the + :attr:`command_class` attribute. + + .. versionchanged:: 8.1 + This decorator can be applied without parentheses. + + .. versionchanged:: 8.0 + Added the :attr:`command_class` attribute. + """ + from .decorators import command + + func: t.Callable[..., t.Any] | None = None + + if args and callable(args[0]): + assert len(args) == 1 and not kwargs, ( + "Use 'command(**kwargs)(callable)' to provide arguments." + ) + (func,) = args + args = () + + if self.command_class and kwargs.get("cls") is None: + kwargs["cls"] = self.command_class + + def decorator(f: t.Callable[..., t.Any]) -> Command: + cmd: Command = command(*args, **kwargs)(f) + self.add_command(cmd) + return cmd + + if func is not None: + return decorator(func) + + return decorator + + @t.overload + def group(self, __func: t.Callable[..., t.Any]) -> Group: ... + + @t.overload + def group( + self, *args: t.Any, **kwargs: t.Any + ) -> t.Callable[[t.Callable[..., t.Any]], Group]: ... + + def group( + self, *args: t.Any, **kwargs: t.Any + ) -> t.Callable[[t.Callable[..., t.Any]], Group] | Group: + """A shortcut decorator for declaring and attaching a group to + the group. This takes the same arguments as :func:`group` and + immediately registers the created group with this group by + calling :meth:`add_command`. + + To customize the group class used, set the :attr:`group_class` + attribute. + + .. versionchanged:: 8.1 + This decorator can be applied without parentheses. + + .. versionchanged:: 8.0 + Added the :attr:`group_class` attribute. + """ + from .decorators import group + + func: t.Callable[..., t.Any] | None = None + + if args and callable(args[0]): + assert len(args) == 1 and not kwargs, ( + "Use 'group(**kwargs)(callable)' to provide arguments." + ) + (func,) = args + args = () + + if self.group_class is not None and kwargs.get("cls") is None: + if self.group_class is type: + kwargs["cls"] = type(self) + else: + kwargs["cls"] = self.group_class + + def decorator(f: t.Callable[..., t.Any]) -> Group: + cmd: Group = group(*args, **kwargs)(f) + self.add_command(cmd) + return cmd + + if func is not None: + return decorator(func) + + return decorator + + def result_callback(self, replace: bool = False) -> t.Callable[[F], F]: + """Adds a result callback to the command. By default if a + result callback is already registered this will chain them but + this can be disabled with the `replace` parameter. The result + callback is invoked with the return value of the subcommand + (or the list of return values from all subcommands if chaining + is enabled) as well as the parameters as they would be passed + to the main callback. + + Example:: + + @click.group() + @click.option('-i', '--input', default=23) + def cli(input): + return 42 + + @cli.result_callback() + def process_result(result, input): + return result + input + + :param replace: if set to `True` an already existing result + callback will be removed. + + .. versionchanged:: 8.0 + Renamed from ``resultcallback``. + + .. versionadded:: 3.0 + """ + + def decorator(f: F) -> F: + old_callback = self._result_callback + + if old_callback is None or replace: + self._result_callback = f + return f + + def function(value: t.Any, /, *args: t.Any, **kwargs: t.Any) -> t.Any: + inner = old_callback(value, *args, **kwargs) + return f(inner, *args, **kwargs) + + self._result_callback = rv = update_wrapper(t.cast(F, function), f) + return rv # type: ignore[return-value] + + return decorator + + def get_command(self, ctx: Context, cmd_name: str) -> Command | None: + """Given a context and a command name, this returns a :class:`Command` + object if it exists or returns ``None``. + """ + return self.commands.get(cmd_name) + + def list_commands(self, ctx: Context) -> list[str]: + """Returns a list of subcommand names in the order they should appear.""" + return sorted(self.commands) + + def collect_usage_pieces(self, ctx: Context) -> list[str]: + rv = super().collect_usage_pieces(ctx) + rv.append(self.subcommand_metavar) + return rv + + def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: + super().format_options(ctx, formatter) + self.format_commands(ctx, formatter) + + def format_commands(self, ctx: Context, formatter: HelpFormatter) -> None: + """Extra format methods for multi methods that adds all the commands + after the options. + """ + commands = [] + for subcommand in self.list_commands(ctx): + cmd = self.get_command(ctx, subcommand) + # What is this, the tool lied about a command. Ignore it + if cmd is None: + continue + if cmd.hidden: + continue + + commands.append((subcommand, cmd)) + + # allow for 3 times the default spacing + if len(commands): + limit = formatter.width - 6 - max(len(cmd[0]) for cmd in commands) + + rows = [] + for subcommand, cmd in commands: + help = cmd.get_short_help_str(limit) + rows.append((subcommand, help)) + + if rows: + with formatter.section(_("Commands")): + formatter.write_dl(rows) + + def parse_args(self, ctx: Context, args: list[str]) -> list[str]: + if not args and self.no_args_is_help and not ctx.resilient_parsing: + raise NoArgsIsHelpError(ctx) + + rest = super().parse_args(ctx, args) + + if self.chain: + ctx._protected_args = rest + ctx.args = [] + elif rest: + ctx._protected_args, ctx.args = rest[:1], rest[1:] + + return ctx.args + + def invoke(self, ctx: Context) -> t.Any: + def _process_result(value: t.Any) -> t.Any: + if self._result_callback is not None: + value = ctx.invoke(self._result_callback, value, **ctx.params) + return value + + if not ctx._protected_args: + if self.invoke_without_command: + # No subcommand was invoked, so the result callback is + # invoked with the group return value for regular + # groups, or an empty list for chained groups. + with ctx: + rv = super().invoke(ctx) + return _process_result([] if self.chain else rv) + ctx.fail(_("Missing command.")) + + # Fetch args back out + args = [*ctx._protected_args, *ctx.args] + ctx.args = [] + ctx._protected_args = [] + + # If we're not in chain mode, we only allow the invocation of a + # single command but we also inform the current context about the + # name of the command to invoke. + if not self.chain: + # Make sure the context is entered so we do not clean up + # resources until the result processor has worked. + with ctx: + cmd_name, cmd, args = self.resolve_command(ctx, args) + assert cmd is not None + ctx.invoked_subcommand = cmd_name + super().invoke(ctx) + sub_ctx = cmd.make_context(cmd_name, args, parent=ctx) + with sub_ctx: + return _process_result(sub_ctx.command.invoke(sub_ctx)) + + # In chain mode we create the contexts step by step, but after the + # base command has been invoked. Because at that point we do not + # know the subcommands yet, the invoked subcommand attribute is + # set to ``*`` to inform the command that subcommands are executed + # but nothing else. + with ctx: + ctx.invoked_subcommand = "*" if args else None + super().invoke(ctx) + + # Otherwise we make every single context and invoke them in a + # chain. In that case the return value to the result processor + # is the list of all invoked subcommand's results. + contexts = [] + while args: + cmd_name, cmd, args = self.resolve_command(ctx, args) + assert cmd is not None + sub_ctx = cmd.make_context( + cmd_name, + args, + parent=ctx, + allow_extra_args=True, + allow_interspersed_args=False, + ) + contexts.append(sub_ctx) + args, sub_ctx.args = sub_ctx.args, [] + + rv = [] + for sub_ctx in contexts: + with sub_ctx: + rv.append(sub_ctx.command.invoke(sub_ctx)) + return _process_result(rv) + + def resolve_command( + self, ctx: Context, args: list[str] + ) -> tuple[str | None, Command | None, list[str]]: + cmd_name = make_str(args[0]) + original_cmd_name = cmd_name + + # Get the command + cmd = self.get_command(ctx, cmd_name) + + # If we can't find the command but there is a normalization + # function available, we try with that one. + if cmd is None and ctx.token_normalize_func is not None: + cmd_name = ctx.token_normalize_func(cmd_name) + cmd = self.get_command(ctx, cmd_name) + + # If we don't find the command we want to show an error message + # to the user that it was not provided. However, there is + # something else we should do: if the first argument looks like + # an option we want to kick off parsing again for arguments to + # resolve things like --help which now should go to the main + # place. + if cmd is None and not ctx.resilient_parsing: + if _split_opt(cmd_name)[0]: + self.parse_args(ctx, args) + ctx.fail(_("No such command {name!r}.").format(name=original_cmd_name)) + return cmd_name if cmd else None, cmd, args[1:] + + def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: + """Return a list of completions for the incomplete value. Looks + at the names of options, subcommands, and chained + multi-commands. + + :param ctx: Invocation context for this command. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + from click.shell_completion import CompletionItem + + results = [ + CompletionItem(name, help=command.get_short_help_str()) + for name, command in _complete_visible_commands(ctx, incomplete) + ] + results.extend(super().shell_complete(ctx, incomplete)) + return results + + +class _MultiCommand(Group, metaclass=_FakeSubclassCheck): + """ + .. deprecated:: 8.2 + Will be removed in Click 9.0. Use ``Group`` instead. + """ + + +class CommandCollection(Group): + """A :class:`Group` that looks up subcommands on other groups. If a command + is not found on this group, each registered source is checked in order. + Parameters on a source are not added to this group, and a source's callback + is not invoked when invoking its commands. In other words, this "flattens" + commands in many groups into this one group. + + :param name: The name of the group command. + :param sources: A list of :class:`Group` objects to look up commands from. + :param kwargs: Other arguments passed to :class:`Group`. + + .. versionchanged:: 8.2 + This is a subclass of ``Group``. Commands are looked up first on this + group, then each of its sources. + """ + + def __init__( + self, + name: str | None = None, + sources: list[Group] | None = None, + **kwargs: t.Any, + ) -> None: + super().__init__(name, **kwargs) + #: The list of registered groups. + self.sources: list[Group] = sources or [] + + def add_source(self, group: Group) -> None: + """Add a group as a source of commands.""" + self.sources.append(group) + + def get_command(self, ctx: Context, cmd_name: str) -> Command | None: + rv = super().get_command(ctx, cmd_name) + + if rv is not None: + return rv + + for source in self.sources: + rv = source.get_command(ctx, cmd_name) + + if rv is not None: + if self.chain: + _check_nested_chain(self, cmd_name, rv) + + return rv + + return None + + def list_commands(self, ctx: Context) -> list[str]: + rv: set[str] = set(super().list_commands(ctx)) + + for source in self.sources: + rv.update(source.list_commands(ctx)) + + return sorted(rv) + + +def _check_iter(value: t.Any) -> cabc.Iterator[t.Any]: + """Check if the value is iterable but not a string. Raises a type + error, or return an iterator over the value. + """ + if isinstance(value, str): + raise TypeError + + return iter(value) + + +class Parameter: + r"""A parameter to a command comes in two versions: they are either + :class:`Option`\s or :class:`Argument`\s. Other subclasses are currently + not supported by design as some of the internals for parsing are + intentionally not finalized. + + Some settings are supported by both options and arguments. + + :param param_decls: the parameter declarations for this option or + argument. This is a list of flags or argument + names. + :param type: the type that should be used. Either a :class:`ParamType` + or a Python type. The latter is converted into the former + automatically if supported. + :param required: controls if this is optional or not. + :param default: the default value if omitted. This can also be a callable, + in which case it's invoked when the default is needed + without any arguments. + :param callback: A function to further process or validate the value + after type conversion. It is called as ``f(ctx, param, value)`` + and must return the value. It is called for all sources, + including prompts. + :param nargs: the number of arguments to match. If not ``1`` the return + value is a tuple instead of single value. The default for + nargs is ``1`` (except if the type is a tuple, then it's + the arity of the tuple). If ``nargs=-1``, all remaining + parameters are collected. + :param metavar: how the value is represented in the help page. + :param expose_value: if this is `True` then the value is passed onwards + to the command callback and stored on the context, + otherwise it's skipped. + :param is_eager: eager values are processed before non eager ones. This + should not be set for arguments or it will inverse the + order of processing. + :param envvar: environment variable(s) that are used to provide a default value for + this parameter. This can be a string or a sequence of strings. If a sequence is + given, only the first non-empty environment variable is used for the parameter. + :param shell_complete: A function that returns custom shell + completions. Used instead of the param's type completion if + given. Takes ``ctx, param, incomplete`` and must return a list + of :class:`~click.shell_completion.CompletionItem` or a list of + strings. + :param deprecated: If ``True`` or non-empty string, issues a message + indicating that the argument is deprecated and highlights + its deprecation in --help. The message can be customized + by using a string as the value. A deprecated parameter + cannot be required, a ValueError will be raised otherwise. + + .. versionchanged:: 8.2.0 + Introduction of ``deprecated``. + + .. versionchanged:: 8.2 + Adding duplicate parameter names to a :class:`~click.core.Command` will + result in a ``UserWarning`` being shown. + + .. versionchanged:: 8.2 + Adding duplicate parameter names to a :class:`~click.core.Command` will + result in a ``UserWarning`` being shown. + + .. versionchanged:: 8.0 + ``process_value`` validates required parameters and bounded + ``nargs``, and invokes the parameter callback before returning + the value. This allows the callback to validate prompts. + ``full_process_value`` is removed. + + .. versionchanged:: 8.0 + ``autocompletion`` is renamed to ``shell_complete`` and has new + semantics described above. The old name is deprecated and will + be removed in 8.1, until then it will be wrapped to match the + new requirements. + + .. versionchanged:: 8.0 + For ``multiple=True, nargs>1``, the default must be a list of + tuples. + + .. versionchanged:: 8.0 + Setting a default is no longer required for ``nargs>1``, it will + default to ``None``. ``multiple=True`` or ``nargs=-1`` will + default to ``()``. + + .. versionchanged:: 7.1 + Empty environment variables are ignored rather than taking the + empty string value. This makes it possible for scripts to clear + variables if they can't unset them. + + .. versionchanged:: 2.0 + Changed signature for parameter callback to also be passed the + parameter. The old callback format will still work, but it will + raise a warning to give you a chance to migrate the code easier. + """ + + param_type_name = "parameter" + + def __init__( + self, + param_decls: cabc.Sequence[str] | None = None, + type: types.ParamType | t.Any | None = None, + required: bool = False, + # XXX The default historically embed two concepts: + # - the declaration of a Parameter object carrying the default (handy to + # arbitrage the default value of coupled Parameters sharing the same + # self.name, like flag options), + # - and the actual value of the default. + # It is confusing and is the source of many issues discussed in: + # https://github.com/pallets/click/pull/3030 + # In the future, we might think of splitting it in two, not unlike + # Option.is_flag and Option.flag_value: we could have something like + # Parameter.is_default and Parameter.default_value. + default: t.Any | t.Callable[[], t.Any] | None = UNSET, + callback: t.Callable[[Context, Parameter, t.Any], t.Any] | None = None, + nargs: int | None = None, + multiple: bool = False, + metavar: str | None = None, + expose_value: bool = True, + is_eager: bool = False, + envvar: str | cabc.Sequence[str] | None = None, + shell_complete: t.Callable[ + [Context, Parameter, str], list[CompletionItem] | list[str] + ] + | None = None, + deprecated: bool | str = False, + ) -> None: + self.name: str | None + self.opts: list[str] + self.secondary_opts: list[str] + self.name, self.opts, self.secondary_opts = self._parse_decls( + param_decls or (), expose_value + ) + self.type: types.ParamType = types.convert_type(type, default) + + # Default nargs to what the type tells us if we have that + # information available. + if nargs is None: + if self.type.is_composite: + nargs = self.type.arity + else: + nargs = 1 + + self.required = required + self.callback = callback + self.nargs = nargs + self.multiple = multiple + self.expose_value = expose_value + self.default = default + self.is_eager = is_eager + self.metavar = metavar + self.envvar = envvar + self._custom_shell_complete = shell_complete + self.deprecated = deprecated + + if __debug__: + if self.type.is_composite and nargs != self.type.arity: + raise ValueError( + f"'nargs' must be {self.type.arity} (or None) for" + f" type {self.type!r}, but it was {nargs}." + ) + + if required and deprecated: + raise ValueError( + f"The {self.param_type_name} '{self.human_readable_name}' " + "is deprecated and still required. A deprecated " + f"{self.param_type_name} cannot be required." + ) + + def to_info_dict(self) -> dict[str, t.Any]: + """Gather information that could be useful for a tool generating + user-facing documentation. + + Use :meth:`click.Context.to_info_dict` to traverse the entire + CLI structure. + + .. versionchanged:: 8.3.0 + Returns ``None`` for the :attr:`default` if it was not set. + + .. versionadded:: 8.0 + """ + return { + "name": self.name, + "param_type_name": self.param_type_name, + "opts": self.opts, + "secondary_opts": self.secondary_opts, + "type": self.type.to_info_dict(), + "required": self.required, + "nargs": self.nargs, + "multiple": self.multiple, + # We explicitly hide the :attr:`UNSET` value to the user, as we choose to + # make it an implementation detail. And because ``to_info_dict`` has been + # designed for documentation purposes, we return ``None`` instead. + "default": self.default if self.default is not UNSET else None, + "envvar": self.envvar, + } + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.name}>" + + def _parse_decls( + self, decls: cabc.Sequence[str], expose_value: bool + ) -> tuple[str | None, list[str], list[str]]: + raise NotImplementedError() + + @property + def human_readable_name(self) -> str: + """Returns the human readable name of this parameter. This is the + same as the name for options, but the metavar for arguments. + """ + return self.name # type: ignore + + def make_metavar(self, ctx: Context) -> str: + if self.metavar is not None: + return self.metavar + + metavar = self.type.get_metavar(param=self, ctx=ctx) + + if metavar is None: + metavar = self.type.name.upper() + + if self.nargs != 1: + metavar += "..." + + return metavar + + @t.overload + def get_default( + self, ctx: Context, call: t.Literal[True] = True + ) -> t.Any | None: ... + + @t.overload + def get_default( + self, ctx: Context, call: bool = ... + ) -> t.Any | t.Callable[[], t.Any] | None: ... + + def get_default( + self, ctx: Context, call: bool = True + ) -> t.Any | t.Callable[[], t.Any] | None: + """Get the default for the parameter. Tries + :meth:`Context.lookup_default` first, then the local default. + + :param ctx: Current context. + :param call: If the default is a callable, call it. Disable to + return the callable instead. + + .. versionchanged:: 8.0.2 + Type casting is no longer performed when getting a default. + + .. versionchanged:: 8.0.1 + Type casting can fail in resilient parsing mode. Invalid + defaults will not prevent showing help text. + + .. versionchanged:: 8.0 + Looks at ``ctx.default_map`` first. + + .. versionchanged:: 8.0 + Added the ``call`` parameter. + """ + value = ctx.lookup_default(self.name, call=False) # type: ignore + + if value is UNSET: + value = self.default + + if call and callable(value): + value = value() + + return value + + def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: + raise NotImplementedError() + + def consume_value( + self, ctx: Context, opts: cabc.Mapping[str, t.Any] + ) -> tuple[t.Any, ParameterSource]: + """Returns the parameter value produced by the parser. + + If the parser did not produce a value from user input, the value is either + sourced from the environment variable, the default map, or the parameter's + default value. In that order of precedence. + + If no value is found, an internal sentinel value is returned. + + :meta private: + """ + # Collect from the parse the value passed by the user to the CLI. + value = opts.get(self.name, UNSET) # type: ignore + # If the value is set, it means it was sourced from the command line by the + # parser, otherwise it left unset by default. + source = ( + ParameterSource.COMMANDLINE + if value is not UNSET + else ParameterSource.DEFAULT + ) + + if value is UNSET: + envvar_value = self.value_from_envvar(ctx) + if envvar_value is not None: + value = envvar_value + source = ParameterSource.ENVIRONMENT + + if value is UNSET: + default_map_value = ctx.lookup_default(self.name) # type: ignore + if default_map_value is not UNSET: + value = default_map_value + source = ParameterSource.DEFAULT_MAP + + if value is UNSET: + default_value = self.get_default(ctx) + if default_value is not UNSET: + value = default_value + source = ParameterSource.DEFAULT + + return value, source + + def type_cast_value(self, ctx: Context, value: t.Any) -> t.Any: + """Convert and validate a value against the parameter's + :attr:`type`, :attr:`multiple`, and :attr:`nargs`. + """ + if value in (None, UNSET): + if self.multiple or self.nargs == -1: + return () + else: + return value + + def check_iter(value: t.Any) -> cabc.Iterator[t.Any]: + try: + return _check_iter(value) + except TypeError: + # This should only happen when passing in args manually, + # the parser should construct an iterable when parsing + # the command line. + raise BadParameter( + _("Value must be an iterable."), ctx=ctx, param=self + ) from None + + # Define the conversion function based on nargs and type. + + if self.nargs == 1 or self.type.is_composite: + + def convert(value: t.Any) -> t.Any: + return self.type(value, param=self, ctx=ctx) + + elif self.nargs == -1: + + def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...] + return tuple(self.type(x, self, ctx) for x in check_iter(value)) + + else: # nargs > 1 + + def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...] + value = tuple(check_iter(value)) + + if len(value) != self.nargs: + raise BadParameter( + ngettext( + "Takes {nargs} values but 1 was given.", + "Takes {nargs} values but {len} were given.", + len(value), + ).format(nargs=self.nargs, len=len(value)), + ctx=ctx, + param=self, + ) + + return tuple(self.type(x, self, ctx) for x in value) + + if self.multiple: + return tuple(convert(x) for x in check_iter(value)) + + return convert(value) + + def value_is_missing(self, value: t.Any) -> bool: + """A value is considered missing if: + + - it is :attr:`UNSET`, + - or if it is an empty sequence while the parameter is suppose to have + non-single value (i.e. :attr:`nargs` is not ``1`` or :attr:`multiple` is + set). + + :meta private: + """ + if value is UNSET: + return True + + if (self.nargs != 1 or self.multiple) and value == (): + return True + + return False + + def process_value(self, ctx: Context, value: t.Any) -> t.Any: + """Process the value of this parameter: + + 1. Type cast the value using :meth:`type_cast_value`. + 2. Check if the value is missing (see: :meth:`value_is_missing`), and raise + :exc:`MissingParameter` if it is required. + 3. If a :attr:`callback` is set, call it to have the value replaced by the + result of the callback. If the value was not set, the callback receive + ``None``. This keep the legacy behavior as it was before the introduction of + the :attr:`UNSET` sentinel. + + :meta private: + """ + value = self.type_cast_value(ctx, value) + + if self.required and self.value_is_missing(value): + raise MissingParameter(ctx=ctx, param=self) + + if self.callback is not None: + # Legacy case: UNSET is not exposed directly to the callback, but converted + # to None. + if value is UNSET: + value = None + value = self.callback(ctx, self, value) + + return value + + def resolve_envvar_value(self, ctx: Context) -> str | None: + """Returns the value found in the environment variable(s) attached to this + parameter. + + Environment variables values are `always returned as strings + `_. + + This method returns ``None`` if: + + - the :attr:`envvar` property is not set on the :class:`Parameter`, + - the environment variable is not found in the environment, + - the variable is found in the environment but its value is empty (i.e. the + environment variable is present but has an empty string). + + If :attr:`envvar` is setup with multiple environment variables, + then only the first non-empty value is returned. + + .. caution:: + + The raw value extracted from the environment is not normalized and is + returned as-is. Any normalization or reconciliation is performed later by + the :class:`Parameter`'s :attr:`type`. + + :meta private: + """ + if not self.envvar: + return None + + if isinstance(self.envvar, str): + rv = os.environ.get(self.envvar) + + if rv: + return rv + else: + for envvar in self.envvar: + rv = os.environ.get(envvar) + + # Return the first non-empty value of the list of environment variables. + if rv: + return rv + # Else, absence of value is interpreted as an environment variable that + # is not set, so proceed to the next one. + + return None + + def value_from_envvar(self, ctx: Context) -> str | cabc.Sequence[str] | None: + """Process the raw environment variable string for this parameter. + + Returns the string as-is or splits it into a sequence of strings if the + parameter is expecting multiple values (i.e. its :attr:`nargs` property is set + to a value other than ``1``). + + :meta private: + """ + rv = self.resolve_envvar_value(ctx) + + if rv is not None and self.nargs != 1: + return self.type.split_envvar_value(rv) + + return rv + + def handle_parse_result( + self, ctx: Context, opts: cabc.Mapping[str, t.Any], args: list[str] + ) -> tuple[t.Any, list[str]]: + """Process the value produced by the parser from user input. + + Always process the value through the Parameter's :attr:`type`, wherever it + comes from. + + If the parameter is deprecated, this method warn the user about it. But only if + the value has been explicitly set by the user (and as such, is not coming from + a default). + + :meta private: + """ + with augment_usage_errors(ctx, param=self): + value, source = self.consume_value(ctx, opts) + + ctx.set_parameter_source(self.name, source) # type: ignore + + # Display a deprecation warning if necessary. + if ( + self.deprecated + and value is not UNSET + and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP) + ): + extra_message = ( + f" {self.deprecated}" if isinstance(self.deprecated, str) else "" + ) + message = _( + "DeprecationWarning: The {param_type} {name!r} is deprecated." + "{extra_message}" + ).format( + param_type=self.param_type_name, + name=self.human_readable_name, + extra_message=extra_message, + ) + echo(style(message, fg="red"), err=True) + + # Process the value through the parameter's type. + try: + value = self.process_value(ctx, value) + except Exception: + if not ctx.resilient_parsing: + raise + # In resilient parsing mode, we do not want to fail the command if the + # value is incompatible with the parameter type, so we reset the value + # to UNSET, which will be interpreted as a missing value. + value = UNSET + + # Add parameter's value to the context. + if ( + self.expose_value + # We skip adding the value if it was previously set by another parameter + # targeting the same variable name. This prevents parameters competing for + # the same name to override each other. + and self.name not in ctx.params + ): + # Click is logically enforcing that the name is None if the parameter is + # not to be exposed. We still assert it here to please the type checker. + assert self.name is not None, ( + f"{self!r} parameter's name should not be None when exposing value." + ) + # Normalize UNSET values to None, as we're about to pass them to the + # command function and move them to the pure-Python realm of user-written + # code. + ctx.params[self.name] = value if value is not UNSET else None + + return value, args + + def get_help_record(self, ctx: Context) -> tuple[str, str] | None: + pass + + def get_usage_pieces(self, ctx: Context) -> list[str]: + return [] + + def get_error_hint(self, ctx: Context) -> str: + """Get a stringified version of the param for use in error messages to + indicate which param caused the error. + """ + hint_list = self.opts or [self.human_readable_name] + return " / ".join(f"'{x}'" for x in hint_list) + + def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: + """Return a list of completions for the incomplete value. If a + ``shell_complete`` function was given during init, it is used. + Otherwise, the :attr:`type` + :meth:`~click.types.ParamType.shell_complete` function is used. + + :param ctx: Invocation context for this command. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + if self._custom_shell_complete is not None: + results = self._custom_shell_complete(ctx, self, incomplete) + + if results and isinstance(results[0], str): + from click.shell_completion import CompletionItem + + results = [CompletionItem(c) for c in results] + + return t.cast("list[CompletionItem]", results) + + return self.type.shell_complete(ctx, self, incomplete) + + +class Option(Parameter): + """Options are usually optional values on the command line and + have some extra features that arguments don't have. + + All other parameters are passed onwards to the parameter constructor. + + :param show_default: Show the default value for this option in its + help text. Values are not shown by default, unless + :attr:`Context.show_default` is ``True``. If this value is a + string, it shows that string in parentheses instead of the + actual value. This is particularly useful for dynamic options. + For single option boolean flags, the default remains hidden if + its value is ``False``. + :param show_envvar: Controls if an environment variable should be + shown on the help page and error messages. + Normally, environment variables are not shown. + :param prompt: If set to ``True`` or a non empty string then the + user will be prompted for input. If set to ``True`` the prompt + will be the option name capitalized. A deprecated option cannot be + prompted. + :param confirmation_prompt: Prompt a second time to confirm the + value if it was prompted for. Can be set to a string instead of + ``True`` to customize the message. + :param prompt_required: If set to ``False``, the user will be + prompted for input only when the option was specified as a flag + without a value. + :param hide_input: If this is ``True`` then the input on the prompt + will be hidden from the user. This is useful for password input. + :param is_flag: forces this option to act as a flag. The default is + auto detection. + :param flag_value: which value should be used for this flag if it's + enabled. This is set to a boolean automatically if + the option string contains a slash to mark two options. + :param multiple: if this is set to `True` then the argument is accepted + multiple times and recorded. This is similar to ``nargs`` + in how it works but supports arbitrary number of + arguments. + :param count: this flag makes an option increment an integer. + :param allow_from_autoenv: if this is enabled then the value of this + parameter will be pulled from an environment + variable in case a prefix is defined on the + context. + :param help: the help string. + :param hidden: hide this option from help outputs. + :param attrs: Other command arguments described in :class:`Parameter`. + + .. versionchanged:: 8.2 + ``envvar`` used with ``flag_value`` will always use the ``flag_value``, + previously it would use the value of the environment variable. + + .. versionchanged:: 8.1 + Help text indentation is cleaned here instead of only in the + ``@option`` decorator. + + .. versionchanged:: 8.1 + The ``show_default`` parameter overrides + ``Context.show_default``. + + .. versionchanged:: 8.1 + The default of a single option boolean flag is not shown if the + default value is ``False``. + + .. versionchanged:: 8.0.1 + ``type`` is detected from ``flag_value`` if given. + """ + + param_type_name = "option" + + def __init__( + self, + param_decls: cabc.Sequence[str] | None = None, + show_default: bool | str | None = None, + prompt: bool | str = False, + confirmation_prompt: bool | str = False, + prompt_required: bool = True, + hide_input: bool = False, + is_flag: bool | None = None, + flag_value: t.Any = UNSET, + multiple: bool = False, + count: bool = False, + allow_from_autoenv: bool = True, + type: types.ParamType | t.Any | None = None, + help: str | None = None, + hidden: bool = False, + show_choices: bool = True, + show_envvar: bool = False, + deprecated: bool | str = False, + **attrs: t.Any, + ) -> None: + if help: + help = inspect.cleandoc(help) + + super().__init__( + param_decls, type=type, multiple=multiple, deprecated=deprecated, **attrs + ) + + if prompt is True: + if self.name is None: + raise TypeError("'name' is required with 'prompt=True'.") + + prompt_text: str | None = self.name.replace("_", " ").capitalize() + elif prompt is False: + prompt_text = None + else: + prompt_text = prompt + + if deprecated: + deprecated_message = ( + f"(DEPRECATED: {deprecated})" + if isinstance(deprecated, str) + else "(DEPRECATED)" + ) + help = help + deprecated_message if help is not None else deprecated_message + + self.prompt = prompt_text + self.confirmation_prompt = confirmation_prompt + self.prompt_required = prompt_required + self.hide_input = hide_input + self.hidden = hidden + + # The _flag_needs_value property tells the parser that this option is a flag + # that cannot be used standalone and needs a value. With this information, the + # parser can determine whether to consider the next user-provided argument in + # the CLI as a value for this flag or as a new option. + # If prompt is enabled but not required, then it opens the possibility for the + # option to gets its value from the user. + self._flag_needs_value = self.prompt is not None and not self.prompt_required + + # Auto-detect if this is a flag or not. + if is_flag is None: + # Implicitly a flag because flag_value was set. + if flag_value is not UNSET: + is_flag = True + # Not a flag, but when used as a flag it shows a prompt. + elif self._flag_needs_value: + is_flag = False + # Implicitly a flag because secondary options names were given. + elif self.secondary_opts: + is_flag = True + # The option is explicitly not a flag. But we do not know yet if it needs a + # value or not. So we look at the default value to determine it. + elif is_flag is False and not self._flag_needs_value: + self._flag_needs_value = self.default is UNSET + + if is_flag: + # Set missing default for flags if not explicitly required or prompted. + if self.default is UNSET and not self.required and not self.prompt: + if multiple: + self.default = () + + # Auto-detect the type of the flag based on the flag_value. + if type is None: + # A flag without a flag_value is a boolean flag. + if flag_value is UNSET: + self.type = types.BoolParamType() + # If the flag value is a boolean, use BoolParamType. + elif isinstance(flag_value, bool): + self.type = types.BoolParamType() + # Otherwise, guess the type from the flag value. + else: + self.type = types.convert_type(None, flag_value) + + self.is_flag: bool = bool(is_flag) + self.is_bool_flag: bool = bool( + is_flag and isinstance(self.type, types.BoolParamType) + ) + self.flag_value: t.Any = flag_value + + # Set boolean flag default to False if unset and not required. + if self.is_bool_flag: + if self.default is UNSET and not self.required: + self.default = False + + # Support the special case of aligning the default value with the flag_value + # for flags whose default is explicitly set to True. Note that as long as we + # have this condition, there is no way a flag can have a default set to True, + # and a flag_value set to something else. Refs: + # https://github.com/pallets/click/issues/3024#issuecomment-3146199461 + # https://github.com/pallets/click/pull/3030/commits/06847da + if self.default is True and self.flag_value is not UNSET: + self.default = self.flag_value + + # Set the default flag_value if it is not set. + if self.flag_value is UNSET: + if self.is_flag: + self.flag_value = True + else: + self.flag_value = None + + # Counting. + self.count = count + if count: + if type is None: + self.type = types.IntRange(min=0) + if self.default is UNSET: + self.default = 0 + + self.allow_from_autoenv = allow_from_autoenv + self.help = help + self.show_default = show_default + self.show_choices = show_choices + self.show_envvar = show_envvar + + if __debug__: + if deprecated and prompt: + raise ValueError("`deprecated` options cannot use `prompt`.") + + if self.nargs == -1: + raise TypeError("nargs=-1 is not supported for options.") + + if not self.is_bool_flag and self.secondary_opts: + raise TypeError("Secondary flag is not valid for non-boolean flag.") + + if self.is_bool_flag and self.hide_input and self.prompt is not None: + raise TypeError( + "'prompt' with 'hide_input' is not valid for boolean flag." + ) + + if self.count: + if self.multiple: + raise TypeError("'count' is not valid with 'multiple'.") + + if self.is_flag: + raise TypeError("'count' is not valid with 'is_flag'.") + + def to_info_dict(self) -> dict[str, t.Any]: + """ + .. versionchanged:: 8.3.0 + Returns ``None`` for the :attr:`flag_value` if it was not set. + """ + info_dict = super().to_info_dict() + info_dict.update( + help=self.help, + prompt=self.prompt, + is_flag=self.is_flag, + # We explicitly hide the :attr:`UNSET` value to the user, as we choose to + # make it an implementation detail. And because ``to_info_dict`` has been + # designed for documentation purposes, we return ``None`` instead. + flag_value=self.flag_value if self.flag_value is not UNSET else None, + count=self.count, + hidden=self.hidden, + ) + return info_dict + + def get_error_hint(self, ctx: Context) -> str: + result = super().get_error_hint(ctx) + if self.show_envvar and self.envvar is not None: + result += f" (env var: '{self.envvar}')" + return result + + def _parse_decls( + self, decls: cabc.Sequence[str], expose_value: bool + ) -> tuple[str | None, list[str], list[str]]: + opts = [] + secondary_opts = [] + name = None + possible_names = [] + + for decl in decls: + if decl.isidentifier(): + if name is not None: + raise TypeError(f"Name '{name}' defined twice") + name = decl + else: + split_char = ";" if decl[:1] == "/" else "/" + if split_char in decl: + first, second = decl.split(split_char, 1) + first = first.rstrip() + if first: + possible_names.append(_split_opt(first)) + opts.append(first) + second = second.lstrip() + if second: + secondary_opts.append(second.lstrip()) + if first == second: + raise ValueError( + f"Boolean option {decl!r} cannot use the" + " same flag for true/false." + ) + else: + possible_names.append(_split_opt(decl)) + opts.append(decl) + + if name is None and possible_names: + possible_names.sort(key=lambda x: -len(x[0])) # group long options first + name = possible_names[0][1].replace("-", "_").lower() + if not name.isidentifier(): + name = None + + if name is None: + if not expose_value: + return None, opts, secondary_opts + raise TypeError( + f"Could not determine name for option with declarations {decls!r}" + ) + + if not opts and not secondary_opts: + raise TypeError( + f"No options defined but a name was passed ({name})." + " Did you mean to declare an argument instead? Did" + f" you mean to pass '--{name}'?" + ) + + return name, opts, secondary_opts + + def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: + if self.multiple: + action = "append" + elif self.count: + action = "count" + else: + action = "store" + + if self.is_flag: + action = f"{action}_const" + + if self.is_bool_flag and self.secondary_opts: + parser.add_option( + obj=self, opts=self.opts, dest=self.name, action=action, const=True + ) + parser.add_option( + obj=self, + opts=self.secondary_opts, + dest=self.name, + action=action, + const=False, + ) + else: + parser.add_option( + obj=self, + opts=self.opts, + dest=self.name, + action=action, + const=self.flag_value, + ) + else: + parser.add_option( + obj=self, + opts=self.opts, + dest=self.name, + action=action, + nargs=self.nargs, + ) + + def get_help_record(self, ctx: Context) -> tuple[str, str] | None: + if self.hidden: + return None + + any_prefix_is_slash = False + + def _write_opts(opts: cabc.Sequence[str]) -> str: + nonlocal any_prefix_is_slash + + rv, any_slashes = join_options(opts) + + if any_slashes: + any_prefix_is_slash = True + + if not self.is_flag and not self.count: + rv += f" {self.make_metavar(ctx=ctx)}" + + return rv + + rv = [_write_opts(self.opts)] + + if self.secondary_opts: + rv.append(_write_opts(self.secondary_opts)) + + help = self.help or "" + + extra = self.get_help_extra(ctx) + extra_items = [] + if "envvars" in extra: + extra_items.append( + _("env var: {var}").format(var=", ".join(extra["envvars"])) + ) + if "default" in extra: + extra_items.append(_("default: {default}").format(default=extra["default"])) + if "range" in extra: + extra_items.append(extra["range"]) + if "required" in extra: + extra_items.append(_(extra["required"])) + + if extra_items: + extra_str = "; ".join(extra_items) + help = f"{help} [{extra_str}]" if help else f"[{extra_str}]" + + return ("; " if any_prefix_is_slash else " / ").join(rv), help + + def get_help_extra(self, ctx: Context) -> types.OptionHelpExtra: + extra: types.OptionHelpExtra = {} + + if self.show_envvar: + envvar = self.envvar + + if envvar is None: + if ( + self.allow_from_autoenv + and ctx.auto_envvar_prefix is not None + and self.name is not None + ): + envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" + + if envvar is not None: + if isinstance(envvar, str): + extra["envvars"] = (envvar,) + else: + extra["envvars"] = tuple(str(d) for d in envvar) + + # Temporarily enable resilient parsing to avoid type casting + # failing for the default. Might be possible to extend this to + # help formatting in general. + resilient = ctx.resilient_parsing + ctx.resilient_parsing = True + + try: + default_value = self.get_default(ctx, call=False) + finally: + ctx.resilient_parsing = resilient + + show_default = False + show_default_is_str = False + + if self.show_default is not None: + if isinstance(self.show_default, str): + show_default_is_str = show_default = True + else: + show_default = self.show_default + elif ctx.show_default is not None: + show_default = ctx.show_default + + if show_default_is_str or ( + show_default and (default_value not in (None, UNSET)) + ): + if show_default_is_str: + default_string = f"({self.show_default})" + elif isinstance(default_value, (list, tuple)): + default_string = ", ".join(str(d) for d in default_value) + elif isinstance(default_value, enum.Enum): + default_string = default_value.name + elif inspect.isfunction(default_value): + default_string = _("(dynamic)") + elif self.is_bool_flag and self.secondary_opts: + # For boolean flags that have distinct True/False opts, + # use the opt without prefix instead of the value. + default_string = _split_opt( + (self.opts if default_value else self.secondary_opts)[0] + )[1] + elif self.is_bool_flag and not self.secondary_opts and not default_value: + default_string = "" + elif default_value == "": + default_string = '""' + else: + default_string = str(default_value) + + if default_string: + extra["default"] = default_string + + if ( + isinstance(self.type, types._NumberRangeBase) + # skip count with default range type + and not (self.count and self.type.min == 0 and self.type.max is None) + ): + range_str = self.type._describe_range() + + if range_str: + extra["range"] = range_str + + if self.required: + extra["required"] = "required" + + return extra + + def prompt_for_value(self, ctx: Context) -> t.Any: + """This is an alternative flow that can be activated in the full + value processing if a value does not exist. It will prompt the + user until a valid value exists and then returns the processed + value as result. + """ + assert self.prompt is not None + + # Calculate the default before prompting anything to lock in the value before + # attempting any user interaction. + default = self.get_default(ctx) + + # A boolean flag can use a simplified [y/n] confirmation prompt. + if self.is_bool_flag: + # If we have no boolean default, we force the user to explicitly provide + # one. + if default in (UNSET, None): + default = None + # Nothing prevent you to declare an option that is simultaneously: + # 1) auto-detected as a boolean flag, + # 2) allowed to prompt, and + # 3) still declare a non-boolean default. + # This forced casting into a boolean is necessary to align any non-boolean + # default to the prompt, which is going to be a [y/n]-style confirmation + # because the option is still a boolean flag. That way, instead of [y/n], + # we get [Y/n] or [y/N] depending on the truthy value of the default. + # Refs: https://github.com/pallets/click/pull/3030#discussion_r2289180249 + else: + default = bool(default) + return confirm(self.prompt, default) + + # If show_default is set to True/False, provide this to `prompt` as well. For + # non-bool values of `show_default`, we use `prompt`'s default behavior + prompt_kwargs: t.Any = {} + if isinstance(self.show_default, bool): + prompt_kwargs["show_default"] = self.show_default + + return prompt( + self.prompt, + # Use ``None`` to inform the prompt() function to reiterate until a valid + # value is provided by the user if we have no default. + default=None if default is UNSET else default, + type=self.type, + hide_input=self.hide_input, + show_choices=self.show_choices, + confirmation_prompt=self.confirmation_prompt, + value_proc=lambda x: self.process_value(ctx, x), + **prompt_kwargs, + ) + + def resolve_envvar_value(self, ctx: Context) -> str | None: + """:class:`Option` resolves its environment variable the same way as + :func:`Parameter.resolve_envvar_value`, but it also supports + :attr:`Context.auto_envvar_prefix`. If we could not find an environment from + the :attr:`envvar` property, we fallback on :attr:`Context.auto_envvar_prefix` + to build dynamiccaly the environment variable name using the + :python:`{ctx.auto_envvar_prefix}_{self.name.upper()}` template. + + :meta private: + """ + rv = super().resolve_envvar_value(ctx) + + if rv is not None: + return rv + + if ( + self.allow_from_autoenv + and ctx.auto_envvar_prefix is not None + and self.name is not None + ): + envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" + rv = os.environ.get(envvar) + + if rv: + return rv + + return None + + def value_from_envvar(self, ctx: Context) -> t.Any: + """For :class:`Option`, this method processes the raw environment variable + string the same way as :func:`Parameter.value_from_envvar` does. + + But in the case of non-boolean flags, the value is analyzed to determine if the + flag is activated or not, and returns a boolean of its activation, or the + :attr:`flag_value` if the latter is set. + + This method also takes care of repeated options (i.e. options with + :attr:`multiple` set to ``True``). + + :meta private: + """ + rv = self.resolve_envvar_value(ctx) + + # Absent environment variable or an empty string is interpreted as unset. + if rv is None: + return None + + # Non-boolean flags are more liberal in what they accept. But a flag being a + # flag, its envvar value still needs to be analyzed to determine if the flag is + # activated or not. + if self.is_flag and not self.is_bool_flag: + # If the flag_value is set and match the envvar value, return it + # directly. + if self.flag_value is not UNSET and rv == self.flag_value: + return self.flag_value + # Analyze the envvar value as a boolean to know if the flag is + # activated or not. + return types.BoolParamType.str_to_bool(rv) + + # Split the envvar value if it is allowed to be repeated. + value_depth = (self.nargs != 1) + bool(self.multiple) + if value_depth > 0: + multi_rv = self.type.split_envvar_value(rv) + if self.multiple and self.nargs != 1: + multi_rv = batch(multi_rv, self.nargs) # type: ignore[assignment] + + return multi_rv + + return rv + + def consume_value( + self, ctx: Context, opts: cabc.Mapping[str, Parameter] + ) -> tuple[t.Any, ParameterSource]: + """For :class:`Option`, the value can be collected from an interactive prompt + if the option is a flag that needs a value (and the :attr:`prompt` property is + set). + + Additionally, this method handles flag option that are activated without a + value, in which case the :attr:`flag_value` is returned. + + :meta private: + """ + value, source = super().consume_value(ctx, opts) + + # The parser will emit a sentinel value if the option is allowed to as a flag + # without a value. + if value is FLAG_NEEDS_VALUE: + # If the option allows for a prompt, we start an interaction with the user. + if self.prompt is not None and not ctx.resilient_parsing: + value = self.prompt_for_value(ctx) + source = ParameterSource.PROMPT + # Else the flag takes its flag_value as value. + else: + value = self.flag_value + source = ParameterSource.COMMANDLINE + + # A flag which is activated always returns the flag value, unless the value + # comes from the explicitly sets default. + elif ( + self.is_flag + and value is True + and not self.is_bool_flag + and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP) + ): + value = self.flag_value + + # Re-interpret a multiple option which has been sent as-is by the parser. + # Here we replace each occurrence of value-less flags (marked by the + # FLAG_NEEDS_VALUE sentinel) with the flag_value. + elif ( + self.multiple + and value is not UNSET + and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP) + and any(v is FLAG_NEEDS_VALUE for v in value) + ): + value = [self.flag_value if v is FLAG_NEEDS_VALUE else v for v in value] + source = ParameterSource.COMMANDLINE + + # The value wasn't set, or used the param's default, prompt for one to the user + # if prompting is enabled. + elif ( + ( + value is UNSET + or source in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP) + ) + and self.prompt is not None + and (self.required or self.prompt_required) + and not ctx.resilient_parsing + ): + value = self.prompt_for_value(ctx) + source = ParameterSource.PROMPT + + return value, source + + def type_cast_value(self, ctx: Context, value: t.Any) -> t.Any: + if self.is_flag and not self.required: + if value is UNSET: + if self.is_bool_flag: + # If the flag is a boolean flag, we return False if it is not set. + value = False + return super().type_cast_value(ctx, value) + + +class Argument(Parameter): + """Arguments are positional parameters to a command. They generally + provide fewer features than options but can have infinite ``nargs`` + and are required by default. + + All parameters are passed onwards to the constructor of :class:`Parameter`. + """ + + param_type_name = "argument" + + def __init__( + self, + param_decls: cabc.Sequence[str], + required: bool | None = None, + **attrs: t.Any, + ) -> None: + # Auto-detect the requirement status of the argument if not explicitly set. + if required is None: + # The argument gets automatically required if it has no explicit default + # value set and is setup to match at least one value. + if attrs.get("default", UNSET) is UNSET: + required = attrs.get("nargs", 1) > 0 + # If the argument has a default value, it is not required. + else: + required = False + + if "multiple" in attrs: + raise TypeError("__init__() got an unexpected keyword argument 'multiple'.") + + super().__init__(param_decls, required=required, **attrs) + + @property + def human_readable_name(self) -> str: + if self.metavar is not None: + return self.metavar + return self.name.upper() # type: ignore + + def make_metavar(self, ctx: Context) -> str: + if self.metavar is not None: + return self.metavar + var = self.type.get_metavar(param=self, ctx=ctx) + if not var: + var = self.name.upper() # type: ignore + if self.deprecated: + var += "!" + if not self.required: + var = f"[{var}]" + if self.nargs != 1: + var += "..." + return var + + def _parse_decls( + self, decls: cabc.Sequence[str], expose_value: bool + ) -> tuple[str | None, list[str], list[str]]: + if not decls: + if not expose_value: + return None, [], [] + raise TypeError("Argument is marked as exposed, but does not have a name.") + if len(decls) == 1: + name = arg = decls[0] + name = name.replace("-", "_").lower() + else: + raise TypeError( + "Arguments take exactly one parameter declaration, got" + f" {len(decls)}: {decls}." + ) + return name, [arg], [] + + def get_usage_pieces(self, ctx: Context) -> list[str]: + return [self.make_metavar(ctx)] + + def get_error_hint(self, ctx: Context) -> str: + return f"'{self.make_metavar(ctx)}'" + + def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: + parser.add_argument(dest=self.name, nargs=self.nargs, obj=self) + + +def __getattr__(name: str) -> object: + import warnings + + if name == "BaseCommand": + warnings.warn( + "'BaseCommand' is deprecated and will be removed in Click 9.0. Use" + " 'Command' instead.", + DeprecationWarning, + stacklevel=2, + ) + return _BaseCommand + + if name == "MultiCommand": + warnings.warn( + "'MultiCommand' is deprecated and will be removed in Click 9.0. Use" + " 'Group' instead.", + DeprecationWarning, + stacklevel=2, + ) + return _MultiCommand + + raise AttributeError(name) diff --git a/ocr/.venv/Lib/site-packages/click/decorators.py b/ocr/.venv/Lib/site-packages/click/decorators.py new file mode 100644 index 00000000..21f4c342 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/decorators.py @@ -0,0 +1,551 @@ +from __future__ import annotations + +import inspect +import typing as t +from functools import update_wrapper +from gettext import gettext as _ + +from .core import Argument +from .core import Command +from .core import Context +from .core import Group +from .core import Option +from .core import Parameter +from .globals import get_current_context +from .utils import echo + +if t.TYPE_CHECKING: + import typing_extensions as te + + P = te.ParamSpec("P") + +R = t.TypeVar("R") +T = t.TypeVar("T") +_AnyCallable = t.Callable[..., t.Any] +FC = t.TypeVar("FC", bound="_AnyCallable | Command") + + +def pass_context(f: t.Callable[te.Concatenate[Context, P], R]) -> t.Callable[P, R]: + """Marks a callback as wanting to receive the current context + object as first argument. + """ + + def new_func(*args: P.args, **kwargs: P.kwargs) -> R: + return f(get_current_context(), *args, **kwargs) + + return update_wrapper(new_func, f) + + +def pass_obj(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: + """Similar to :func:`pass_context`, but only pass the object on the + context onwards (:attr:`Context.obj`). This is useful if that object + represents the state of a nested system. + """ + + def new_func(*args: P.args, **kwargs: P.kwargs) -> R: + return f(get_current_context().obj, *args, **kwargs) + + return update_wrapper(new_func, f) + + +def make_pass_decorator( + object_type: type[T], ensure: bool = False +) -> t.Callable[[t.Callable[te.Concatenate[T, P], R]], t.Callable[P, R]]: + """Given an object type this creates a decorator that will work + similar to :func:`pass_obj` but instead of passing the object of the + current context, it will find the innermost context of type + :func:`object_type`. + + This generates a decorator that works roughly like this:: + + from functools import update_wrapper + + def decorator(f): + @pass_context + def new_func(ctx, *args, **kwargs): + obj = ctx.find_object(object_type) + return ctx.invoke(f, obj, *args, **kwargs) + return update_wrapper(new_func, f) + return decorator + + :param object_type: the type of the object to pass. + :param ensure: if set to `True`, a new object will be created and + remembered on the context if it's not there yet. + """ + + def decorator(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: + def new_func(*args: P.args, **kwargs: P.kwargs) -> R: + ctx = get_current_context() + + obj: T | None + if ensure: + obj = ctx.ensure_object(object_type) + else: + obj = ctx.find_object(object_type) + + if obj is None: + raise RuntimeError( + "Managed to invoke callback without a context" + f" object of type {object_type.__name__!r}" + " existing." + ) + + return ctx.invoke(f, obj, *args, **kwargs) + + return update_wrapper(new_func, f) + + return decorator + + +def pass_meta_key( + key: str, *, doc_description: str | None = None +) -> t.Callable[[t.Callable[te.Concatenate[T, P], R]], t.Callable[P, R]]: + """Create a decorator that passes a key from + :attr:`click.Context.meta` as the first argument to the decorated + function. + + :param key: Key in ``Context.meta`` to pass. + :param doc_description: Description of the object being passed, + inserted into the decorator's docstring. Defaults to "the 'key' + key from Context.meta". + + .. versionadded:: 8.0 + """ + + def decorator(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: + def new_func(*args: P.args, **kwargs: P.kwargs) -> R: + ctx = get_current_context() + obj = ctx.meta[key] + return ctx.invoke(f, obj, *args, **kwargs) + + return update_wrapper(new_func, f) + + if doc_description is None: + doc_description = f"the {key!r} key from :attr:`click.Context.meta`" + + decorator.__doc__ = ( + f"Decorator that passes {doc_description} as the first argument" + " to the decorated function." + ) + return decorator + + +CmdType = t.TypeVar("CmdType", bound=Command) + + +# variant: no call, directly as decorator for a function. +@t.overload +def command(name: _AnyCallable) -> Command: ... + + +# variant: with positional name and with positional or keyword cls argument: +# @command(namearg, CommandCls, ...) or @command(namearg, cls=CommandCls, ...) +@t.overload +def command( + name: str | None, + cls: type[CmdType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], CmdType]: ... + + +# variant: name omitted, cls _must_ be a keyword argument, @command(cls=CommandCls, ...) +@t.overload +def command( + name: None = None, + *, + cls: type[CmdType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], CmdType]: ... + + +# variant: with optional string name, no cls argument provided. +@t.overload +def command( + name: str | None = ..., cls: None = None, **attrs: t.Any +) -> t.Callable[[_AnyCallable], Command]: ... + + +def command( + name: str | _AnyCallable | None = None, + cls: type[CmdType] | None = None, + **attrs: t.Any, +) -> Command | t.Callable[[_AnyCallable], Command | CmdType]: + r"""Creates a new :class:`Command` and uses the decorated function as + callback. This will also automatically attach all decorated + :func:`option`\s and :func:`argument`\s as parameters to the command. + + The name of the command defaults to the name of the function, converted to + lowercase, with underscores ``_`` replaced by dashes ``-``, and the suffixes + ``_command``, ``_cmd``, ``_group``, and ``_grp`` are removed. For example, + ``init_data_command`` becomes ``init-data``. + + All keyword arguments are forwarded to the underlying command class. + For the ``params`` argument, any decorated params are appended to + the end of the list. + + Once decorated the function turns into a :class:`Command` instance + that can be invoked as a command line utility or be attached to a + command :class:`Group`. + + :param name: The name of the command. Defaults to modifying the function's + name as described above. + :param cls: The command class to create. Defaults to :class:`Command`. + + .. versionchanged:: 8.2 + The suffixes ``_command``, ``_cmd``, ``_group``, and ``_grp`` are + removed when generating the name. + + .. versionchanged:: 8.1 + This decorator can be applied without parentheses. + + .. versionchanged:: 8.1 + The ``params`` argument can be used. Decorated params are + appended to the end of the list. + """ + + func: t.Callable[[_AnyCallable], t.Any] | None = None + + if callable(name): + func = name + name = None + assert cls is None, "Use 'command(cls=cls)(callable)' to specify a class." + assert not attrs, "Use 'command(**kwargs)(callable)' to provide arguments." + + if cls is None: + cls = t.cast("type[CmdType]", Command) + + def decorator(f: _AnyCallable) -> CmdType: + if isinstance(f, Command): + raise TypeError("Attempted to convert a callback into a command twice.") + + attr_params = attrs.pop("params", None) + params = attr_params if attr_params is not None else [] + + try: + decorator_params = f.__click_params__ # type: ignore + except AttributeError: + pass + else: + del f.__click_params__ # type: ignore + params.extend(reversed(decorator_params)) + + if attrs.get("help") is None: + attrs["help"] = f.__doc__ + + if t.TYPE_CHECKING: + assert cls is not None + assert not callable(name) + + if name is not None: + cmd_name = name + else: + cmd_name = f.__name__.lower().replace("_", "-") + cmd_left, sep, suffix = cmd_name.rpartition("-") + + if sep and suffix in {"command", "cmd", "group", "grp"}: + cmd_name = cmd_left + + cmd = cls(name=cmd_name, callback=f, params=params, **attrs) + cmd.__doc__ = f.__doc__ + return cmd + + if func is not None: + return decorator(func) + + return decorator + + +GrpType = t.TypeVar("GrpType", bound=Group) + + +# variant: no call, directly as decorator for a function. +@t.overload +def group(name: _AnyCallable) -> Group: ... + + +# variant: with positional name and with positional or keyword cls argument: +# @group(namearg, GroupCls, ...) or @group(namearg, cls=GroupCls, ...) +@t.overload +def group( + name: str | None, + cls: type[GrpType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], GrpType]: ... + + +# variant: name omitted, cls _must_ be a keyword argument, @group(cmd=GroupCls, ...) +@t.overload +def group( + name: None = None, + *, + cls: type[GrpType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], GrpType]: ... + + +# variant: with optional string name, no cls argument provided. +@t.overload +def group( + name: str | None = ..., cls: None = None, **attrs: t.Any +) -> t.Callable[[_AnyCallable], Group]: ... + + +def group( + name: str | _AnyCallable | None = None, + cls: type[GrpType] | None = None, + **attrs: t.Any, +) -> Group | t.Callable[[_AnyCallable], Group | GrpType]: + """Creates a new :class:`Group` with a function as callback. This + works otherwise the same as :func:`command` just that the `cls` + parameter is set to :class:`Group`. + + .. versionchanged:: 8.1 + This decorator can be applied without parentheses. + """ + if cls is None: + cls = t.cast("type[GrpType]", Group) + + if callable(name): + return command(cls=cls, **attrs)(name) + + return command(name, cls, **attrs) + + +def _param_memo(f: t.Callable[..., t.Any], param: Parameter) -> None: + if isinstance(f, Command): + f.params.append(param) + else: + if not hasattr(f, "__click_params__"): + f.__click_params__ = [] # type: ignore + + f.__click_params__.append(param) # type: ignore + + +def argument( + *param_decls: str, cls: type[Argument] | None = None, **attrs: t.Any +) -> t.Callable[[FC], FC]: + """Attaches an argument to the command. All positional arguments are + passed as parameter declarations to :class:`Argument`; all keyword + arguments are forwarded unchanged (except ``cls``). + This is equivalent to creating an :class:`Argument` instance manually + and attaching it to the :attr:`Command.params` list. + + For the default argument class, refer to :class:`Argument` and + :class:`Parameter` for descriptions of parameters. + + :param cls: the argument class to instantiate. This defaults to + :class:`Argument`. + :param param_decls: Passed as positional arguments to the constructor of + ``cls``. + :param attrs: Passed as keyword arguments to the constructor of ``cls``. + """ + if cls is None: + cls = Argument + + def decorator(f: FC) -> FC: + _param_memo(f, cls(param_decls, **attrs)) + return f + + return decorator + + +def option( + *param_decls: str, cls: type[Option] | None = None, **attrs: t.Any +) -> t.Callable[[FC], FC]: + """Attaches an option to the command. All positional arguments are + passed as parameter declarations to :class:`Option`; all keyword + arguments are forwarded unchanged (except ``cls``). + This is equivalent to creating an :class:`Option` instance manually + and attaching it to the :attr:`Command.params` list. + + For the default option class, refer to :class:`Option` and + :class:`Parameter` for descriptions of parameters. + + :param cls: the option class to instantiate. This defaults to + :class:`Option`. + :param param_decls: Passed as positional arguments to the constructor of + ``cls``. + :param attrs: Passed as keyword arguments to the constructor of ``cls``. + """ + if cls is None: + cls = Option + + def decorator(f: FC) -> FC: + _param_memo(f, cls(param_decls, **attrs)) + return f + + return decorator + + +def confirmation_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: + """Add a ``--yes`` option which shows a prompt before continuing if + not passed. If the prompt is declined, the program will exit. + + :param param_decls: One or more option names. Defaults to the single + value ``"--yes"``. + :param kwargs: Extra arguments are passed to :func:`option`. + """ + + def callback(ctx: Context, param: Parameter, value: bool) -> None: + if not value: + ctx.abort() + + if not param_decls: + param_decls = ("--yes",) + + kwargs.setdefault("is_flag", True) + kwargs.setdefault("callback", callback) + kwargs.setdefault("expose_value", False) + kwargs.setdefault("prompt", "Do you want to continue?") + kwargs.setdefault("help", "Confirm the action without prompting.") + return option(*param_decls, **kwargs) + + +def password_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: + """Add a ``--password`` option which prompts for a password, hiding + input and asking to enter the value again for confirmation. + + :param param_decls: One or more option names. Defaults to the single + value ``"--password"``. + :param kwargs: Extra arguments are passed to :func:`option`. + """ + if not param_decls: + param_decls = ("--password",) + + kwargs.setdefault("prompt", True) + kwargs.setdefault("confirmation_prompt", True) + kwargs.setdefault("hide_input", True) + return option(*param_decls, **kwargs) + + +def version_option( + version: str | None = None, + *param_decls: str, + package_name: str | None = None, + prog_name: str | None = None, + message: str | None = None, + **kwargs: t.Any, +) -> t.Callable[[FC], FC]: + """Add a ``--version`` option which immediately prints the version + number and exits the program. + + If ``version`` is not provided, Click will try to detect it using + :func:`importlib.metadata.version` to get the version for the + ``package_name``. + + If ``package_name`` is not provided, Click will try to detect it by + inspecting the stack frames. This will be used to detect the + version, so it must match the name of the installed package. + + :param version: The version number to show. If not provided, Click + will try to detect it. + :param param_decls: One or more option names. Defaults to the single + value ``"--version"``. + :param package_name: The package name to detect the version from. If + not provided, Click will try to detect it. + :param prog_name: The name of the CLI to show in the message. If not + provided, it will be detected from the command. + :param message: The message to show. The values ``%(prog)s``, + ``%(package)s``, and ``%(version)s`` are available. Defaults to + ``"%(prog)s, version %(version)s"``. + :param kwargs: Extra arguments are passed to :func:`option`. + :raise RuntimeError: ``version`` could not be detected. + + .. versionchanged:: 8.0 + Add the ``package_name`` parameter, and the ``%(package)s`` + value for messages. + + .. versionchanged:: 8.0 + Use :mod:`importlib.metadata` instead of ``pkg_resources``. The + version is detected based on the package name, not the entry + point name. The Python package name must match the installed + package name, or be passed with ``package_name=``. + """ + if message is None: + message = _("%(prog)s, version %(version)s") + + if version is None and package_name is None: + frame = inspect.currentframe() + f_back = frame.f_back if frame is not None else None + f_globals = f_back.f_globals if f_back is not None else None + # break reference cycle + # https://docs.python.org/3/library/inspect.html#the-interpreter-stack + del frame + + if f_globals is not None: + package_name = f_globals.get("__name__") + + if package_name == "__main__": + package_name = f_globals.get("__package__") + + if package_name: + package_name = package_name.partition(".")[0] + + def callback(ctx: Context, param: Parameter, value: bool) -> None: + if not value or ctx.resilient_parsing: + return + + nonlocal prog_name + nonlocal version + + if prog_name is None: + prog_name = ctx.find_root().info_name + + if version is None and package_name is not None: + import importlib.metadata + + try: + version = importlib.metadata.version(package_name) + except importlib.metadata.PackageNotFoundError: + raise RuntimeError( + f"{package_name!r} is not installed. Try passing" + " 'package_name' instead." + ) from None + + if version is None: + raise RuntimeError( + f"Could not determine the version for {package_name!r} automatically." + ) + + echo( + message % {"prog": prog_name, "package": package_name, "version": version}, + color=ctx.color, + ) + ctx.exit() + + if not param_decls: + param_decls = ("--version",) + + kwargs.setdefault("is_flag", True) + kwargs.setdefault("expose_value", False) + kwargs.setdefault("is_eager", True) + kwargs.setdefault("help", _("Show the version and exit.")) + kwargs["callback"] = callback + return option(*param_decls, **kwargs) + + +def help_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: + """Pre-configured ``--help`` option which immediately prints the help page + and exits the program. + + :param param_decls: One or more option names. Defaults to the single + value ``"--help"``. + :param kwargs: Extra arguments are passed to :func:`option`. + """ + + def show_help(ctx: Context, param: Parameter, value: bool) -> None: + """Callback that print the help page on ```` and exits.""" + if value and not ctx.resilient_parsing: + echo(ctx.get_help(), color=ctx.color) + ctx.exit() + + if not param_decls: + param_decls = ("--help",) + + kwargs.setdefault("is_flag", True) + kwargs.setdefault("expose_value", False) + kwargs.setdefault("is_eager", True) + kwargs.setdefault("help", _("Show this message and exit.")) + kwargs.setdefault("callback", show_help) + + return option(*param_decls, **kwargs) diff --git a/ocr/.venv/Lib/site-packages/click/exceptions.py b/ocr/.venv/Lib/site-packages/click/exceptions.py new file mode 100644 index 00000000..4d782ee3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/exceptions.py @@ -0,0 +1,308 @@ +from __future__ import annotations + +import collections.abc as cabc +import typing as t +from gettext import gettext as _ +from gettext import ngettext + +from ._compat import get_text_stderr +from .globals import resolve_color_default +from .utils import echo +from .utils import format_filename + +if t.TYPE_CHECKING: + from .core import Command + from .core import Context + from .core import Parameter + + +def _join_param_hints(param_hint: cabc.Sequence[str] | str | None) -> str | None: + if param_hint is not None and not isinstance(param_hint, str): + return " / ".join(repr(x) for x in param_hint) + + return param_hint + + +class ClickException(Exception): + """An exception that Click can handle and show to the user.""" + + #: The exit code for this exception. + exit_code = 1 + + def __init__(self, message: str) -> None: + super().__init__(message) + # The context will be removed by the time we print the message, so cache + # the color settings here to be used later on (in `show`) + self.show_color: bool | None = resolve_color_default() + self.message = message + + def format_message(self) -> str: + return self.message + + def __str__(self) -> str: + return self.message + + def show(self, file: t.IO[t.Any] | None = None) -> None: + if file is None: + file = get_text_stderr() + + echo( + _("Error: {message}").format(message=self.format_message()), + file=file, + color=self.show_color, + ) + + +class UsageError(ClickException): + """An internal exception that signals a usage error. This typically + aborts any further handling. + + :param message: the error message to display. + :param ctx: optionally the context that caused this error. Click will + fill in the context automatically in some situations. + """ + + exit_code = 2 + + def __init__(self, message: str, ctx: Context | None = None) -> None: + super().__init__(message) + self.ctx = ctx + self.cmd: Command | None = self.ctx.command if self.ctx else None + + def show(self, file: t.IO[t.Any] | None = None) -> None: + if file is None: + file = get_text_stderr() + color = None + hint = "" + if ( + self.ctx is not None + and self.ctx.command.get_help_option(self.ctx) is not None + ): + hint = _("Try '{command} {option}' for help.").format( + command=self.ctx.command_path, option=self.ctx.help_option_names[0] + ) + hint = f"{hint}\n" + if self.ctx is not None: + color = self.ctx.color + echo(f"{self.ctx.get_usage()}\n{hint}", file=file, color=color) + echo( + _("Error: {message}").format(message=self.format_message()), + file=file, + color=color, + ) + + +class BadParameter(UsageError): + """An exception that formats out a standardized error message for a + bad parameter. This is useful when thrown from a callback or type as + Click will attach contextual information to it (for instance, which + parameter it is). + + .. versionadded:: 2.0 + + :param param: the parameter object that caused this error. This can + be left out, and Click will attach this info itself + if possible. + :param param_hint: a string that shows up as parameter name. This + can be used as alternative to `param` in cases + where custom validation should happen. If it is + a string it's used as such, if it's a list then + each item is quoted and separated. + """ + + def __init__( + self, + message: str, + ctx: Context | None = None, + param: Parameter | None = None, + param_hint: cabc.Sequence[str] | str | None = None, + ) -> None: + super().__init__(message, ctx) + self.param = param + self.param_hint = param_hint + + def format_message(self) -> str: + if self.param_hint is not None: + param_hint = self.param_hint + elif self.param is not None: + param_hint = self.param.get_error_hint(self.ctx) # type: ignore + else: + return _("Invalid value: {message}").format(message=self.message) + + return _("Invalid value for {param_hint}: {message}").format( + param_hint=_join_param_hints(param_hint), message=self.message + ) + + +class MissingParameter(BadParameter): + """Raised if click required an option or argument but it was not + provided when invoking the script. + + .. versionadded:: 4.0 + + :param param_type: a string that indicates the type of the parameter. + The default is to inherit the parameter type from + the given `param`. Valid values are ``'parameter'``, + ``'option'`` or ``'argument'``. + """ + + def __init__( + self, + message: str | None = None, + ctx: Context | None = None, + param: Parameter | None = None, + param_hint: cabc.Sequence[str] | str | None = None, + param_type: str | None = None, + ) -> None: + super().__init__(message or "", ctx, param, param_hint) + self.param_type = param_type + + def format_message(self) -> str: + if self.param_hint is not None: + param_hint: cabc.Sequence[str] | str | None = self.param_hint + elif self.param is not None: + param_hint = self.param.get_error_hint(self.ctx) # type: ignore + else: + param_hint = None + + param_hint = _join_param_hints(param_hint) + param_hint = f" {param_hint}" if param_hint else "" + + param_type = self.param_type + if param_type is None and self.param is not None: + param_type = self.param.param_type_name + + msg = self.message + if self.param is not None: + msg_extra = self.param.type.get_missing_message( + param=self.param, ctx=self.ctx + ) + if msg_extra: + if msg: + msg += f". {msg_extra}" + else: + msg = msg_extra + + msg = f" {msg}" if msg else "" + + # Translate param_type for known types. + if param_type == "argument": + missing = _("Missing argument") + elif param_type == "option": + missing = _("Missing option") + elif param_type == "parameter": + missing = _("Missing parameter") + else: + missing = _("Missing {param_type}").format(param_type=param_type) + + return f"{missing}{param_hint}.{msg}" + + def __str__(self) -> str: + if not self.message: + param_name = self.param.name if self.param else None + return _("Missing parameter: {param_name}").format(param_name=param_name) + else: + return self.message + + +class NoSuchOption(UsageError): + """Raised if click attempted to handle an option that does not + exist. + + .. versionadded:: 4.0 + """ + + def __init__( + self, + option_name: str, + message: str | None = None, + possibilities: cabc.Sequence[str] | None = None, + ctx: Context | None = None, + ) -> None: + if message is None: + message = _("No such option: {name}").format(name=option_name) + + super().__init__(message, ctx) + self.option_name = option_name + self.possibilities = possibilities + + def format_message(self) -> str: + if not self.possibilities: + return self.message + + possibility_str = ", ".join(sorted(self.possibilities)) + suggest = ngettext( + "Did you mean {possibility}?", + "(Possible options: {possibilities})", + len(self.possibilities), + ).format(possibility=possibility_str, possibilities=possibility_str) + return f"{self.message} {suggest}" + + +class BadOptionUsage(UsageError): + """Raised if an option is generally supplied but the use of the option + was incorrect. This is for instance raised if the number of arguments + for an option is not correct. + + .. versionadded:: 4.0 + + :param option_name: the name of the option being used incorrectly. + """ + + def __init__( + self, option_name: str, message: str, ctx: Context | None = None + ) -> None: + super().__init__(message, ctx) + self.option_name = option_name + + +class BadArgumentUsage(UsageError): + """Raised if an argument is generally supplied but the use of the argument + was incorrect. This is for instance raised if the number of values + for an argument is not correct. + + .. versionadded:: 6.0 + """ + + +class NoArgsIsHelpError(UsageError): + def __init__(self, ctx: Context) -> None: + self.ctx: Context + super().__init__(ctx.get_help(), ctx=ctx) + + def show(self, file: t.IO[t.Any] | None = None) -> None: + echo(self.format_message(), file=file, err=True, color=self.ctx.color) + + +class FileError(ClickException): + """Raised if a file cannot be opened.""" + + def __init__(self, filename: str, hint: str | None = None) -> None: + if hint is None: + hint = _("unknown error") + + super().__init__(hint) + self.ui_filename: str = format_filename(filename) + self.filename = filename + + def format_message(self) -> str: + return _("Could not open file {filename!r}: {message}").format( + filename=self.ui_filename, message=self.message + ) + + +class Abort(RuntimeError): + """An internal signalling exception that signals Click to abort.""" + + +class Exit(RuntimeError): + """An exception that indicates that the application should exit with some + status code. + + :param code: the status code to exit with. + """ + + __slots__ = ("exit_code",) + + def __init__(self, code: int = 0) -> None: + self.exit_code: int = code diff --git a/ocr/.venv/Lib/site-packages/click/formatting.py b/ocr/.venv/Lib/site-packages/click/formatting.py new file mode 100644 index 00000000..0b64f831 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/formatting.py @@ -0,0 +1,301 @@ +from __future__ import annotations + +import collections.abc as cabc +from contextlib import contextmanager +from gettext import gettext as _ + +from ._compat import term_len +from .parser import _split_opt + +# Can force a width. This is used by the test system +FORCED_WIDTH: int | None = None + + +def measure_table(rows: cabc.Iterable[tuple[str, str]]) -> tuple[int, ...]: + widths: dict[int, int] = {} + + for row in rows: + for idx, col in enumerate(row): + widths[idx] = max(widths.get(idx, 0), term_len(col)) + + return tuple(y for x, y in sorted(widths.items())) + + +def iter_rows( + rows: cabc.Iterable[tuple[str, str]], col_count: int +) -> cabc.Iterator[tuple[str, ...]]: + for row in rows: + yield row + ("",) * (col_count - len(row)) + + +def wrap_text( + text: str, + width: int = 78, + initial_indent: str = "", + subsequent_indent: str = "", + preserve_paragraphs: bool = False, +) -> str: + """A helper function that intelligently wraps text. By default, it + assumes that it operates on a single paragraph of text but if the + `preserve_paragraphs` parameter is provided it will intelligently + handle paragraphs (defined by two empty lines). + + If paragraphs are handled, a paragraph can be prefixed with an empty + line containing the ``\\b`` character (``\\x08``) to indicate that + no rewrapping should happen in that block. + + :param text: the text that should be rewrapped. + :param width: the maximum width for the text. + :param initial_indent: the initial indent that should be placed on the + first line as a string. + :param subsequent_indent: the indent string that should be placed on + each consecutive line. + :param preserve_paragraphs: if this flag is set then the wrapping will + intelligently handle paragraphs. + """ + from ._textwrap import TextWrapper + + text = text.expandtabs() + wrapper = TextWrapper( + width, + initial_indent=initial_indent, + subsequent_indent=subsequent_indent, + replace_whitespace=False, + ) + if not preserve_paragraphs: + return wrapper.fill(text) + + p: list[tuple[int, bool, str]] = [] + buf: list[str] = [] + indent = None + + def _flush_par() -> None: + if not buf: + return + if buf[0].strip() == "\b": + p.append((indent or 0, True, "\n".join(buf[1:]))) + else: + p.append((indent or 0, False, " ".join(buf))) + del buf[:] + + for line in text.splitlines(): + if not line: + _flush_par() + indent = None + else: + if indent is None: + orig_len = term_len(line) + line = line.lstrip() + indent = orig_len - term_len(line) + buf.append(line) + _flush_par() + + rv = [] + for indent, raw, text in p: + with wrapper.extra_indent(" " * indent): + if raw: + rv.append(wrapper.indent_only(text)) + else: + rv.append(wrapper.fill(text)) + + return "\n\n".join(rv) + + +class HelpFormatter: + """This class helps with formatting text-based help pages. It's + usually just needed for very special internal cases, but it's also + exposed so that developers can write their own fancy outputs. + + At present, it always writes into memory. + + :param indent_increment: the additional increment for each level. + :param width: the width for the text. This defaults to the terminal + width clamped to a maximum of 78. + """ + + def __init__( + self, + indent_increment: int = 2, + width: int | None = None, + max_width: int | None = None, + ) -> None: + self.indent_increment = indent_increment + if max_width is None: + max_width = 80 + if width is None: + import shutil + + width = FORCED_WIDTH + if width is None: + width = max(min(shutil.get_terminal_size().columns, max_width) - 2, 50) + self.width = width + self.current_indent: int = 0 + self.buffer: list[str] = [] + + def write(self, string: str) -> None: + """Writes a unicode string into the internal buffer.""" + self.buffer.append(string) + + def indent(self) -> None: + """Increases the indentation.""" + self.current_indent += self.indent_increment + + def dedent(self) -> None: + """Decreases the indentation.""" + self.current_indent -= self.indent_increment + + def write_usage(self, prog: str, args: str = "", prefix: str | None = None) -> None: + """Writes a usage line into the buffer. + + :param prog: the program name. + :param args: whitespace separated list of arguments. + :param prefix: The prefix for the first line. Defaults to + ``"Usage: "``. + """ + if prefix is None: + prefix = f"{_('Usage:')} " + + usage_prefix = f"{prefix:>{self.current_indent}}{prog} " + text_width = self.width - self.current_indent + + if text_width >= (term_len(usage_prefix) + 20): + # The arguments will fit to the right of the prefix. + indent = " " * term_len(usage_prefix) + self.write( + wrap_text( + args, + text_width, + initial_indent=usage_prefix, + subsequent_indent=indent, + ) + ) + else: + # The prefix is too long, put the arguments on the next line. + self.write(usage_prefix) + self.write("\n") + indent = " " * (max(self.current_indent, term_len(prefix)) + 4) + self.write( + wrap_text( + args, text_width, initial_indent=indent, subsequent_indent=indent + ) + ) + + self.write("\n") + + def write_heading(self, heading: str) -> None: + """Writes a heading into the buffer.""" + self.write(f"{'':>{self.current_indent}}{heading}:\n") + + def write_paragraph(self) -> None: + """Writes a paragraph into the buffer.""" + if self.buffer: + self.write("\n") + + def write_text(self, text: str) -> None: + """Writes re-indented text into the buffer. This rewraps and + preserves paragraphs. + """ + indent = " " * self.current_indent + self.write( + wrap_text( + text, + self.width, + initial_indent=indent, + subsequent_indent=indent, + preserve_paragraphs=True, + ) + ) + self.write("\n") + + def write_dl( + self, + rows: cabc.Sequence[tuple[str, str]], + col_max: int = 30, + col_spacing: int = 2, + ) -> None: + """Writes a definition list into the buffer. This is how options + and commands are usually formatted. + + :param rows: a list of two item tuples for the terms and values. + :param col_max: the maximum width of the first column. + :param col_spacing: the number of spaces between the first and + second column. + """ + rows = list(rows) + widths = measure_table(rows) + if len(widths) != 2: + raise TypeError("Expected two columns for definition list") + + first_col = min(widths[0], col_max) + col_spacing + + for first, second in iter_rows(rows, len(widths)): + self.write(f"{'':>{self.current_indent}}{first}") + if not second: + self.write("\n") + continue + if term_len(first) <= first_col - col_spacing: + self.write(" " * (first_col - term_len(first))) + else: + self.write("\n") + self.write(" " * (first_col + self.current_indent)) + + text_width = max(self.width - first_col - 2, 10) + wrapped_text = wrap_text(second, text_width, preserve_paragraphs=True) + lines = wrapped_text.splitlines() + + if lines: + self.write(f"{lines[0]}\n") + + for line in lines[1:]: + self.write(f"{'':>{first_col + self.current_indent}}{line}\n") + else: + self.write("\n") + + @contextmanager + def section(self, name: str) -> cabc.Iterator[None]: + """Helpful context manager that writes a paragraph, a heading, + and the indents. + + :param name: the section name that is written as heading. + """ + self.write_paragraph() + self.write_heading(name) + self.indent() + try: + yield + finally: + self.dedent() + + @contextmanager + def indentation(self) -> cabc.Iterator[None]: + """A context manager that increases the indentation.""" + self.indent() + try: + yield + finally: + self.dedent() + + def getvalue(self) -> str: + """Returns the buffer contents.""" + return "".join(self.buffer) + + +def join_options(options: cabc.Sequence[str]) -> tuple[str, bool]: + """Given a list of option strings this joins them in the most appropriate + way and returns them in the form ``(formatted_string, + any_prefix_is_slash)`` where the second item in the tuple is a flag that + indicates if any of the option prefixes was a slash. + """ + rv = [] + any_prefix_is_slash = False + + for opt in options: + prefix = _split_opt(opt)[0] + + if prefix == "/": + any_prefix_is_slash = True + + rv.append((len(prefix), opt)) + + rv.sort(key=lambda x: x[0]) + return ", ".join(x[1] for x in rv), any_prefix_is_slash diff --git a/ocr/.venv/Lib/site-packages/click/globals.py b/ocr/.venv/Lib/site-packages/click/globals.py new file mode 100644 index 00000000..a2f91723 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/globals.py @@ -0,0 +1,67 @@ +from __future__ import annotations + +import typing as t +from threading import local + +if t.TYPE_CHECKING: + from .core import Context + +_local = local() + + +@t.overload +def get_current_context(silent: t.Literal[False] = False) -> Context: ... + + +@t.overload +def get_current_context(silent: bool = ...) -> Context | None: ... + + +def get_current_context(silent: bool = False) -> Context | None: + """Returns the current click context. This can be used as a way to + access the current context object from anywhere. This is a more implicit + alternative to the :func:`pass_context` decorator. This function is + primarily useful for helpers such as :func:`echo` which might be + interested in changing its behavior based on the current context. + + To push the current context, :meth:`Context.scope` can be used. + + .. versionadded:: 5.0 + + :param silent: if set to `True` the return value is `None` if no context + is available. The default behavior is to raise a + :exc:`RuntimeError`. + """ + try: + return t.cast("Context", _local.stack[-1]) + except (AttributeError, IndexError) as e: + if not silent: + raise RuntimeError("There is no active click context.") from e + + return None + + +def push_context(ctx: Context) -> None: + """Pushes a new context to the current stack.""" + _local.__dict__.setdefault("stack", []).append(ctx) + + +def pop_context() -> None: + """Removes the top level from the stack.""" + _local.stack.pop() + + +def resolve_color_default(color: bool | None = None) -> bool | None: + """Internal helper to get the default value of the color flag. If a + value is passed it's returned unchanged, otherwise it's looked up from + the current context. + """ + if color is not None: + return color + + ctx = get_current_context(silent=True) + + if ctx is not None: + return ctx.color + + return None diff --git a/ocr/.venv/Lib/site-packages/click/parser.py b/ocr/.venv/Lib/site-packages/click/parser.py new file mode 100644 index 00000000..1ea1f716 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/parser.py @@ -0,0 +1,532 @@ +""" +This module started out as largely a copy paste from the stdlib's +optparse module with the features removed that we do not need from +optparse because we implement them in Click on a higher level (for +instance type handling, help formatting and a lot more). + +The plan is to remove more and more from here over time. + +The reason this is a different module and not optparse from the stdlib +is that there are differences in 2.x and 3.x about the error messages +generated and optparse in the stdlib uses gettext for no good reason +and might cause us issues. + +Click uses parts of optparse written by Gregory P. Ward and maintained +by the Python Software Foundation. This is limited to code in parser.py. + +Copyright 2001-2006 Gregory P. Ward. All rights reserved. +Copyright 2002-2006 Python Software Foundation. All rights reserved. +""" + +# This code uses parts of optparse written by Gregory P. Ward and +# maintained by the Python Software Foundation. +# Copyright 2001-2006 Gregory P. Ward +# Copyright 2002-2006 Python Software Foundation +from __future__ import annotations + +import collections.abc as cabc +import typing as t +from collections import deque +from gettext import gettext as _ +from gettext import ngettext + +from ._utils import FLAG_NEEDS_VALUE +from ._utils import UNSET +from .exceptions import BadArgumentUsage +from .exceptions import BadOptionUsage +from .exceptions import NoSuchOption +from .exceptions import UsageError + +if t.TYPE_CHECKING: + from ._utils import T_FLAG_NEEDS_VALUE + from ._utils import T_UNSET + from .core import Argument as CoreArgument + from .core import Context + from .core import Option as CoreOption + from .core import Parameter as CoreParameter + +V = t.TypeVar("V") + + +def _unpack_args( + args: cabc.Sequence[str], nargs_spec: cabc.Sequence[int] +) -> tuple[cabc.Sequence[str | cabc.Sequence[str | None] | None], list[str]]: + """Given an iterable of arguments and an iterable of nargs specifications, + it returns a tuple with all the unpacked arguments at the first index + and all remaining arguments as the second. + + The nargs specification is the number of arguments that should be consumed + or `-1` to indicate that this position should eat up all the remainders. + + Missing items are filled with ``UNSET``. + """ + args = deque(args) + nargs_spec = deque(nargs_spec) + rv: list[str | tuple[str | T_UNSET, ...] | T_UNSET] = [] + spos: int | None = None + + def _fetch(c: deque[V]) -> V | T_UNSET: + try: + if spos is None: + return c.popleft() + else: + return c.pop() + except IndexError: + return UNSET + + while nargs_spec: + nargs = _fetch(nargs_spec) + + if nargs is None: + continue + + if nargs == 1: + rv.append(_fetch(args)) # type: ignore[arg-type] + elif nargs > 1: + x = [_fetch(args) for _ in range(nargs)] + + # If we're reversed, we're pulling in the arguments in reverse, + # so we need to turn them around. + if spos is not None: + x.reverse() + + rv.append(tuple(x)) + elif nargs < 0: + if spos is not None: + raise TypeError("Cannot have two nargs < 0") + + spos = len(rv) + rv.append(UNSET) + + # spos is the position of the wildcard (star). If it's not `None`, + # we fill it with the remainder. + if spos is not None: + rv[spos] = tuple(args) + args = [] + rv[spos + 1 :] = reversed(rv[spos + 1 :]) + + return tuple(rv), list(args) + + +def _split_opt(opt: str) -> tuple[str, str]: + first = opt[:1] + if first.isalnum(): + return "", opt + if opt[1:2] == first: + return opt[:2], opt[2:] + return first, opt[1:] + + +def _normalize_opt(opt: str, ctx: Context | None) -> str: + if ctx is None or ctx.token_normalize_func is None: + return opt + prefix, opt = _split_opt(opt) + return f"{prefix}{ctx.token_normalize_func(opt)}" + + +class _Option: + def __init__( + self, + obj: CoreOption, + opts: cabc.Sequence[str], + dest: str | None, + action: str | None = None, + nargs: int = 1, + const: t.Any | None = None, + ): + self._short_opts = [] + self._long_opts = [] + self.prefixes: set[str] = set() + + for opt in opts: + prefix, value = _split_opt(opt) + if not prefix: + raise ValueError(f"Invalid start character for option ({opt})") + self.prefixes.add(prefix[0]) + if len(prefix) == 1 and len(value) == 1: + self._short_opts.append(opt) + else: + self._long_opts.append(opt) + self.prefixes.add(prefix) + + if action is None: + action = "store" + + self.dest = dest + self.action = action + self.nargs = nargs + self.const = const + self.obj = obj + + @property + def takes_value(self) -> bool: + return self.action in ("store", "append") + + def process(self, value: t.Any, state: _ParsingState) -> None: + if self.action == "store": + state.opts[self.dest] = value # type: ignore + elif self.action == "store_const": + state.opts[self.dest] = self.const # type: ignore + elif self.action == "append": + state.opts.setdefault(self.dest, []).append(value) # type: ignore + elif self.action == "append_const": + state.opts.setdefault(self.dest, []).append(self.const) # type: ignore + elif self.action == "count": + state.opts[self.dest] = state.opts.get(self.dest, 0) + 1 # type: ignore + else: + raise ValueError(f"unknown action '{self.action}'") + state.order.append(self.obj) + + +class _Argument: + def __init__(self, obj: CoreArgument, dest: str | None, nargs: int = 1): + self.dest = dest + self.nargs = nargs + self.obj = obj + + def process( + self, + value: str | cabc.Sequence[str | None] | None | T_UNSET, + state: _ParsingState, + ) -> None: + if self.nargs > 1: + assert isinstance(value, cabc.Sequence) + holes = sum(1 for x in value if x is UNSET) + if holes == len(value): + value = UNSET + elif holes != 0: + raise BadArgumentUsage( + _("Argument {name!r} takes {nargs} values.").format( + name=self.dest, nargs=self.nargs + ) + ) + + # We failed to collect any argument value so we consider the argument as unset. + if value == (): + value = UNSET + + state.opts[self.dest] = value # type: ignore + state.order.append(self.obj) + + +class _ParsingState: + def __init__(self, rargs: list[str]) -> None: + self.opts: dict[str, t.Any] = {} + self.largs: list[str] = [] + self.rargs = rargs + self.order: list[CoreParameter] = [] + + +class _OptionParser: + """The option parser is an internal class that is ultimately used to + parse options and arguments. It's modelled after optparse and brings + a similar but vastly simplified API. It should generally not be used + directly as the high level Click classes wrap it for you. + + It's not nearly as extensible as optparse or argparse as it does not + implement features that are implemented on a higher level (such as + types or defaults). + + :param ctx: optionally the :class:`~click.Context` where this parser + should go with. + + .. deprecated:: 8.2 + Will be removed in Click 9.0. + """ + + def __init__(self, ctx: Context | None = None) -> None: + #: The :class:`~click.Context` for this parser. This might be + #: `None` for some advanced use cases. + self.ctx = ctx + #: This controls how the parser deals with interspersed arguments. + #: If this is set to `False`, the parser will stop on the first + #: non-option. Click uses this to implement nested subcommands + #: safely. + self.allow_interspersed_args: bool = True + #: This tells the parser how to deal with unknown options. By + #: default it will error out (which is sensible), but there is a + #: second mode where it will ignore it and continue processing + #: after shifting all the unknown options into the resulting args. + self.ignore_unknown_options: bool = False + + if ctx is not None: + self.allow_interspersed_args = ctx.allow_interspersed_args + self.ignore_unknown_options = ctx.ignore_unknown_options + + self._short_opt: dict[str, _Option] = {} + self._long_opt: dict[str, _Option] = {} + self._opt_prefixes = {"-", "--"} + self._args: list[_Argument] = [] + + def add_option( + self, + obj: CoreOption, + opts: cabc.Sequence[str], + dest: str | None, + action: str | None = None, + nargs: int = 1, + const: t.Any | None = None, + ) -> None: + """Adds a new option named `dest` to the parser. The destination + is not inferred (unlike with optparse) and needs to be explicitly + provided. Action can be any of ``store``, ``store_const``, + ``append``, ``append_const`` or ``count``. + + The `obj` can be used to identify the option in the order list + that is returned from the parser. + """ + opts = [_normalize_opt(opt, self.ctx) for opt in opts] + option = _Option(obj, opts, dest, action=action, nargs=nargs, const=const) + self._opt_prefixes.update(option.prefixes) + for opt in option._short_opts: + self._short_opt[opt] = option + for opt in option._long_opts: + self._long_opt[opt] = option + + def add_argument(self, obj: CoreArgument, dest: str | None, nargs: int = 1) -> None: + """Adds a positional argument named `dest` to the parser. + + The `obj` can be used to identify the option in the order list + that is returned from the parser. + """ + self._args.append(_Argument(obj, dest=dest, nargs=nargs)) + + def parse_args( + self, args: list[str] + ) -> tuple[dict[str, t.Any], list[str], list[CoreParameter]]: + """Parses positional arguments and returns ``(values, args, order)`` + for the parsed options and arguments as well as the leftover + arguments if there are any. The order is a list of objects as they + appear on the command line. If arguments appear multiple times they + will be memorized multiple times as well. + """ + state = _ParsingState(args) + try: + self._process_args_for_options(state) + self._process_args_for_args(state) + except UsageError: + if self.ctx is None or not self.ctx.resilient_parsing: + raise + return state.opts, state.largs, state.order + + def _process_args_for_args(self, state: _ParsingState) -> None: + pargs, args = _unpack_args( + state.largs + state.rargs, [x.nargs for x in self._args] + ) + + for idx, arg in enumerate(self._args): + arg.process(pargs[idx], state) + + state.largs = args + state.rargs = [] + + def _process_args_for_options(self, state: _ParsingState) -> None: + while state.rargs: + arg = state.rargs.pop(0) + arglen = len(arg) + # Double dashes always handled explicitly regardless of what + # prefixes are valid. + if arg == "--": + return + elif arg[:1] in self._opt_prefixes and arglen > 1: + self._process_opts(arg, state) + elif self.allow_interspersed_args: + state.largs.append(arg) + else: + state.rargs.insert(0, arg) + return + + # Say this is the original argument list: + # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)] + # ^ + # (we are about to process arg(i)). + # + # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of + # [arg0, ..., arg(i-1)] (any options and their arguments will have + # been removed from largs). + # + # The while loop will usually consume 1 or more arguments per pass. + # If it consumes 1 (eg. arg is an option that takes no arguments), + # then after _process_arg() is done the situation is: + # + # largs = subset of [arg0, ..., arg(i)] + # rargs = [arg(i+1), ..., arg(N-1)] + # + # If allow_interspersed_args is false, largs will always be + # *empty* -- still a subset of [arg0, ..., arg(i-1)], but + # not a very interesting subset! + + def _match_long_opt( + self, opt: str, explicit_value: str | None, state: _ParsingState + ) -> None: + if opt not in self._long_opt: + from difflib import get_close_matches + + possibilities = get_close_matches(opt, self._long_opt) + raise NoSuchOption(opt, possibilities=possibilities, ctx=self.ctx) + + option = self._long_opt[opt] + if option.takes_value: + # At this point it's safe to modify rargs by injecting the + # explicit value, because no exception is raised in this + # branch. This means that the inserted value will be fully + # consumed. + if explicit_value is not None: + state.rargs.insert(0, explicit_value) + + value = self._get_value_from_state(opt, option, state) + + elif explicit_value is not None: + raise BadOptionUsage( + opt, _("Option {name!r} does not take a value.").format(name=opt) + ) + + else: + value = UNSET + + option.process(value, state) + + def _match_short_opt(self, arg: str, state: _ParsingState) -> None: + stop = False + i = 1 + prefix = arg[0] + unknown_options = [] + + for ch in arg[1:]: + opt = _normalize_opt(f"{prefix}{ch}", self.ctx) + option = self._short_opt.get(opt) + i += 1 + + if not option: + if self.ignore_unknown_options: + unknown_options.append(ch) + continue + raise NoSuchOption(opt, ctx=self.ctx) + if option.takes_value: + # Any characters left in arg? Pretend they're the + # next arg, and stop consuming characters of arg. + if i < len(arg): + state.rargs.insert(0, arg[i:]) + stop = True + + value = self._get_value_from_state(opt, option, state) + + else: + value = UNSET + + option.process(value, state) + + if stop: + break + + # If we got any unknown options we recombine the string of the + # remaining options and re-attach the prefix, then report that + # to the state as new larg. This way there is basic combinatorics + # that can be achieved while still ignoring unknown arguments. + if self.ignore_unknown_options and unknown_options: + state.largs.append(f"{prefix}{''.join(unknown_options)}") + + def _get_value_from_state( + self, option_name: str, option: _Option, state: _ParsingState + ) -> str | cabc.Sequence[str] | T_FLAG_NEEDS_VALUE: + nargs = option.nargs + + value: str | cabc.Sequence[str] | T_FLAG_NEEDS_VALUE + + if len(state.rargs) < nargs: + if option.obj._flag_needs_value: + # Option allows omitting the value. + value = FLAG_NEEDS_VALUE + else: + raise BadOptionUsage( + option_name, + ngettext( + "Option {name!r} requires an argument.", + "Option {name!r} requires {nargs} arguments.", + nargs, + ).format(name=option_name, nargs=nargs), + ) + elif nargs == 1: + next_rarg = state.rargs[0] + + if ( + option.obj._flag_needs_value + and isinstance(next_rarg, str) + and next_rarg[:1] in self._opt_prefixes + and len(next_rarg) > 1 + ): + # The next arg looks like the start of an option, don't + # use it as the value if omitting the value is allowed. + value = FLAG_NEEDS_VALUE + else: + value = state.rargs.pop(0) + else: + value = tuple(state.rargs[:nargs]) + del state.rargs[:nargs] + + return value + + def _process_opts(self, arg: str, state: _ParsingState) -> None: + explicit_value = None + # Long option handling happens in two parts. The first part is + # supporting explicitly attached values. In any case, we will try + # to long match the option first. + if "=" in arg: + long_opt, explicit_value = arg.split("=", 1) + else: + long_opt = arg + norm_long_opt = _normalize_opt(long_opt, self.ctx) + + # At this point we will match the (assumed) long option through + # the long option matching code. Note that this allows options + # like "-foo" to be matched as long options. + try: + self._match_long_opt(norm_long_opt, explicit_value, state) + except NoSuchOption: + # At this point the long option matching failed, and we need + # to try with short options. However there is a special rule + # which says, that if we have a two character options prefix + # (applies to "--foo" for instance), we do not dispatch to the + # short option code and will instead raise the no option + # error. + if arg[:2] not in self._opt_prefixes: + self._match_short_opt(arg, state) + return + + if not self.ignore_unknown_options: + raise + + state.largs.append(arg) + + +def __getattr__(name: str) -> object: + import warnings + + if name in { + "OptionParser", + "Argument", + "Option", + "split_opt", + "normalize_opt", + "ParsingState", + }: + warnings.warn( + f"'parser.{name}' is deprecated and will be removed in Click 9.0." + " The old parser is available in 'optparse'.", + DeprecationWarning, + stacklevel=2, + ) + return globals()[f"_{name}"] + + if name == "split_arg_string": + from .shell_completion import split_arg_string + + warnings.warn( + "Importing 'parser.split_arg_string' is deprecated, it will only be" + " available in 'shell_completion' in Click 9.0.", + DeprecationWarning, + stacklevel=2, + ) + return split_arg_string + + raise AttributeError(name) diff --git a/ocr/.venv/Lib/site-packages/click/py.typed b/ocr/.venv/Lib/site-packages/click/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/click/shell_completion.py b/ocr/.venv/Lib/site-packages/click/shell_completion.py new file mode 100644 index 00000000..8f1564c4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/shell_completion.py @@ -0,0 +1,667 @@ +from __future__ import annotations + +import collections.abc as cabc +import os +import re +import typing as t +from gettext import gettext as _ + +from .core import Argument +from .core import Command +from .core import Context +from .core import Group +from .core import Option +from .core import Parameter +from .core import ParameterSource +from .utils import echo + + +def shell_complete( + cli: Command, + ctx_args: cabc.MutableMapping[str, t.Any], + prog_name: str, + complete_var: str, + instruction: str, +) -> int: + """Perform shell completion for the given CLI program. + + :param cli: Command being called. + :param ctx_args: Extra arguments to pass to + ``cli.make_context``. + :param prog_name: Name of the executable in the shell. + :param complete_var: Name of the environment variable that holds + the completion instruction. + :param instruction: Value of ``complete_var`` with the completion + instruction and shell, in the form ``instruction_shell``. + :return: Status code to exit with. + """ + shell, _, instruction = instruction.partition("_") + comp_cls = get_completion_class(shell) + + if comp_cls is None: + return 1 + + comp = comp_cls(cli, ctx_args, prog_name, complete_var) + + if instruction == "source": + echo(comp.source()) + return 0 + + if instruction == "complete": + echo(comp.complete()) + return 0 + + return 1 + + +class CompletionItem: + """Represents a completion value and metadata about the value. The + default metadata is ``type`` to indicate special shell handling, + and ``help`` if a shell supports showing a help string next to the + value. + + Arbitrary parameters can be passed when creating the object, and + accessed using ``item.attr``. If an attribute wasn't passed, + accessing it returns ``None``. + + :param value: The completion suggestion. + :param type: Tells the shell script to provide special completion + support for the type. Click uses ``"dir"`` and ``"file"``. + :param help: String shown next to the value if supported. + :param kwargs: Arbitrary metadata. The built-in implementations + don't use this, but custom type completions paired with custom + shell support could use it. + """ + + __slots__ = ("value", "type", "help", "_info") + + def __init__( + self, + value: t.Any, + type: str = "plain", + help: str | None = None, + **kwargs: t.Any, + ) -> None: + self.value: t.Any = value + self.type: str = type + self.help: str | None = help + self._info = kwargs + + def __getattr__(self, name: str) -> t.Any: + return self._info.get(name) + + +# Only Bash >= 4.4 has the nosort option. +_SOURCE_BASH = """\ +%(complete_func)s() { + local IFS=$'\\n' + local response + + response=$(env COMP_WORDS="${COMP_WORDS[*]}" COMP_CWORD=$COMP_CWORD \ +%(complete_var)s=bash_complete $1) + + for completion in $response; do + IFS=',' read type value <<< "$completion" + + if [[ $type == 'dir' ]]; then + COMPREPLY=() + compopt -o dirnames + elif [[ $type == 'file' ]]; then + COMPREPLY=() + compopt -o default + elif [[ $type == 'plain' ]]; then + COMPREPLY+=($value) + fi + done + + return 0 +} + +%(complete_func)s_setup() { + complete -o nosort -F %(complete_func)s %(prog_name)s +} + +%(complete_func)s_setup; +""" + +# See ZshComplete.format_completion below, and issue #2703, before +# changing this script. +# +# (TL;DR: _describe is picky about the format, but this Zsh script snippet +# is already widely deployed. So freeze this script, and use clever-ish +# handling of colons in ZshComplet.format_completion.) +_SOURCE_ZSH = """\ +#compdef %(prog_name)s + +%(complete_func)s() { + local -a completions + local -a completions_with_descriptions + local -a response + (( ! $+commands[%(prog_name)s] )) && return 1 + + response=("${(@f)$(env COMP_WORDS="${words[*]}" COMP_CWORD=$((CURRENT-1)) \ +%(complete_var)s=zsh_complete %(prog_name)s)}") + + for type key descr in ${response}; do + if [[ "$type" == "plain" ]]; then + if [[ "$descr" == "_" ]]; then + completions+=("$key") + else + completions_with_descriptions+=("$key":"$descr") + fi + elif [[ "$type" == "dir" ]]; then + _path_files -/ + elif [[ "$type" == "file" ]]; then + _path_files -f + fi + done + + if [ -n "$completions_with_descriptions" ]; then + _describe -V unsorted completions_with_descriptions -U + fi + + if [ -n "$completions" ]; then + compadd -U -V unsorted -a completions + fi +} + +if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + %(complete_func)s "$@" +else + # eval/source/. command, register function for later + compdef %(complete_func)s %(prog_name)s +fi +""" + +_SOURCE_FISH = """\ +function %(complete_func)s; + set -l response (env %(complete_var)s=fish_complete COMP_WORDS=(commandline -cp) \ +COMP_CWORD=(commandline -t) %(prog_name)s); + + for completion in $response; + set -l metadata (string split "," $completion); + + if test $metadata[1] = "dir"; + __fish_complete_directories $metadata[2]; + else if test $metadata[1] = "file"; + __fish_complete_path $metadata[2]; + else if test $metadata[1] = "plain"; + echo $metadata[2]; + end; + end; +end; + +complete --no-files --command %(prog_name)s --arguments \ +"(%(complete_func)s)"; +""" + + +class ShellComplete: + """Base class for providing shell completion support. A subclass for + a given shell will override attributes and methods to implement the + completion instructions (``source`` and ``complete``). + + :param cli: Command being called. + :param prog_name: Name of the executable in the shell. + :param complete_var: Name of the environment variable that holds + the completion instruction. + + .. versionadded:: 8.0 + """ + + name: t.ClassVar[str] + """Name to register the shell as with :func:`add_completion_class`. + This is used in completion instructions (``{name}_source`` and + ``{name}_complete``). + """ + + source_template: t.ClassVar[str] + """Completion script template formatted by :meth:`source`. This must + be provided by subclasses. + """ + + def __init__( + self, + cli: Command, + ctx_args: cabc.MutableMapping[str, t.Any], + prog_name: str, + complete_var: str, + ) -> None: + self.cli = cli + self.ctx_args = ctx_args + self.prog_name = prog_name + self.complete_var = complete_var + + @property + def func_name(self) -> str: + """The name of the shell function defined by the completion + script. + """ + safe_name = re.sub(r"\W*", "", self.prog_name.replace("-", "_"), flags=re.ASCII) + return f"_{safe_name}_completion" + + def source_vars(self) -> dict[str, t.Any]: + """Vars for formatting :attr:`source_template`. + + By default this provides ``complete_func``, ``complete_var``, + and ``prog_name``. + """ + return { + "complete_func": self.func_name, + "complete_var": self.complete_var, + "prog_name": self.prog_name, + } + + def source(self) -> str: + """Produce the shell script that defines the completion + function. By default this ``%``-style formats + :attr:`source_template` with the dict returned by + :meth:`source_vars`. + """ + return self.source_template % self.source_vars() + + def get_completion_args(self) -> tuple[list[str], str]: + """Use the env vars defined by the shell script to return a + tuple of ``args, incomplete``. This must be implemented by + subclasses. + """ + raise NotImplementedError + + def get_completions(self, args: list[str], incomplete: str) -> list[CompletionItem]: + """Determine the context and last complete command or parameter + from the complete args. Call that object's ``shell_complete`` + method to get the completions for the incomplete value. + + :param args: List of complete args before the incomplete value. + :param incomplete: Value being completed. May be empty. + """ + ctx = _resolve_context(self.cli, self.ctx_args, self.prog_name, args) + obj, incomplete = _resolve_incomplete(ctx, args, incomplete) + return obj.shell_complete(ctx, incomplete) + + def format_completion(self, item: CompletionItem) -> str: + """Format a completion item into the form recognized by the + shell script. This must be implemented by subclasses. + + :param item: Completion item to format. + """ + raise NotImplementedError + + def complete(self) -> str: + """Produce the completion data to send back to the shell. + + By default this calls :meth:`get_completion_args`, gets the + completions, then calls :meth:`format_completion` for each + completion. + """ + args, incomplete = self.get_completion_args() + completions = self.get_completions(args, incomplete) + out = [self.format_completion(item) for item in completions] + return "\n".join(out) + + +class BashComplete(ShellComplete): + """Shell completion for Bash.""" + + name = "bash" + source_template = _SOURCE_BASH + + @staticmethod + def _check_version() -> None: + import shutil + import subprocess + + bash_exe = shutil.which("bash") + + if bash_exe is None: + match = None + else: + output = subprocess.run( + [bash_exe, "--norc", "-c", 'echo "${BASH_VERSION}"'], + stdout=subprocess.PIPE, + ) + match = re.search(r"^(\d+)\.(\d+)\.\d+", output.stdout.decode()) + + if match is not None: + major, minor = match.groups() + + if major < "4" or major == "4" and minor < "4": + echo( + _( + "Shell completion is not supported for Bash" + " versions older than 4.4." + ), + err=True, + ) + else: + echo( + _("Couldn't detect Bash version, shell completion is not supported."), + err=True, + ) + + def source(self) -> str: + self._check_version() + return super().source() + + def get_completion_args(self) -> tuple[list[str], str]: + cwords = split_arg_string(os.environ["COMP_WORDS"]) + cword = int(os.environ["COMP_CWORD"]) + args = cwords[1:cword] + + try: + incomplete = cwords[cword] + except IndexError: + incomplete = "" + + return args, incomplete + + def format_completion(self, item: CompletionItem) -> str: + return f"{item.type},{item.value}" + + +class ZshComplete(ShellComplete): + """Shell completion for Zsh.""" + + name = "zsh" + source_template = _SOURCE_ZSH + + def get_completion_args(self) -> tuple[list[str], str]: + cwords = split_arg_string(os.environ["COMP_WORDS"]) + cword = int(os.environ["COMP_CWORD"]) + args = cwords[1:cword] + + try: + incomplete = cwords[cword] + except IndexError: + incomplete = "" + + return args, incomplete + + def format_completion(self, item: CompletionItem) -> str: + help_ = item.help or "_" + # The zsh completion script uses `_describe` on items with help + # texts (which splits the item help from the item value at the + # first unescaped colon) and `compadd` on items without help + # text (which uses the item value as-is and does not support + # colon escaping). So escape colons in the item value if and + # only if the item help is not the sentinel "_" value, as used + # by the completion script. + # + # (The zsh completion script is potentially widely deployed, and + # thus harder to fix than this method.) + # + # See issue #1812 and issue #2703 for further context. + value = item.value.replace(":", r"\:") if help_ != "_" else item.value + return f"{item.type}\n{value}\n{help_}" + + +class FishComplete(ShellComplete): + """Shell completion for Fish.""" + + name = "fish" + source_template = _SOURCE_FISH + + def get_completion_args(self) -> tuple[list[str], str]: + cwords = split_arg_string(os.environ["COMP_WORDS"]) + incomplete = os.environ["COMP_CWORD"] + if incomplete: + incomplete = split_arg_string(incomplete)[0] + args = cwords[1:] + + # Fish stores the partial word in both COMP_WORDS and + # COMP_CWORD, remove it from complete args. + if incomplete and args and args[-1] == incomplete: + args.pop() + + return args, incomplete + + def format_completion(self, item: CompletionItem) -> str: + if item.help: + return f"{item.type},{item.value}\t{item.help}" + + return f"{item.type},{item.value}" + + +ShellCompleteType = t.TypeVar("ShellCompleteType", bound="type[ShellComplete]") + + +_available_shells: dict[str, type[ShellComplete]] = { + "bash": BashComplete, + "fish": FishComplete, + "zsh": ZshComplete, +} + + +def add_completion_class( + cls: ShellCompleteType, name: str | None = None +) -> ShellCompleteType: + """Register a :class:`ShellComplete` subclass under the given name. + The name will be provided by the completion instruction environment + variable during completion. + + :param cls: The completion class that will handle completion for the + shell. + :param name: Name to register the class under. Defaults to the + class's ``name`` attribute. + """ + if name is None: + name = cls.name + + _available_shells[name] = cls + + return cls + + +def get_completion_class(shell: str) -> type[ShellComplete] | None: + """Look up a registered :class:`ShellComplete` subclass by the name + provided by the completion instruction environment variable. If the + name isn't registered, returns ``None``. + + :param shell: Name the class is registered under. + """ + return _available_shells.get(shell) + + +def split_arg_string(string: str) -> list[str]: + """Split an argument string as with :func:`shlex.split`, but don't + fail if the string is incomplete. Ignores a missing closing quote or + incomplete escape sequence and uses the partial token as-is. + + .. code-block:: python + + split_arg_string("example 'my file") + ["example", "my file"] + + split_arg_string("example my\\") + ["example", "my"] + + :param string: String to split. + + .. versionchanged:: 8.2 + Moved to ``shell_completion`` from ``parser``. + """ + import shlex + + lex = shlex.shlex(string, posix=True) + lex.whitespace_split = True + lex.commenters = "" + out = [] + + try: + for token in lex: + out.append(token) + except ValueError: + # Raised when end-of-string is reached in an invalid state. Use + # the partial token as-is. The quote or escape character is in + # lex.state, not lex.token. + out.append(lex.token) + + return out + + +def _is_incomplete_argument(ctx: Context, param: Parameter) -> bool: + """Determine if the given parameter is an argument that can still + accept values. + + :param ctx: Invocation context for the command represented by the + parsed complete args. + :param param: Argument object being checked. + """ + if not isinstance(param, Argument): + return False + + assert param.name is not None + # Will be None if expose_value is False. + value = ctx.params.get(param.name) + return ( + param.nargs == -1 + or ctx.get_parameter_source(param.name) is not ParameterSource.COMMANDLINE + or ( + param.nargs > 1 + and isinstance(value, (tuple, list)) + and len(value) < param.nargs + ) + ) + + +def _start_of_option(ctx: Context, value: str) -> bool: + """Check if the value looks like the start of an option.""" + if not value: + return False + + c = value[0] + return c in ctx._opt_prefixes + + +def _is_incomplete_option(ctx: Context, args: list[str], param: Parameter) -> bool: + """Determine if the given parameter is an option that needs a value. + + :param args: List of complete args before the incomplete value. + :param param: Option object being checked. + """ + if not isinstance(param, Option): + return False + + if param.is_flag or param.count: + return False + + last_option = None + + for index, arg in enumerate(reversed(args)): + if index + 1 > param.nargs: + break + + if _start_of_option(ctx, arg): + last_option = arg + break + + return last_option is not None and last_option in param.opts + + +def _resolve_context( + cli: Command, + ctx_args: cabc.MutableMapping[str, t.Any], + prog_name: str, + args: list[str], +) -> Context: + """Produce the context hierarchy starting with the command and + traversing the complete arguments. This only follows the commands, + it doesn't trigger input prompts or callbacks. + + :param cli: Command being called. + :param prog_name: Name of the executable in the shell. + :param args: List of complete args before the incomplete value. + """ + ctx_args["resilient_parsing"] = True + with cli.make_context(prog_name, args.copy(), **ctx_args) as ctx: + args = ctx._protected_args + ctx.args + + while args: + command = ctx.command + + if isinstance(command, Group): + if not command.chain: + name, cmd, args = command.resolve_command(ctx, args) + + if cmd is None: + return ctx + + with cmd.make_context( + name, args, parent=ctx, resilient_parsing=True + ) as sub_ctx: + ctx = sub_ctx + args = ctx._protected_args + ctx.args + else: + sub_ctx = ctx + + while args: + name, cmd, args = command.resolve_command(ctx, args) + + if cmd is None: + return ctx + + with cmd.make_context( + name, + args, + parent=ctx, + allow_extra_args=True, + allow_interspersed_args=False, + resilient_parsing=True, + ) as sub_sub_ctx: + sub_ctx = sub_sub_ctx + args = sub_ctx.args + + ctx = sub_ctx + args = [*sub_ctx._protected_args, *sub_ctx.args] + else: + break + + return ctx + + +def _resolve_incomplete( + ctx: Context, args: list[str], incomplete: str +) -> tuple[Command | Parameter, str]: + """Find the Click object that will handle the completion of the + incomplete value. Return the object and the incomplete value. + + :param ctx: Invocation context for the command represented by + the parsed complete args. + :param args: List of complete args before the incomplete value. + :param incomplete: Value being completed. May be empty. + """ + # Different shells treat an "=" between a long option name and + # value differently. Might keep the value joined, return the "=" + # as a separate item, or return the split name and value. Always + # split and discard the "=" to make completion easier. + if incomplete == "=": + incomplete = "" + elif "=" in incomplete and _start_of_option(ctx, incomplete): + name, _, incomplete = incomplete.partition("=") + args.append(name) + + # The "--" marker tells Click to stop treating values as options + # even if they start with the option character. If it hasn't been + # given and the incomplete arg looks like an option, the current + # command will provide option name completions. + if "--" not in args and _start_of_option(ctx, incomplete): + return ctx.command, incomplete + + params = ctx.command.get_params(ctx) + + # If the last complete arg is an option name with an incomplete + # value, the option will provide value completions. + for param in params: + if _is_incomplete_option(ctx, args, param): + return param, incomplete + + # It's not an option name or value. The first argument without a + # parsed value will provide value completions. + for param in params: + if _is_incomplete_argument(ctx, param): + return param, incomplete + + # There were no unparsed arguments, the command may be a group that + # will provide command name completions. + return ctx.command, incomplete diff --git a/ocr/.venv/Lib/site-packages/click/termui.py b/ocr/.venv/Lib/site-packages/click/termui.py new file mode 100644 index 00000000..dcbb2221 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/termui.py @@ -0,0 +1,877 @@ +from __future__ import annotations + +import collections.abc as cabc +import inspect +import io +import itertools +import sys +import typing as t +from contextlib import AbstractContextManager +from gettext import gettext as _ + +from ._compat import isatty +from ._compat import strip_ansi +from .exceptions import Abort +from .exceptions import UsageError +from .globals import resolve_color_default +from .types import Choice +from .types import convert_type +from .types import ParamType +from .utils import echo +from .utils import LazyFile + +if t.TYPE_CHECKING: + from ._termui_impl import ProgressBar + +V = t.TypeVar("V") + +# The prompt functions to use. The doc tools currently override these +# functions to customize how they work. +visible_prompt_func: t.Callable[[str], str] = input + +_ansi_colors = { + "black": 30, + "red": 31, + "green": 32, + "yellow": 33, + "blue": 34, + "magenta": 35, + "cyan": 36, + "white": 37, + "reset": 39, + "bright_black": 90, + "bright_red": 91, + "bright_green": 92, + "bright_yellow": 93, + "bright_blue": 94, + "bright_magenta": 95, + "bright_cyan": 96, + "bright_white": 97, +} +_ansi_reset_all = "\033[0m" + + +def hidden_prompt_func(prompt: str) -> str: + import getpass + + return getpass.getpass(prompt) + + +def _build_prompt( + text: str, + suffix: str, + show_default: bool = False, + default: t.Any | None = None, + show_choices: bool = True, + type: ParamType | None = None, +) -> str: + prompt = text + if type is not None and show_choices and isinstance(type, Choice): + prompt += f" ({', '.join(map(str, type.choices))})" + if default is not None and show_default: + prompt = f"{prompt} [{_format_default(default)}]" + return f"{prompt}{suffix}" + + +def _format_default(default: t.Any) -> t.Any: + if isinstance(default, (io.IOBase, LazyFile)) and hasattr(default, "name"): + return default.name + + return default + + +def prompt( + text: str, + default: t.Any | None = None, + hide_input: bool = False, + confirmation_prompt: bool | str = False, + type: ParamType | t.Any | None = None, + value_proc: t.Callable[[str], t.Any] | None = None, + prompt_suffix: str = ": ", + show_default: bool = True, + err: bool = False, + show_choices: bool = True, +) -> t.Any: + """Prompts a user for input. This is a convenience function that can + be used to prompt a user for input later. + + If the user aborts the input by sending an interrupt signal, this + function will catch it and raise a :exc:`Abort` exception. + + :param text: the text to show for the prompt. + :param default: the default value to use if no input happens. If this + is not given it will prompt until it's aborted. + :param hide_input: if this is set to true then the input value will + be hidden. + :param confirmation_prompt: Prompt a second time to confirm the + value. Can be set to a string instead of ``True`` to customize + the message. + :param type: the type to use to check the value against. + :param value_proc: if this parameter is provided it's a function that + is invoked instead of the type conversion to + convert a value. + :param prompt_suffix: a suffix that should be added to the prompt. + :param show_default: shows or hides the default value in the prompt. + :param err: if set to true the file defaults to ``stderr`` instead of + ``stdout``, the same as with echo. + :param show_choices: Show or hide choices if the passed type is a Choice. + For example if type is a Choice of either day or week, + show_choices is true and text is "Group by" then the + prompt will be "Group by (day, week): ". + + .. versionadded:: 8.0 + ``confirmation_prompt`` can be a custom string. + + .. versionadded:: 7.0 + Added the ``show_choices`` parameter. + + .. versionadded:: 6.0 + Added unicode support for cmd.exe on Windows. + + .. versionadded:: 4.0 + Added the `err` parameter. + + """ + + def prompt_func(text: str) -> str: + f = hidden_prompt_func if hide_input else visible_prompt_func + try: + # Write the prompt separately so that we get nice + # coloring through colorama on Windows + echo(text.rstrip(" "), nl=False, err=err) + # Echo a space to stdout to work around an issue where + # readline causes backspace to clear the whole line. + return f(" ") + except (KeyboardInterrupt, EOFError): + # getpass doesn't print a newline if the user aborts input with ^C. + # Allegedly this behavior is inherited from getpass(3). + # A doc bug has been filed at https://bugs.python.org/issue24711 + if hide_input: + echo(None, err=err) + raise Abort() from None + + if value_proc is None: + value_proc = convert_type(type, default) + + prompt = _build_prompt( + text, prompt_suffix, show_default, default, show_choices, type + ) + + if confirmation_prompt: + if confirmation_prompt is True: + confirmation_prompt = _("Repeat for confirmation") + + confirmation_prompt = _build_prompt(confirmation_prompt, prompt_suffix) + + while True: + while True: + value = prompt_func(prompt) + if value: + break + elif default is not None: + value = default + break + try: + result = value_proc(value) + except UsageError as e: + if hide_input: + echo(_("Error: The value you entered was invalid."), err=err) + else: + echo(_("Error: {e.message}").format(e=e), err=err) + continue + if not confirmation_prompt: + return result + while True: + value2 = prompt_func(confirmation_prompt) + is_empty = not value and not value2 + if value2 or is_empty: + break + if value == value2: + return result + echo(_("Error: The two entered values do not match."), err=err) + + +def confirm( + text: str, + default: bool | None = False, + abort: bool = False, + prompt_suffix: str = ": ", + show_default: bool = True, + err: bool = False, +) -> bool: + """Prompts for confirmation (yes/no question). + + If the user aborts the input by sending a interrupt signal this + function will catch it and raise a :exc:`Abort` exception. + + :param text: the question to ask. + :param default: The default value to use when no input is given. If + ``None``, repeat until input is given. + :param abort: if this is set to `True` a negative answer aborts the + exception by raising :exc:`Abort`. + :param prompt_suffix: a suffix that should be added to the prompt. + :param show_default: shows or hides the default value in the prompt. + :param err: if set to true the file defaults to ``stderr`` instead of + ``stdout``, the same as with echo. + + .. versionchanged:: 8.0 + Repeat until input is given if ``default`` is ``None``. + + .. versionadded:: 4.0 + Added the ``err`` parameter. + """ + prompt = _build_prompt( + text, + prompt_suffix, + show_default, + "y/n" if default is None else ("Y/n" if default else "y/N"), + ) + + while True: + try: + # Write the prompt separately so that we get nice + # coloring through colorama on Windows + echo(prompt.rstrip(" "), nl=False, err=err) + # Echo a space to stdout to work around an issue where + # readline causes backspace to clear the whole line. + value = visible_prompt_func(" ").lower().strip() + except (KeyboardInterrupt, EOFError): + raise Abort() from None + if value in ("y", "yes"): + rv = True + elif value in ("n", "no"): + rv = False + elif default is not None and value == "": + rv = default + else: + echo(_("Error: invalid input"), err=err) + continue + break + if abort and not rv: + raise Abort() + return rv + + +def echo_via_pager( + text_or_generator: cabc.Iterable[str] | t.Callable[[], cabc.Iterable[str]] | str, + color: bool | None = None, +) -> None: + """This function takes a text and shows it via an environment specific + pager on stdout. + + .. versionchanged:: 3.0 + Added the `color` flag. + + :param text_or_generator: the text to page, or alternatively, a + generator emitting the text to page. + :param color: controls if the pager supports ANSI colors or not. The + default is autodetection. + """ + color = resolve_color_default(color) + + if inspect.isgeneratorfunction(text_or_generator): + i = t.cast("t.Callable[[], cabc.Iterable[str]]", text_or_generator)() + elif isinstance(text_or_generator, str): + i = [text_or_generator] + else: + i = iter(t.cast("cabc.Iterable[str]", text_or_generator)) + + # convert every element of i to a text type if necessary + text_generator = (el if isinstance(el, str) else str(el) for el in i) + + from ._termui_impl import pager + + return pager(itertools.chain(text_generator, "\n"), color) + + +@t.overload +def progressbar( + *, + length: int, + label: str | None = None, + hidden: bool = False, + show_eta: bool = True, + show_percent: bool | None = None, + show_pos: bool = False, + fill_char: str = "#", + empty_char: str = "-", + bar_template: str = "%(label)s [%(bar)s] %(info)s", + info_sep: str = " ", + width: int = 36, + file: t.TextIO | None = None, + color: bool | None = None, + update_min_steps: int = 1, +) -> ProgressBar[int]: ... + + +@t.overload +def progressbar( + iterable: cabc.Iterable[V] | None = None, + length: int | None = None, + label: str | None = None, + hidden: bool = False, + show_eta: bool = True, + show_percent: bool | None = None, + show_pos: bool = False, + item_show_func: t.Callable[[V | None], str | None] | None = None, + fill_char: str = "#", + empty_char: str = "-", + bar_template: str = "%(label)s [%(bar)s] %(info)s", + info_sep: str = " ", + width: int = 36, + file: t.TextIO | None = None, + color: bool | None = None, + update_min_steps: int = 1, +) -> ProgressBar[V]: ... + + +def progressbar( + iterable: cabc.Iterable[V] | None = None, + length: int | None = None, + label: str | None = None, + hidden: bool = False, + show_eta: bool = True, + show_percent: bool | None = None, + show_pos: bool = False, + item_show_func: t.Callable[[V | None], str | None] | None = None, + fill_char: str = "#", + empty_char: str = "-", + bar_template: str = "%(label)s [%(bar)s] %(info)s", + info_sep: str = " ", + width: int = 36, + file: t.TextIO | None = None, + color: bool | None = None, + update_min_steps: int = 1, +) -> ProgressBar[V]: + """This function creates an iterable context manager that can be used + to iterate over something while showing a progress bar. It will + either iterate over the `iterable` or `length` items (that are counted + up). While iteration happens, this function will print a rendered + progress bar to the given `file` (defaults to stdout) and will attempt + to calculate remaining time and more. By default, this progress bar + will not be rendered if the file is not a terminal. + + The context manager creates the progress bar. When the context + manager is entered the progress bar is already created. With every + iteration over the progress bar, the iterable passed to the bar is + advanced and the bar is updated. When the context manager exits, + a newline is printed and the progress bar is finalized on screen. + + Note: The progress bar is currently designed for use cases where the + total progress can be expected to take at least several seconds. + Because of this, the ProgressBar class object won't display + progress that is considered too fast, and progress where the time + between steps is less than a second. + + No printing must happen or the progress bar will be unintentionally + destroyed. + + Example usage:: + + with progressbar(items) as bar: + for item in bar: + do_something_with(item) + + Alternatively, if no iterable is specified, one can manually update the + progress bar through the `update()` method instead of directly + iterating over the progress bar. The update method accepts the number + of steps to increment the bar with:: + + with progressbar(length=chunks.total_bytes) as bar: + for chunk in chunks: + process_chunk(chunk) + bar.update(chunks.bytes) + + The ``update()`` method also takes an optional value specifying the + ``current_item`` at the new position. This is useful when used + together with ``item_show_func`` to customize the output for each + manual step:: + + with click.progressbar( + length=total_size, + label='Unzipping archive', + item_show_func=lambda a: a.filename + ) as bar: + for archive in zip_file: + archive.extract() + bar.update(archive.size, archive) + + :param iterable: an iterable to iterate over. If not provided the length + is required. + :param length: the number of items to iterate over. By default the + progressbar will attempt to ask the iterator about its + length, which might or might not work. If an iterable is + also provided this parameter can be used to override the + length. If an iterable is not provided the progress bar + will iterate over a range of that length. + :param label: the label to show next to the progress bar. + :param hidden: hide the progressbar. Defaults to ``False``. When no tty is + detected, it will only print the progressbar label. Setting this to + ``False`` also disables that. + :param show_eta: enables or disables the estimated time display. This is + automatically disabled if the length cannot be + determined. + :param show_percent: enables or disables the percentage display. The + default is `True` if the iterable has a length or + `False` if not. + :param show_pos: enables or disables the absolute position display. The + default is `False`. + :param item_show_func: A function called with the current item which + can return a string to show next to the progress bar. If the + function returns ``None`` nothing is shown. The current item can + be ``None``, such as when entering and exiting the bar. + :param fill_char: the character to use to show the filled part of the + progress bar. + :param empty_char: the character to use to show the non-filled part of + the progress bar. + :param bar_template: the format string to use as template for the bar. + The parameters in it are ``label`` for the label, + ``bar`` for the progress bar and ``info`` for the + info section. + :param info_sep: the separator between multiple info items (eta etc.) + :param width: the width of the progress bar in characters, 0 means full + terminal width + :param file: The file to write to. If this is not a terminal then + only the label is printed. + :param color: controls if the terminal supports ANSI colors or not. The + default is autodetection. This is only needed if ANSI + codes are included anywhere in the progress bar output + which is not the case by default. + :param update_min_steps: Render only when this many updates have + completed. This allows tuning for very fast iterators. + + .. versionadded:: 8.2 + The ``hidden`` argument. + + .. versionchanged:: 8.0 + Output is shown even if execution time is less than 0.5 seconds. + + .. versionchanged:: 8.0 + ``item_show_func`` shows the current item, not the previous one. + + .. versionchanged:: 8.0 + Labels are echoed if the output is not a TTY. Reverts a change + in 7.0 that removed all output. + + .. versionadded:: 8.0 + The ``update_min_steps`` parameter. + + .. versionadded:: 4.0 + The ``color`` parameter and ``update`` method. + + .. versionadded:: 2.0 + """ + from ._termui_impl import ProgressBar + + color = resolve_color_default(color) + return ProgressBar( + iterable=iterable, + length=length, + hidden=hidden, + show_eta=show_eta, + show_percent=show_percent, + show_pos=show_pos, + item_show_func=item_show_func, + fill_char=fill_char, + empty_char=empty_char, + bar_template=bar_template, + info_sep=info_sep, + file=file, + label=label, + width=width, + color=color, + update_min_steps=update_min_steps, + ) + + +def clear() -> None: + """Clears the terminal screen. This will have the effect of clearing + the whole visible space of the terminal and moving the cursor to the + top left. This does not do anything if not connected to a terminal. + + .. versionadded:: 2.0 + """ + if not isatty(sys.stdout): + return + + # ANSI escape \033[2J clears the screen, \033[1;1H moves the cursor + echo("\033[2J\033[1;1H", nl=False) + + +def _interpret_color(color: int | tuple[int, int, int] | str, offset: int = 0) -> str: + if isinstance(color, int): + return f"{38 + offset};5;{color:d}" + + if isinstance(color, (tuple, list)): + r, g, b = color + return f"{38 + offset};2;{r:d};{g:d};{b:d}" + + return str(_ansi_colors[color] + offset) + + +def style( + text: t.Any, + fg: int | tuple[int, int, int] | str | None = None, + bg: int | tuple[int, int, int] | str | None = None, + bold: bool | None = None, + dim: bool | None = None, + underline: bool | None = None, + overline: bool | None = None, + italic: bool | None = None, + blink: bool | None = None, + reverse: bool | None = None, + strikethrough: bool | None = None, + reset: bool = True, +) -> str: + """Styles a text with ANSI styles and returns the new string. By + default the styling is self contained which means that at the end + of the string a reset code is issued. This can be prevented by + passing ``reset=False``. + + Examples:: + + click.echo(click.style('Hello World!', fg='green')) + click.echo(click.style('ATTENTION!', blink=True)) + click.echo(click.style('Some things', reverse=True, fg='cyan')) + click.echo(click.style('More colors', fg=(255, 12, 128), bg=117)) + + Supported color names: + + * ``black`` (might be a gray) + * ``red`` + * ``green`` + * ``yellow`` (might be an orange) + * ``blue`` + * ``magenta`` + * ``cyan`` + * ``white`` (might be light gray) + * ``bright_black`` + * ``bright_red`` + * ``bright_green`` + * ``bright_yellow`` + * ``bright_blue`` + * ``bright_magenta`` + * ``bright_cyan`` + * ``bright_white`` + * ``reset`` (reset the color code only) + + If the terminal supports it, color may also be specified as: + + - An integer in the interval [0, 255]. The terminal must support + 8-bit/256-color mode. + - An RGB tuple of three integers in [0, 255]. The terminal must + support 24-bit/true-color mode. + + See https://en.wikipedia.org/wiki/ANSI_color and + https://gist.github.com/XVilka/8346728 for more information. + + :param text: the string to style with ansi codes. + :param fg: if provided this will become the foreground color. + :param bg: if provided this will become the background color. + :param bold: if provided this will enable or disable bold mode. + :param dim: if provided this will enable or disable dim mode. This is + badly supported. + :param underline: if provided this will enable or disable underline. + :param overline: if provided this will enable or disable overline. + :param italic: if provided this will enable or disable italic. + :param blink: if provided this will enable or disable blinking. + :param reverse: if provided this will enable or disable inverse + rendering (foreground becomes background and the + other way round). + :param strikethrough: if provided this will enable or disable + striking through text. + :param reset: by default a reset-all code is added at the end of the + string which means that styles do not carry over. This + can be disabled to compose styles. + + .. versionchanged:: 8.0 + A non-string ``message`` is converted to a string. + + .. versionchanged:: 8.0 + Added support for 256 and RGB color codes. + + .. versionchanged:: 8.0 + Added the ``strikethrough``, ``italic``, and ``overline`` + parameters. + + .. versionchanged:: 7.0 + Added support for bright colors. + + .. versionadded:: 2.0 + """ + if not isinstance(text, str): + text = str(text) + + bits = [] + + if fg: + try: + bits.append(f"\033[{_interpret_color(fg)}m") + except KeyError: + raise TypeError(f"Unknown color {fg!r}") from None + + if bg: + try: + bits.append(f"\033[{_interpret_color(bg, 10)}m") + except KeyError: + raise TypeError(f"Unknown color {bg!r}") from None + + if bold is not None: + bits.append(f"\033[{1 if bold else 22}m") + if dim is not None: + bits.append(f"\033[{2 if dim else 22}m") + if underline is not None: + bits.append(f"\033[{4 if underline else 24}m") + if overline is not None: + bits.append(f"\033[{53 if overline else 55}m") + if italic is not None: + bits.append(f"\033[{3 if italic else 23}m") + if blink is not None: + bits.append(f"\033[{5 if blink else 25}m") + if reverse is not None: + bits.append(f"\033[{7 if reverse else 27}m") + if strikethrough is not None: + bits.append(f"\033[{9 if strikethrough else 29}m") + bits.append(text) + if reset: + bits.append(_ansi_reset_all) + return "".join(bits) + + +def unstyle(text: str) -> str: + """Removes ANSI styling information from a string. Usually it's not + necessary to use this function as Click's echo function will + automatically remove styling if necessary. + + .. versionadded:: 2.0 + + :param text: the text to remove style information from. + """ + return strip_ansi(text) + + +def secho( + message: t.Any | None = None, + file: t.IO[t.AnyStr] | None = None, + nl: bool = True, + err: bool = False, + color: bool | None = None, + **styles: t.Any, +) -> None: + """This function combines :func:`echo` and :func:`style` into one + call. As such the following two calls are the same:: + + click.secho('Hello World!', fg='green') + click.echo(click.style('Hello World!', fg='green')) + + All keyword arguments are forwarded to the underlying functions + depending on which one they go with. + + Non-string types will be converted to :class:`str`. However, + :class:`bytes` are passed directly to :meth:`echo` without applying + style. If you want to style bytes that represent text, call + :meth:`bytes.decode` first. + + .. versionchanged:: 8.0 + A non-string ``message`` is converted to a string. Bytes are + passed through without style applied. + + .. versionadded:: 2.0 + """ + if message is not None and not isinstance(message, (bytes, bytearray)): + message = style(message, **styles) + + return echo(message, file=file, nl=nl, err=err, color=color) + + +@t.overload +def edit( + text: bytes | bytearray, + editor: str | None = None, + env: cabc.Mapping[str, str] | None = None, + require_save: bool = False, + extension: str = ".txt", +) -> bytes | None: ... + + +@t.overload +def edit( + text: str, + editor: str | None = None, + env: cabc.Mapping[str, str] | None = None, + require_save: bool = True, + extension: str = ".txt", +) -> str | None: ... + + +@t.overload +def edit( + text: None = None, + editor: str | None = None, + env: cabc.Mapping[str, str] | None = None, + require_save: bool = True, + extension: str = ".txt", + filename: str | cabc.Iterable[str] | None = None, +) -> None: ... + + +def edit( + text: str | bytes | bytearray | None = None, + editor: str | None = None, + env: cabc.Mapping[str, str] | None = None, + require_save: bool = True, + extension: str = ".txt", + filename: str | cabc.Iterable[str] | None = None, +) -> str | bytes | bytearray | None: + r"""Edits the given text in the defined editor. If an editor is given + (should be the full path to the executable but the regular operating + system search path is used for finding the executable) it overrides + the detected editor. Optionally, some environment variables can be + used. If the editor is closed without changes, `None` is returned. In + case a file is edited directly the return value is always `None` and + `require_save` and `extension` are ignored. + + If the editor cannot be opened a :exc:`UsageError` is raised. + + Note for Windows: to simplify cross-platform usage, the newlines are + automatically converted from POSIX to Windows and vice versa. As such, + the message here will have ``\n`` as newline markers. + + :param text: the text to edit. + :param editor: optionally the editor to use. Defaults to automatic + detection. + :param env: environment variables to forward to the editor. + :param require_save: if this is true, then not saving in the editor + will make the return value become `None`. + :param extension: the extension to tell the editor about. This defaults + to `.txt` but changing this might change syntax + highlighting. + :param filename: if provided it will edit this file instead of the + provided text contents. It will not use a temporary + file as an indirection in that case. If the editor supports + editing multiple files at once, a sequence of files may be + passed as well. Invoke `click.file` once per file instead + if multiple files cannot be managed at once or editing the + files serially is desired. + + .. versionchanged:: 8.2.0 + ``filename`` now accepts any ``Iterable[str]`` in addition to a ``str`` + if the ``editor`` supports editing multiple files at once. + + """ + from ._termui_impl import Editor + + ed = Editor(editor=editor, env=env, require_save=require_save, extension=extension) + + if filename is None: + return ed.edit(text) + + if isinstance(filename, str): + filename = (filename,) + + ed.edit_files(filenames=filename) + return None + + +def launch(url: str, wait: bool = False, locate: bool = False) -> int: + """This function launches the given URL (or filename) in the default + viewer application for this file type. If this is an executable, it + might launch the executable in a new session. The return value is + the exit code of the launched application. Usually, ``0`` indicates + success. + + Examples:: + + click.launch('https://click.palletsprojects.com/') + click.launch('/my/downloaded/file', locate=True) + + .. versionadded:: 2.0 + + :param url: URL or filename of the thing to launch. + :param wait: Wait for the program to exit before returning. This + only works if the launched program blocks. In particular, + ``xdg-open`` on Linux does not block. + :param locate: if this is set to `True` then instead of launching the + application associated with the URL it will attempt to + launch a file manager with the file located. This + might have weird effects if the URL does not point to + the filesystem. + """ + from ._termui_impl import open_url + + return open_url(url, wait=wait, locate=locate) + + +# If this is provided, getchar() calls into this instead. This is used +# for unittesting purposes. +_getchar: t.Callable[[bool], str] | None = None + + +def getchar(echo: bool = False) -> str: + """Fetches a single character from the terminal and returns it. This + will always return a unicode character and under certain rare + circumstances this might return more than one character. The + situations which more than one character is returned is when for + whatever reason multiple characters end up in the terminal buffer or + standard input was not actually a terminal. + + Note that this will always read from the terminal, even if something + is piped into the standard input. + + Note for Windows: in rare cases when typing non-ASCII characters, this + function might wait for a second character and then return both at once. + This is because certain Unicode characters look like special-key markers. + + .. versionadded:: 2.0 + + :param echo: if set to `True`, the character read will also show up on + the terminal. The default is to not show it. + """ + global _getchar + + if _getchar is None: + from ._termui_impl import getchar as f + + _getchar = f + + return _getchar(echo) + + +def raw_terminal() -> AbstractContextManager[int]: + from ._termui_impl import raw_terminal as f + + return f() + + +def pause(info: str | None = None, err: bool = False) -> None: + """This command stops execution and waits for the user to press any + key to continue. This is similar to the Windows batch "pause" + command. If the program is not run through a terminal, this command + will instead do nothing. + + .. versionadded:: 2.0 + + .. versionadded:: 4.0 + Added the `err` parameter. + + :param info: The message to print before pausing. Defaults to + ``"Press any key to continue..."``. + :param err: if set to message goes to ``stderr`` instead of + ``stdout``, the same as with echo. + """ + if not isatty(sys.stdin) or not isatty(sys.stdout): + return + + if info is None: + info = _("Press any key to continue...") + + try: + if info: + echo(info, nl=False, err=err) + try: + getchar() + except (KeyboardInterrupt, EOFError): + pass + finally: + if info: + echo(err=err) diff --git a/ocr/.venv/Lib/site-packages/click/testing.py b/ocr/.venv/Lib/site-packages/click/testing.py new file mode 100644 index 00000000..f6f60b80 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/testing.py @@ -0,0 +1,577 @@ +from __future__ import annotations + +import collections.abc as cabc +import contextlib +import io +import os +import shlex +import sys +import tempfile +import typing as t +from types import TracebackType + +from . import _compat +from . import formatting +from . import termui +from . import utils +from ._compat import _find_binary_reader + +if t.TYPE_CHECKING: + from _typeshed import ReadableBuffer + + from .core import Command + + +class EchoingStdin: + def __init__(self, input: t.BinaryIO, output: t.BinaryIO) -> None: + self._input = input + self._output = output + self._paused = False + + def __getattr__(self, x: str) -> t.Any: + return getattr(self._input, x) + + def _echo(self, rv: bytes) -> bytes: + if not self._paused: + self._output.write(rv) + + return rv + + def read(self, n: int = -1) -> bytes: + return self._echo(self._input.read(n)) + + def read1(self, n: int = -1) -> bytes: + return self._echo(self._input.read1(n)) # type: ignore + + def readline(self, n: int = -1) -> bytes: + return self._echo(self._input.readline(n)) + + def readlines(self) -> list[bytes]: + return [self._echo(x) for x in self._input.readlines()] + + def __iter__(self) -> cabc.Iterator[bytes]: + return iter(self._echo(x) for x in self._input) + + def __repr__(self) -> str: + return repr(self._input) + + +@contextlib.contextmanager +def _pause_echo(stream: EchoingStdin | None) -> cabc.Iterator[None]: + if stream is None: + yield + else: + stream._paused = True + yield + stream._paused = False + + +class BytesIOCopy(io.BytesIO): + """Patch ``io.BytesIO`` to let the written stream be copied to another. + + .. versionadded:: 8.2 + """ + + def __init__(self, copy_to: io.BytesIO) -> None: + super().__init__() + self.copy_to = copy_to + + def flush(self) -> None: + super().flush() + self.copy_to.flush() + + def write(self, b: ReadableBuffer) -> int: + self.copy_to.write(b) + return super().write(b) + + +class StreamMixer: + """Mixes `` and `` streams. + + The result is available in the ``output`` attribute. + + .. versionadded:: 8.2 + """ + + def __init__(self) -> None: + self.output: io.BytesIO = io.BytesIO() + self.stdout: io.BytesIO = BytesIOCopy(copy_to=self.output) + self.stderr: io.BytesIO = BytesIOCopy(copy_to=self.output) + + def __del__(self) -> None: + """ + Guarantee that embedded file-like objects are closed in a + predictable order, protecting against races between + self.output being closed and other streams being flushed on close + + .. versionadded:: 8.2.2 + """ + self.stderr.close() + self.stdout.close() + self.output.close() + + +class _NamedTextIOWrapper(io.TextIOWrapper): + def __init__( + self, buffer: t.BinaryIO, name: str, mode: str, **kwargs: t.Any + ) -> None: + super().__init__(buffer, **kwargs) + self._name = name + self._mode = mode + + @property + def name(self) -> str: + return self._name + + @property + def mode(self) -> str: + return self._mode + + +def make_input_stream( + input: str | bytes | t.IO[t.Any] | None, charset: str +) -> t.BinaryIO: + # Is already an input stream. + if hasattr(input, "read"): + rv = _find_binary_reader(t.cast("t.IO[t.Any]", input)) + + if rv is not None: + return rv + + raise TypeError("Could not find binary reader for input stream.") + + if input is None: + input = b"" + elif isinstance(input, str): + input = input.encode(charset) + + return io.BytesIO(input) + + +class Result: + """Holds the captured result of an invoked CLI script. + + :param runner: The runner that created the result + :param stdout_bytes: The standard output as bytes. + :param stderr_bytes: The standard error as bytes. + :param output_bytes: A mix of ``stdout_bytes`` and ``stderr_bytes``, as the + user would see it in its terminal. + :param return_value: The value returned from the invoked command. + :param exit_code: The exit code as integer. + :param exception: The exception that happened if one did. + :param exc_info: Exception information (exception type, exception instance, + traceback type). + + .. versionchanged:: 8.2 + ``stderr_bytes`` no longer optional, ``output_bytes`` introduced and + ``mix_stderr`` has been removed. + + .. versionadded:: 8.0 + Added ``return_value``. + """ + + def __init__( + self, + runner: CliRunner, + stdout_bytes: bytes, + stderr_bytes: bytes, + output_bytes: bytes, + return_value: t.Any, + exit_code: int, + exception: BaseException | None, + exc_info: tuple[type[BaseException], BaseException, TracebackType] + | None = None, + ): + self.runner = runner + self.stdout_bytes = stdout_bytes + self.stderr_bytes = stderr_bytes + self.output_bytes = output_bytes + self.return_value = return_value + self.exit_code = exit_code + self.exception = exception + self.exc_info = exc_info + + @property + def output(self) -> str: + """The terminal output as unicode string, as the user would see it. + + .. versionchanged:: 8.2 + No longer a proxy for ``self.stdout``. Now has its own independent stream + that is mixing `` and ``, in the order they were written. + """ + return self.output_bytes.decode(self.runner.charset, "replace").replace( + "\r\n", "\n" + ) + + @property + def stdout(self) -> str: + """The standard output as unicode string.""" + return self.stdout_bytes.decode(self.runner.charset, "replace").replace( + "\r\n", "\n" + ) + + @property + def stderr(self) -> str: + """The standard error as unicode string. + + .. versionchanged:: 8.2 + No longer raise an exception, always returns the `` string. + """ + return self.stderr_bytes.decode(self.runner.charset, "replace").replace( + "\r\n", "\n" + ) + + def __repr__(self) -> str: + exc_str = repr(self.exception) if self.exception else "okay" + return f"<{type(self).__name__} {exc_str}>" + + +class CliRunner: + """The CLI runner provides functionality to invoke a Click command line + script for unittesting purposes in a isolated environment. This only + works in single-threaded systems without any concurrency as it changes the + global interpreter state. + + :param charset: the character set for the input and output data. + :param env: a dictionary with environment variables for overriding. + :param echo_stdin: if this is set to `True`, then reading from `` writes + to ``. This is useful for showing examples in + some circumstances. Note that regular prompts + will automatically echo the input. + :param catch_exceptions: Whether to catch any exceptions other than + ``SystemExit`` when running :meth:`~CliRunner.invoke`. + + .. versionchanged:: 8.2 + Added the ``catch_exceptions`` parameter. + + .. versionchanged:: 8.2 + ``mix_stderr`` parameter has been removed. + """ + + def __init__( + self, + charset: str = "utf-8", + env: cabc.Mapping[str, str | None] | None = None, + echo_stdin: bool = False, + catch_exceptions: bool = True, + ) -> None: + self.charset = charset + self.env: cabc.Mapping[str, str | None] = env or {} + self.echo_stdin = echo_stdin + self.catch_exceptions = catch_exceptions + + def get_default_prog_name(self, cli: Command) -> str: + """Given a command object it will return the default program name + for it. The default is the `name` attribute or ``"root"`` if not + set. + """ + return cli.name or "root" + + def make_env( + self, overrides: cabc.Mapping[str, str | None] | None = None + ) -> cabc.Mapping[str, str | None]: + """Returns the environment overrides for invoking a script.""" + rv = dict(self.env) + if overrides: + rv.update(overrides) + return rv + + @contextlib.contextmanager + def isolation( + self, + input: str | bytes | t.IO[t.Any] | None = None, + env: cabc.Mapping[str, str | None] | None = None, + color: bool = False, + ) -> cabc.Iterator[tuple[io.BytesIO, io.BytesIO, io.BytesIO]]: + """A context manager that sets up the isolation for invoking of a + command line tool. This sets up `` with the given input data + and `os.environ` with the overrides from the given dictionary. + This also rebinds some internals in Click to be mocked (like the + prompt functionality). + + This is automatically done in the :meth:`invoke` method. + + :param input: the input stream to put into `sys.stdin`. + :param env: the environment overrides as dictionary. + :param color: whether the output should contain color codes. The + application can still override this explicitly. + + .. versionadded:: 8.2 + An additional output stream is returned, which is a mix of + `` and `` streams. + + .. versionchanged:: 8.2 + Always returns the `` stream. + + .. versionchanged:: 8.0 + `` is opened with ``errors="backslashreplace"`` + instead of the default ``"strict"``. + + .. versionchanged:: 4.0 + Added the ``color`` parameter. + """ + bytes_input = make_input_stream(input, self.charset) + echo_input = None + + old_stdin = sys.stdin + old_stdout = sys.stdout + old_stderr = sys.stderr + old_forced_width = formatting.FORCED_WIDTH + formatting.FORCED_WIDTH = 80 + + env = self.make_env(env) + + stream_mixer = StreamMixer() + + if self.echo_stdin: + bytes_input = echo_input = t.cast( + t.BinaryIO, EchoingStdin(bytes_input, stream_mixer.stdout) + ) + + sys.stdin = text_input = _NamedTextIOWrapper( + bytes_input, encoding=self.charset, name="", mode="r" + ) + + if self.echo_stdin: + # Force unbuffered reads, otherwise TextIOWrapper reads a + # large chunk which is echoed early. + text_input._CHUNK_SIZE = 1 # type: ignore + + sys.stdout = _NamedTextIOWrapper( + stream_mixer.stdout, encoding=self.charset, name="", mode="w" + ) + + sys.stderr = _NamedTextIOWrapper( + stream_mixer.stderr, + encoding=self.charset, + name="", + mode="w", + errors="backslashreplace", + ) + + @_pause_echo(echo_input) # type: ignore + def visible_input(prompt: str | None = None) -> str: + sys.stdout.write(prompt or "") + try: + val = next(text_input).rstrip("\r\n") + except StopIteration as e: + raise EOFError() from e + sys.stdout.write(f"{val}\n") + sys.stdout.flush() + return val + + @_pause_echo(echo_input) # type: ignore + def hidden_input(prompt: str | None = None) -> str: + sys.stdout.write(f"{prompt or ''}\n") + sys.stdout.flush() + try: + return next(text_input).rstrip("\r\n") + except StopIteration as e: + raise EOFError() from e + + @_pause_echo(echo_input) # type: ignore + def _getchar(echo: bool) -> str: + char = sys.stdin.read(1) + + if echo: + sys.stdout.write(char) + + sys.stdout.flush() + return char + + default_color = color + + def should_strip_ansi( + stream: t.IO[t.Any] | None = None, color: bool | None = None + ) -> bool: + if color is None: + return not default_color + return not color + + old_visible_prompt_func = termui.visible_prompt_func + old_hidden_prompt_func = termui.hidden_prompt_func + old__getchar_func = termui._getchar + old_should_strip_ansi = utils.should_strip_ansi # type: ignore + old__compat_should_strip_ansi = _compat.should_strip_ansi + termui.visible_prompt_func = visible_input + termui.hidden_prompt_func = hidden_input + termui._getchar = _getchar + utils.should_strip_ansi = should_strip_ansi # type: ignore + _compat.should_strip_ansi = should_strip_ansi + + old_env = {} + try: + for key, value in env.items(): + old_env[key] = os.environ.get(key) + if value is None: + try: + del os.environ[key] + except Exception: + pass + else: + os.environ[key] = value + yield (stream_mixer.stdout, stream_mixer.stderr, stream_mixer.output) + finally: + for key, value in old_env.items(): + if value is None: + try: + del os.environ[key] + except Exception: + pass + else: + os.environ[key] = value + sys.stdout = old_stdout + sys.stderr = old_stderr + sys.stdin = old_stdin + termui.visible_prompt_func = old_visible_prompt_func + termui.hidden_prompt_func = old_hidden_prompt_func + termui._getchar = old__getchar_func + utils.should_strip_ansi = old_should_strip_ansi # type: ignore + _compat.should_strip_ansi = old__compat_should_strip_ansi + formatting.FORCED_WIDTH = old_forced_width + + def invoke( + self, + cli: Command, + args: str | cabc.Sequence[str] | None = None, + input: str | bytes | t.IO[t.Any] | None = None, + env: cabc.Mapping[str, str | None] | None = None, + catch_exceptions: bool | None = None, + color: bool = False, + **extra: t.Any, + ) -> Result: + """Invokes a command in an isolated environment. The arguments are + forwarded directly to the command line script, the `extra` keyword + arguments are passed to the :meth:`~clickpkg.Command.main` function of + the command. + + This returns a :class:`Result` object. + + :param cli: the command to invoke + :param args: the arguments to invoke. It may be given as an iterable + or a string. When given as string it will be interpreted + as a Unix shell command. More details at + :func:`shlex.split`. + :param input: the input data for `sys.stdin`. + :param env: the environment overrides. + :param catch_exceptions: Whether to catch any other exceptions than + ``SystemExit``. If :data:`None`, the value + from :class:`CliRunner` is used. + :param extra: the keyword arguments to pass to :meth:`main`. + :param color: whether the output should contain color codes. The + application can still override this explicitly. + + .. versionadded:: 8.2 + The result object has the ``output_bytes`` attribute with + the mix of ``stdout_bytes`` and ``stderr_bytes``, as the user would + see it in its terminal. + + .. versionchanged:: 8.2 + The result object always returns the ``stderr_bytes`` stream. + + .. versionchanged:: 8.0 + The result object has the ``return_value`` attribute with + the value returned from the invoked command. + + .. versionchanged:: 4.0 + Added the ``color`` parameter. + + .. versionchanged:: 3.0 + Added the ``catch_exceptions`` parameter. + + .. versionchanged:: 3.0 + The result object has the ``exc_info`` attribute with the + traceback if available. + """ + exc_info = None + if catch_exceptions is None: + catch_exceptions = self.catch_exceptions + + with self.isolation(input=input, env=env, color=color) as outstreams: + return_value = None + exception: BaseException | None = None + exit_code = 0 + + if isinstance(args, str): + args = shlex.split(args) + + try: + prog_name = extra.pop("prog_name") + except KeyError: + prog_name = self.get_default_prog_name(cli) + + try: + return_value = cli.main(args=args or (), prog_name=prog_name, **extra) + except SystemExit as e: + exc_info = sys.exc_info() + e_code = t.cast("int | t.Any | None", e.code) + + if e_code is None: + e_code = 0 + + if e_code != 0: + exception = e + + if not isinstance(e_code, int): + sys.stdout.write(str(e_code)) + sys.stdout.write("\n") + e_code = 1 + + exit_code = e_code + + except Exception as e: + if not catch_exceptions: + raise + exception = e + exit_code = 1 + exc_info = sys.exc_info() + finally: + sys.stdout.flush() + sys.stderr.flush() + stdout = outstreams[0].getvalue() + stderr = outstreams[1].getvalue() + output = outstreams[2].getvalue() + + return Result( + runner=self, + stdout_bytes=stdout, + stderr_bytes=stderr, + output_bytes=output, + return_value=return_value, + exit_code=exit_code, + exception=exception, + exc_info=exc_info, # type: ignore + ) + + @contextlib.contextmanager + def isolated_filesystem( + self, temp_dir: str | os.PathLike[str] | None = None + ) -> cabc.Iterator[str]: + """A context manager that creates a temporary directory and + changes the current working directory to it. This isolates tests + that affect the contents of the CWD to prevent them from + interfering with each other. + + :param temp_dir: Create the temporary directory under this + directory. If given, the created directory is not removed + when exiting. + + .. versionchanged:: 8.0 + Added the ``temp_dir`` parameter. + """ + cwd = os.getcwd() + dt = tempfile.mkdtemp(dir=temp_dir) + os.chdir(dt) + + try: + yield dt + finally: + os.chdir(cwd) + + if temp_dir is None: + import shutil + + try: + shutil.rmtree(dt) + except OSError: + pass diff --git a/ocr/.venv/Lib/site-packages/click/types.py b/ocr/.venv/Lib/site-packages/click/types.py new file mode 100644 index 00000000..e71c1c21 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/types.py @@ -0,0 +1,1209 @@ +from __future__ import annotations + +import collections.abc as cabc +import enum +import os +import stat +import sys +import typing as t +from datetime import datetime +from gettext import gettext as _ +from gettext import ngettext + +from ._compat import _get_argv_encoding +from ._compat import open_stream +from .exceptions import BadParameter +from .utils import format_filename +from .utils import LazyFile +from .utils import safecall + +if t.TYPE_CHECKING: + import typing_extensions as te + + from .core import Context + from .core import Parameter + from .shell_completion import CompletionItem + +ParamTypeValue = t.TypeVar("ParamTypeValue") + + +class ParamType: + """Represents the type of a parameter. Validates and converts values + from the command line or Python into the correct type. + + To implement a custom type, subclass and implement at least the + following: + + - The :attr:`name` class attribute must be set. + - Calling an instance of the type with ``None`` must return + ``None``. This is already implemented by default. + - :meth:`convert` must convert string values to the correct type. + - :meth:`convert` must accept values that are already the correct + type. + - It must be able to convert a value if the ``ctx`` and ``param`` + arguments are ``None``. This can occur when converting prompt + input. + """ + + is_composite: t.ClassVar[bool] = False + arity: t.ClassVar[int] = 1 + + #: the descriptive name of this type + name: str + + #: if a list of this type is expected and the value is pulled from a + #: string environment variable, this is what splits it up. `None` + #: means any whitespace. For all parameters the general rule is that + #: whitespace splits them up. The exception are paths and files which + #: are split by ``os.path.pathsep`` by default (":" on Unix and ";" on + #: Windows). + envvar_list_splitter: t.ClassVar[str | None] = None + + def to_info_dict(self) -> dict[str, t.Any]: + """Gather information that could be useful for a tool generating + user-facing documentation. + + Use :meth:`click.Context.to_info_dict` to traverse the entire + CLI structure. + + .. versionadded:: 8.0 + """ + # The class name without the "ParamType" suffix. + param_type = type(self).__name__.partition("ParamType")[0] + param_type = param_type.partition("ParameterType")[0] + + # Custom subclasses might not remember to set a name. + if hasattr(self, "name"): + name = self.name + else: + name = param_type + + return {"param_type": param_type, "name": name} + + def __call__( + self, + value: t.Any, + param: Parameter | None = None, + ctx: Context | None = None, + ) -> t.Any: + if value is not None: + return self.convert(value, param, ctx) + + def get_metavar(self, param: Parameter, ctx: Context) -> str | None: + """Returns the metavar default for this param if it provides one.""" + + def get_missing_message(self, param: Parameter, ctx: Context | None) -> str | None: + """Optionally might return extra information about a missing + parameter. + + .. versionadded:: 2.0 + """ + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + """Convert the value to the correct type. This is not called if + the value is ``None`` (the missing value). + + This must accept string values from the command line, as well as + values that are already the correct type. It may also convert + other compatible types. + + The ``param`` and ``ctx`` arguments may be ``None`` in certain + situations, such as when converting prompt input. + + If the value cannot be converted, call :meth:`fail` with a + descriptive message. + + :param value: The value to convert. + :param param: The parameter that is using this type to convert + its value. May be ``None``. + :param ctx: The current context that arrived at this value. May + be ``None``. + """ + return value + + def split_envvar_value(self, rv: str) -> cabc.Sequence[str]: + """Given a value from an environment variable this splits it up + into small chunks depending on the defined envvar list splitter. + + If the splitter is set to `None`, which means that whitespace splits, + then leading and trailing whitespace is ignored. Otherwise, leading + and trailing splitters usually lead to empty items being included. + """ + return (rv or "").split(self.envvar_list_splitter) + + def fail( + self, + message: str, + param: Parameter | None = None, + ctx: Context | None = None, + ) -> t.NoReturn: + """Helper method to fail with an invalid value message.""" + raise BadParameter(message, ctx=ctx, param=param) + + def shell_complete( + self, ctx: Context, param: Parameter, incomplete: str + ) -> list[CompletionItem]: + """Return a list of + :class:`~click.shell_completion.CompletionItem` objects for the + incomplete value. Most types do not provide completions, but + some do, and this allows custom types to provide custom + completions as well. + + :param ctx: Invocation context for this command. + :param param: The parameter that is requesting completion. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + return [] + + +class CompositeParamType(ParamType): + is_composite = True + + @property + def arity(self) -> int: # type: ignore + raise NotImplementedError() + + +class FuncParamType(ParamType): + def __init__(self, func: t.Callable[[t.Any], t.Any]) -> None: + self.name: str = func.__name__ + self.func = func + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict["func"] = self.func + return info_dict + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + try: + return self.func(value) + except ValueError: + try: + value = str(value) + except UnicodeError: + value = value.decode("utf-8", "replace") + + self.fail(value, param, ctx) + + +class UnprocessedParamType(ParamType): + name = "text" + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + return value + + def __repr__(self) -> str: + return "UNPROCESSED" + + +class StringParamType(ParamType): + name = "text" + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + if isinstance(value, bytes): + enc = _get_argv_encoding() + try: + value = value.decode(enc) + except UnicodeError: + fs_enc = sys.getfilesystemencoding() + if fs_enc != enc: + try: + value = value.decode(fs_enc) + except UnicodeError: + value = value.decode("utf-8", "replace") + else: + value = value.decode("utf-8", "replace") + return value + return str(value) + + def __repr__(self) -> str: + return "STRING" + + +class Choice(ParamType, t.Generic[ParamTypeValue]): + """The choice type allows a value to be checked against a fixed set + of supported values. + + You may pass any iterable value which will be converted to a tuple + and thus will only be iterated once. + + The resulting value will always be one of the originally passed choices. + See :meth:`normalize_choice` for more info on the mapping of strings + to choices. See :ref:`choice-opts` for an example. + + :param case_sensitive: Set to false to make choices case + insensitive. Defaults to true. + + .. versionchanged:: 8.2.0 + Non-``str`` ``choices`` are now supported. It can additionally be any + iterable. Before you were not recommended to pass anything but a list or + tuple. + + .. versionadded:: 8.2.0 + Choice normalization can be overridden via :meth:`normalize_choice`. + """ + + name = "choice" + + def __init__( + self, choices: cabc.Iterable[ParamTypeValue], case_sensitive: bool = True + ) -> None: + self.choices: cabc.Sequence[ParamTypeValue] = tuple(choices) + self.case_sensitive = case_sensitive + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict["choices"] = self.choices + info_dict["case_sensitive"] = self.case_sensitive + return info_dict + + def _normalized_mapping( + self, ctx: Context | None = None + ) -> cabc.Mapping[ParamTypeValue, str]: + """ + Returns mapping where keys are the original choices and the values are + the normalized values that are accepted via the command line. + + This is a simple wrapper around :meth:`normalize_choice`, use that + instead which is supported. + """ + return { + choice: self.normalize_choice( + choice=choice, + ctx=ctx, + ) + for choice in self.choices + } + + def normalize_choice(self, choice: ParamTypeValue, ctx: Context | None) -> str: + """ + Normalize a choice value, used to map a passed string to a choice. + Each choice must have a unique normalized value. + + By default uses :meth:`Context.token_normalize_func` and if not case + sensitive, convert it to a casefolded value. + + .. versionadded:: 8.2.0 + """ + normed_value = choice.name if isinstance(choice, enum.Enum) else str(choice) + + if ctx is not None and ctx.token_normalize_func is not None: + normed_value = ctx.token_normalize_func(normed_value) + + if not self.case_sensitive: + normed_value = normed_value.casefold() + + return normed_value + + def get_metavar(self, param: Parameter, ctx: Context) -> str | None: + if param.param_type_name == "option" and not param.show_choices: # type: ignore + choice_metavars = [ + convert_type(type(choice)).name.upper() for choice in self.choices + ] + choices_str = "|".join([*dict.fromkeys(choice_metavars)]) + else: + choices_str = "|".join( + [str(i) for i in self._normalized_mapping(ctx=ctx).values()] + ) + + # Use curly braces to indicate a required argument. + if param.required and param.param_type_name == "argument": + return f"{{{choices_str}}}" + + # Use square braces to indicate an option or optional argument. + return f"[{choices_str}]" + + def get_missing_message(self, param: Parameter, ctx: Context | None) -> str: + """ + Message shown when no choice is passed. + + .. versionchanged:: 8.2.0 Added ``ctx`` argument. + """ + return _("Choose from:\n\t{choices}").format( + choices=",\n\t".join(self._normalized_mapping(ctx=ctx).values()) + ) + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> ParamTypeValue: + """ + For a given value from the parser, normalize it and find its + matching normalized value in the list of choices. Then return the + matched "original" choice. + """ + normed_value = self.normalize_choice(choice=value, ctx=ctx) + normalized_mapping = self._normalized_mapping(ctx=ctx) + + try: + return next( + original + for original, normalized in normalized_mapping.items() + if normalized == normed_value + ) + except StopIteration: + self.fail( + self.get_invalid_choice_message(value=value, ctx=ctx), + param=param, + ctx=ctx, + ) + + def get_invalid_choice_message(self, value: t.Any, ctx: Context | None) -> str: + """Get the error message when the given choice is invalid. + + :param value: The invalid value. + + .. versionadded:: 8.2 + """ + choices_str = ", ".join(map(repr, self._normalized_mapping(ctx=ctx).values())) + return ngettext( + "{value!r} is not {choice}.", + "{value!r} is not one of {choices}.", + len(self.choices), + ).format(value=value, choice=choices_str, choices=choices_str) + + def __repr__(self) -> str: + return f"Choice({list(self.choices)})" + + def shell_complete( + self, ctx: Context, param: Parameter, incomplete: str + ) -> list[CompletionItem]: + """Complete choices that start with the incomplete value. + + :param ctx: Invocation context for this command. + :param param: The parameter that is requesting completion. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + from click.shell_completion import CompletionItem + + str_choices = map(str, self.choices) + + if self.case_sensitive: + matched = (c for c in str_choices if c.startswith(incomplete)) + else: + incomplete = incomplete.lower() + matched = (c for c in str_choices if c.lower().startswith(incomplete)) + + return [CompletionItem(c) for c in matched] + + +class DateTime(ParamType): + """The DateTime type converts date strings into `datetime` objects. + + The format strings which are checked are configurable, but default to some + common (non-timezone aware) ISO 8601 formats. + + When specifying *DateTime* formats, you should only pass a list or a tuple. + Other iterables, like generators, may lead to surprising results. + + The format strings are processed using ``datetime.strptime``, and this + consequently defines the format strings which are allowed. + + Parsing is tried using each format, in order, and the first format which + parses successfully is used. + + :param formats: A list or tuple of date format strings, in the order in + which they should be tried. Defaults to + ``'%Y-%m-%d'``, ``'%Y-%m-%dT%H:%M:%S'``, + ``'%Y-%m-%d %H:%M:%S'``. + """ + + name = "datetime" + + def __init__(self, formats: cabc.Sequence[str] | None = None): + self.formats: cabc.Sequence[str] = formats or [ + "%Y-%m-%d", + "%Y-%m-%dT%H:%M:%S", + "%Y-%m-%d %H:%M:%S", + ] + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict["formats"] = self.formats + return info_dict + + def get_metavar(self, param: Parameter, ctx: Context) -> str | None: + return f"[{'|'.join(self.formats)}]" + + def _try_to_convert_date(self, value: t.Any, format: str) -> datetime | None: + try: + return datetime.strptime(value, format) + except ValueError: + return None + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + if isinstance(value, datetime): + return value + + for format in self.formats: + converted = self._try_to_convert_date(value, format) + + if converted is not None: + return converted + + formats_str = ", ".join(map(repr, self.formats)) + self.fail( + ngettext( + "{value!r} does not match the format {format}.", + "{value!r} does not match the formats {formats}.", + len(self.formats), + ).format(value=value, format=formats_str, formats=formats_str), + param, + ctx, + ) + + def __repr__(self) -> str: + return "DateTime" + + +class _NumberParamTypeBase(ParamType): + _number_class: t.ClassVar[type[t.Any]] + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + try: + return self._number_class(value) + except ValueError: + self.fail( + _("{value!r} is not a valid {number_type}.").format( + value=value, number_type=self.name + ), + param, + ctx, + ) + + +class _NumberRangeBase(_NumberParamTypeBase): + def __init__( + self, + min: float | None = None, + max: float | None = None, + min_open: bool = False, + max_open: bool = False, + clamp: bool = False, + ) -> None: + self.min = min + self.max = max + self.min_open = min_open + self.max_open = max_open + self.clamp = clamp + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict.update( + min=self.min, + max=self.max, + min_open=self.min_open, + max_open=self.max_open, + clamp=self.clamp, + ) + return info_dict + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + import operator + + rv = super().convert(value, param, ctx) + lt_min: bool = self.min is not None and ( + operator.le if self.min_open else operator.lt + )(rv, self.min) + gt_max: bool = self.max is not None and ( + operator.ge if self.max_open else operator.gt + )(rv, self.max) + + if self.clamp: + if lt_min: + return self._clamp(self.min, 1, self.min_open) # type: ignore + + if gt_max: + return self._clamp(self.max, -1, self.max_open) # type: ignore + + if lt_min or gt_max: + self.fail( + _("{value} is not in the range {range}.").format( + value=rv, range=self._describe_range() + ), + param, + ctx, + ) + + return rv + + def _clamp(self, bound: float, dir: t.Literal[1, -1], open: bool) -> float: + """Find the valid value to clamp to bound in the given + direction. + + :param bound: The boundary value. + :param dir: 1 or -1 indicating the direction to move. + :param open: If true, the range does not include the bound. + """ + raise NotImplementedError + + def _describe_range(self) -> str: + """Describe the range for use in help text.""" + if self.min is None: + op = "<" if self.max_open else "<=" + return f"x{op}{self.max}" + + if self.max is None: + op = ">" if self.min_open else ">=" + return f"x{op}{self.min}" + + lop = "<" if self.min_open else "<=" + rop = "<" if self.max_open else "<=" + return f"{self.min}{lop}x{rop}{self.max}" + + def __repr__(self) -> str: + clamp = " clamped" if self.clamp else "" + return f"<{type(self).__name__} {self._describe_range()}{clamp}>" + + +class IntParamType(_NumberParamTypeBase): + name = "integer" + _number_class = int + + def __repr__(self) -> str: + return "INT" + + +class IntRange(_NumberRangeBase, IntParamType): + """Restrict an :data:`click.INT` value to a range of accepted + values. See :ref:`ranges`. + + If ``min`` or ``max`` are not passed, any value is accepted in that + direction. If ``min_open`` or ``max_open`` are enabled, the + corresponding boundary is not included in the range. + + If ``clamp`` is enabled, a value outside the range is clamped to the + boundary instead of failing. + + .. versionchanged:: 8.0 + Added the ``min_open`` and ``max_open`` parameters. + """ + + name = "integer range" + + def _clamp( # type: ignore + self, bound: int, dir: t.Literal[1, -1], open: bool + ) -> int: + if not open: + return bound + + return bound + dir + + +class FloatParamType(_NumberParamTypeBase): + name = "float" + _number_class = float + + def __repr__(self) -> str: + return "FLOAT" + + +class FloatRange(_NumberRangeBase, FloatParamType): + """Restrict a :data:`click.FLOAT` value to a range of accepted + values. See :ref:`ranges`. + + If ``min`` or ``max`` are not passed, any value is accepted in that + direction. If ``min_open`` or ``max_open`` are enabled, the + corresponding boundary is not included in the range. + + If ``clamp`` is enabled, a value outside the range is clamped to the + boundary instead of failing. This is not supported if either + boundary is marked ``open``. + + .. versionchanged:: 8.0 + Added the ``min_open`` and ``max_open`` parameters. + """ + + name = "float range" + + def __init__( + self, + min: float | None = None, + max: float | None = None, + min_open: bool = False, + max_open: bool = False, + clamp: bool = False, + ) -> None: + super().__init__( + min=min, max=max, min_open=min_open, max_open=max_open, clamp=clamp + ) + + if (min_open or max_open) and clamp: + raise TypeError("Clamping is not supported for open bounds.") + + def _clamp(self, bound: float, dir: t.Literal[1, -1], open: bool) -> float: + if not open: + return bound + + # Could use math.nextafter here, but clamping an + # open float range doesn't seem to be particularly useful. It's + # left up to the user to write a callback to do it if needed. + raise RuntimeError("Clamping is not supported for open bounds.") + + +class BoolParamType(ParamType): + name = "boolean" + + bool_states: dict[str, bool] = { + "1": True, + "0": False, + "yes": True, + "no": False, + "true": True, + "false": False, + "on": True, + "off": False, + "t": True, + "f": False, + "y": True, + "n": False, + # Absence of value is considered False. + "": False, + } + """A mapping of string values to boolean states. + + Mapping is inspired by :py:attr:`configparser.ConfigParser.BOOLEAN_STATES` + and extends it. + + .. caution:: + String values are lower-cased, as the ``str_to_bool`` comparison function + below is case-insensitive. + + .. warning:: + The mapping is not exhaustive, and does not cover all possible boolean strings + representations. It will remains as it is to avoid endless bikeshedding. + + Future work my be considered to make this mapping user-configurable from public + API. + """ + + @staticmethod + def str_to_bool(value: str | bool) -> bool | None: + """Convert a string to a boolean value. + + If the value is already a boolean, it is returned as-is. If the value is a + string, it is stripped of whitespaces and lower-cased, then checked against + the known boolean states pre-defined in the `BoolParamType.bool_states` mapping + above. + + Returns `None` if the value does not match any known boolean state. + """ + if isinstance(value, bool): + return value + return BoolParamType.bool_states.get(value.strip().lower()) + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> bool: + normalized = self.str_to_bool(value) + if normalized is None: + self.fail( + _( + "{value!r} is not a valid boolean. Recognized values: {states}" + ).format(value=value, states=", ".join(sorted(self.bool_states))), + param, + ctx, + ) + return normalized + + def __repr__(self) -> str: + return "BOOL" + + +class UUIDParameterType(ParamType): + name = "uuid" + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + import uuid + + if isinstance(value, uuid.UUID): + return value + + value = value.strip() + + try: + return uuid.UUID(value) + except ValueError: + self.fail( + _("{value!r} is not a valid UUID.").format(value=value), param, ctx + ) + + def __repr__(self) -> str: + return "UUID" + + +class File(ParamType): + """Declares a parameter to be a file for reading or writing. The file + is automatically closed once the context tears down (after the command + finished working). + + Files can be opened for reading or writing. The special value ``-`` + indicates stdin or stdout depending on the mode. + + By default, the file is opened for reading text data, but it can also be + opened in binary mode or for writing. The encoding parameter can be used + to force a specific encoding. + + The `lazy` flag controls if the file should be opened immediately or upon + first IO. The default is to be non-lazy for standard input and output + streams as well as files opened for reading, `lazy` otherwise. When opening a + file lazily for reading, it is still opened temporarily for validation, but + will not be held open until first IO. lazy is mainly useful when opening + for writing to avoid creating the file until it is needed. + + Files can also be opened atomically in which case all writes go into a + separate file in the same folder and upon completion the file will + be moved over to the original location. This is useful if a file + regularly read by other users is modified. + + See :ref:`file-args` for more information. + + .. versionchanged:: 2.0 + Added the ``atomic`` parameter. + """ + + name = "filename" + envvar_list_splitter: t.ClassVar[str] = os.path.pathsep + + def __init__( + self, + mode: str = "r", + encoding: str | None = None, + errors: str | None = "strict", + lazy: bool | None = None, + atomic: bool = False, + ) -> None: + self.mode = mode + self.encoding = encoding + self.errors = errors + self.lazy = lazy + self.atomic = atomic + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict.update(mode=self.mode, encoding=self.encoding) + return info_dict + + def resolve_lazy_flag(self, value: str | os.PathLike[str]) -> bool: + if self.lazy is not None: + return self.lazy + if os.fspath(value) == "-": + return False + elif "w" in self.mode: + return True + return False + + def convert( + self, + value: str | os.PathLike[str] | t.IO[t.Any], + param: Parameter | None, + ctx: Context | None, + ) -> t.IO[t.Any]: + if _is_file_like(value): + return value + + value = t.cast("str | os.PathLike[str]", value) + + try: + lazy = self.resolve_lazy_flag(value) + + if lazy: + lf = LazyFile( + value, self.mode, self.encoding, self.errors, atomic=self.atomic + ) + + if ctx is not None: + ctx.call_on_close(lf.close_intelligently) + + return t.cast("t.IO[t.Any]", lf) + + f, should_close = open_stream( + value, self.mode, self.encoding, self.errors, atomic=self.atomic + ) + + # If a context is provided, we automatically close the file + # at the end of the context execution (or flush out). If a + # context does not exist, it's the caller's responsibility to + # properly close the file. This for instance happens when the + # type is used with prompts. + if ctx is not None: + if should_close: + ctx.call_on_close(safecall(f.close)) + else: + ctx.call_on_close(safecall(f.flush)) + + return f + except OSError as e: + self.fail(f"'{format_filename(value)}': {e.strerror}", param, ctx) + + def shell_complete( + self, ctx: Context, param: Parameter, incomplete: str + ) -> list[CompletionItem]: + """Return a special completion marker that tells the completion + system to use the shell to provide file path completions. + + :param ctx: Invocation context for this command. + :param param: The parameter that is requesting completion. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + from click.shell_completion import CompletionItem + + return [CompletionItem(incomplete, type="file")] + + +def _is_file_like(value: t.Any) -> te.TypeGuard[t.IO[t.Any]]: + return hasattr(value, "read") or hasattr(value, "write") + + +class Path(ParamType): + """The ``Path`` type is similar to the :class:`File` type, but + returns the filename instead of an open file. Various checks can be + enabled to validate the type of file and permissions. + + :param exists: The file or directory needs to exist for the value to + be valid. If this is not set to ``True``, and the file does not + exist, then all further checks are silently skipped. + :param file_okay: Allow a file as a value. + :param dir_okay: Allow a directory as a value. + :param readable: if true, a readable check is performed. + :param writable: if true, a writable check is performed. + :param executable: if true, an executable check is performed. + :param resolve_path: Make the value absolute and resolve any + symlinks. A ``~`` is not expanded, as this is supposed to be + done by the shell only. + :param allow_dash: Allow a single dash as a value, which indicates + a standard stream (but does not open it). Use + :func:`~click.open_file` to handle opening this value. + :param path_type: Convert the incoming path value to this type. If + ``None``, keep Python's default, which is ``str``. Useful to + convert to :class:`pathlib.Path`. + + .. versionchanged:: 8.1 + Added the ``executable`` parameter. + + .. versionchanged:: 8.0 + Allow passing ``path_type=pathlib.Path``. + + .. versionchanged:: 6.0 + Added the ``allow_dash`` parameter. + """ + + envvar_list_splitter: t.ClassVar[str] = os.path.pathsep + + def __init__( + self, + exists: bool = False, + file_okay: bool = True, + dir_okay: bool = True, + writable: bool = False, + readable: bool = True, + resolve_path: bool = False, + allow_dash: bool = False, + path_type: type[t.Any] | None = None, + executable: bool = False, + ): + self.exists = exists + self.file_okay = file_okay + self.dir_okay = dir_okay + self.readable = readable + self.writable = writable + self.executable = executable + self.resolve_path = resolve_path + self.allow_dash = allow_dash + self.type = path_type + + if self.file_okay and not self.dir_okay: + self.name: str = _("file") + elif self.dir_okay and not self.file_okay: + self.name = _("directory") + else: + self.name = _("path") + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict.update( + exists=self.exists, + file_okay=self.file_okay, + dir_okay=self.dir_okay, + writable=self.writable, + readable=self.readable, + allow_dash=self.allow_dash, + ) + return info_dict + + def coerce_path_result( + self, value: str | os.PathLike[str] + ) -> str | bytes | os.PathLike[str]: + if self.type is not None and not isinstance(value, self.type): + if self.type is str: + return os.fsdecode(value) + elif self.type is bytes: + return os.fsencode(value) + else: + return t.cast("os.PathLike[str]", self.type(value)) + + return value + + def convert( + self, + value: str | os.PathLike[str], + param: Parameter | None, + ctx: Context | None, + ) -> str | bytes | os.PathLike[str]: + rv = value + + is_dash = self.file_okay and self.allow_dash and rv in (b"-", "-") + + if not is_dash: + if self.resolve_path: + rv = os.path.realpath(rv) + + try: + st = os.stat(rv) + except OSError: + if not self.exists: + return self.coerce_path_result(rv) + self.fail( + _("{name} {filename!r} does not exist.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + + if not self.file_okay and stat.S_ISREG(st.st_mode): + self.fail( + _("{name} {filename!r} is a file.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + if not self.dir_okay and stat.S_ISDIR(st.st_mode): + self.fail( + _("{name} {filename!r} is a directory.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + + if self.readable and not os.access(rv, os.R_OK): + self.fail( + _("{name} {filename!r} is not readable.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + + if self.writable and not os.access(rv, os.W_OK): + self.fail( + _("{name} {filename!r} is not writable.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + + if self.executable and not os.access(value, os.X_OK): + self.fail( + _("{name} {filename!r} is not executable.").format( + name=self.name.title(), filename=format_filename(value) + ), + param, + ctx, + ) + + return self.coerce_path_result(rv) + + def shell_complete( + self, ctx: Context, param: Parameter, incomplete: str + ) -> list[CompletionItem]: + """Return a special completion marker that tells the completion + system to use the shell to provide path completions for only + directories or any paths. + + :param ctx: Invocation context for this command. + :param param: The parameter that is requesting completion. + :param incomplete: Value being completed. May be empty. + + .. versionadded:: 8.0 + """ + from click.shell_completion import CompletionItem + + type = "dir" if self.dir_okay and not self.file_okay else "file" + return [CompletionItem(incomplete, type=type)] + + +class Tuple(CompositeParamType): + """The default behavior of Click is to apply a type on a value directly. + This works well in most cases, except for when `nargs` is set to a fixed + count and different types should be used for different items. In this + case the :class:`Tuple` type can be used. This type can only be used + if `nargs` is set to a fixed number. + + For more information see :ref:`tuple-type`. + + This can be selected by using a Python tuple literal as a type. + + :param types: a list of types that should be used for the tuple items. + """ + + def __init__(self, types: cabc.Sequence[type[t.Any] | ParamType]) -> None: + self.types: cabc.Sequence[ParamType] = [convert_type(ty) for ty in types] + + def to_info_dict(self) -> dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict["types"] = [t.to_info_dict() for t in self.types] + return info_dict + + @property + def name(self) -> str: # type: ignore + return f"<{' '.join(ty.name for ty in self.types)}>" + + @property + def arity(self) -> int: # type: ignore + return len(self.types) + + def convert( + self, value: t.Any, param: Parameter | None, ctx: Context | None + ) -> t.Any: + len_type = len(self.types) + len_value = len(value) + + if len_value != len_type: + self.fail( + ngettext( + "{len_type} values are required, but {len_value} was given.", + "{len_type} values are required, but {len_value} were given.", + len_value, + ).format(len_type=len_type, len_value=len_value), + param=param, + ctx=ctx, + ) + + return tuple( + ty(x, param, ctx) for ty, x in zip(self.types, value, strict=False) + ) + + +def convert_type(ty: t.Any | None, default: t.Any | None = None) -> ParamType: + """Find the most appropriate :class:`ParamType` for the given Python + type. If the type isn't provided, it can be inferred from a default + value. + """ + guessed_type = False + + if ty is None and default is not None: + if isinstance(default, (tuple, list)): + # If the default is empty, ty will remain None and will + # return STRING. + if default: + item = default[0] + + # A tuple of tuples needs to detect the inner types. + # Can't call convert recursively because that would + # incorrectly unwind the tuple to a single type. + if isinstance(item, (tuple, list)): + ty = tuple(map(type, item)) + else: + ty = type(item) + else: + ty = type(default) + + guessed_type = True + + if isinstance(ty, tuple): + return Tuple(ty) + + if isinstance(ty, ParamType): + return ty + + if ty is str or ty is None: + return STRING + + if ty is int: + return INT + + if ty is float: + return FLOAT + + if ty is bool: + return BOOL + + if guessed_type: + return STRING + + if __debug__: + try: + if issubclass(ty, ParamType): + raise AssertionError( + f"Attempted to use an uninstantiated parameter type ({ty})." + ) + except TypeError: + # ty is an instance (correct), so issubclass fails. + pass + + return FuncParamType(ty) + + +#: A dummy parameter type that just does nothing. From a user's +#: perspective this appears to just be the same as `STRING` but +#: internally no string conversion takes place if the input was bytes. +#: This is usually useful when working with file paths as they can +#: appear in bytes and unicode. +#: +#: For path related uses the :class:`Path` type is a better choice but +#: there are situations where an unprocessed type is useful which is why +#: it is is provided. +#: +#: .. versionadded:: 4.0 +UNPROCESSED = UnprocessedParamType() + +#: A unicode string parameter type which is the implicit default. This +#: can also be selected by using ``str`` as type. +STRING = StringParamType() + +#: An integer parameter. This can also be selected by using ``int`` as +#: type. +INT = IntParamType() + +#: A floating point value parameter. This can also be selected by using +#: ``float`` as type. +FLOAT = FloatParamType() + +#: A boolean parameter. This is the default for boolean flags. This can +#: also be selected by using ``bool`` as a type. +BOOL = BoolParamType() + +#: A UUID parameter. +UUID = UUIDParameterType() + + +class OptionHelpExtra(t.TypedDict, total=False): + envvars: tuple[str, ...] + default: str + range: str + required: str diff --git a/ocr/.venv/Lib/site-packages/click/utils.py b/ocr/.venv/Lib/site-packages/click/utils.py new file mode 100644 index 00000000..beae26f7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/click/utils.py @@ -0,0 +1,627 @@ +from __future__ import annotations + +import collections.abc as cabc +import os +import re +import sys +import typing as t +from functools import update_wrapper +from types import ModuleType +from types import TracebackType + +from ._compat import _default_text_stderr +from ._compat import _default_text_stdout +from ._compat import _find_binary_writer +from ._compat import auto_wrap_for_ansi +from ._compat import binary_streams +from ._compat import open_stream +from ._compat import should_strip_ansi +from ._compat import strip_ansi +from ._compat import text_streams +from ._compat import WIN +from .globals import resolve_color_default + +if t.TYPE_CHECKING: + import typing_extensions as te + + P = te.ParamSpec("P") + +R = t.TypeVar("R") + + +def _posixify(name: str) -> str: + return "-".join(name.split()).lower() + + +def safecall(func: t.Callable[P, R]) -> t.Callable[P, R | None]: + """Wraps a function so that it swallows exceptions.""" + + def wrapper(*args: P.args, **kwargs: P.kwargs) -> R | None: + try: + return func(*args, **kwargs) + except Exception: + pass + return None + + return update_wrapper(wrapper, func) + + +def make_str(value: t.Any) -> str: + """Converts a value into a valid string.""" + if isinstance(value, bytes): + try: + return value.decode(sys.getfilesystemencoding()) + except UnicodeError: + return value.decode("utf-8", "replace") + return str(value) + + +def make_default_short_help(help: str, max_length: int = 45) -> str: + """Returns a condensed version of help string.""" + # Consider only the first paragraph. + paragraph_end = help.find("\n\n") + + if paragraph_end != -1: + help = help[:paragraph_end] + + # Collapse newlines, tabs, and spaces. + words = help.split() + + if not words: + return "" + + # The first paragraph started with a "no rewrap" marker, ignore it. + if words[0] == "\b": + words = words[1:] + + total_length = 0 + last_index = len(words) - 1 + + for i, word in enumerate(words): + total_length += len(word) + (i > 0) + + if total_length > max_length: # too long, truncate + break + + if word[-1] == ".": # sentence end, truncate without "..." + return " ".join(words[: i + 1]) + + if total_length == max_length and i != last_index: + break # not at sentence end, truncate with "..." + else: + return " ".join(words) # no truncation needed + + # Account for the length of the suffix. + total_length += len("...") + + # remove words until the length is short enough + while i > 0: + total_length -= len(words[i]) + (i > 0) + + if total_length <= max_length: + break + + i -= 1 + + return " ".join(words[:i]) + "..." + + +class LazyFile: + """A lazy file works like a regular file but it does not fully open + the file but it does perform some basic checks early to see if the + filename parameter does make sense. This is useful for safely opening + files for writing. + """ + + def __init__( + self, + filename: str | os.PathLike[str], + mode: str = "r", + encoding: str | None = None, + errors: str | None = "strict", + atomic: bool = False, + ): + self.name: str = os.fspath(filename) + self.mode = mode + self.encoding = encoding + self.errors = errors + self.atomic = atomic + self._f: t.IO[t.Any] | None + self.should_close: bool + + if self.name == "-": + self._f, self.should_close = open_stream(filename, mode, encoding, errors) + else: + if "r" in mode: + # Open and close the file in case we're opening it for + # reading so that we can catch at least some errors in + # some cases early. + open(filename, mode).close() + self._f = None + self.should_close = True + + def __getattr__(self, name: str) -> t.Any: + return getattr(self.open(), name) + + def __repr__(self) -> str: + if self._f is not None: + return repr(self._f) + return f"" + + def open(self) -> t.IO[t.Any]: + """Opens the file if it's not yet open. This call might fail with + a :exc:`FileError`. Not handling this error will produce an error + that Click shows. + """ + if self._f is not None: + return self._f + try: + rv, self.should_close = open_stream( + self.name, self.mode, self.encoding, self.errors, atomic=self.atomic + ) + except OSError as e: + from .exceptions import FileError + + raise FileError(self.name, hint=e.strerror) from e + self._f = rv + return rv + + def close(self) -> None: + """Closes the underlying file, no matter what.""" + if self._f is not None: + self._f.close() + + def close_intelligently(self) -> None: + """This function only closes the file if it was opened by the lazy + file wrapper. For instance this will never close stdin. + """ + if self.should_close: + self.close() + + def __enter__(self) -> LazyFile: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.close_intelligently() + + def __iter__(self) -> cabc.Iterator[t.AnyStr]: + self.open() + return iter(self._f) # type: ignore + + +class KeepOpenFile: + def __init__(self, file: t.IO[t.Any]) -> None: + self._file: t.IO[t.Any] = file + + def __getattr__(self, name: str) -> t.Any: + return getattr(self._file, name) + + def __enter__(self) -> KeepOpenFile: + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + pass + + def __repr__(self) -> str: + return repr(self._file) + + def __iter__(self) -> cabc.Iterator[t.AnyStr]: + return iter(self._file) + + +def echo( + message: t.Any | None = None, + file: t.IO[t.Any] | None = None, + nl: bool = True, + err: bool = False, + color: bool | None = None, +) -> None: + """Print a message and newline to stdout or a file. This should be + used instead of :func:`print` because it provides better support + for different data, files, and environments. + + Compared to :func:`print`, this does the following: + + - Ensures that the output encoding is not misconfigured on Linux. + - Supports Unicode in the Windows console. + - Supports writing to binary outputs, and supports writing bytes + to text outputs. + - Supports colors and styles on Windows. + - Removes ANSI color and style codes if the output does not look + like an interactive terminal. + - Always flushes the output. + + :param message: The string or bytes to output. Other objects are + converted to strings. + :param file: The file to write to. Defaults to ``stdout``. + :param err: Write to ``stderr`` instead of ``stdout``. + :param nl: Print a newline after the message. Enabled by default. + :param color: Force showing or hiding colors and other styles. By + default Click will remove color if the output does not look like + an interactive terminal. + + .. versionchanged:: 6.0 + Support Unicode output on the Windows console. Click does not + modify ``sys.stdout``, so ``sys.stdout.write()`` and ``print()`` + will still not support Unicode. + + .. versionchanged:: 4.0 + Added the ``color`` parameter. + + .. versionadded:: 3.0 + Added the ``err`` parameter. + + .. versionchanged:: 2.0 + Support colors on Windows if colorama is installed. + """ + if file is None: + if err: + file = _default_text_stderr() + else: + file = _default_text_stdout() + + # There are no standard streams attached to write to. For example, + # pythonw on Windows. + if file is None: + return + + # Convert non bytes/text into the native string type. + if message is not None and not isinstance(message, (str, bytes, bytearray)): + out: str | bytes | bytearray | None = str(message) + else: + out = message + + if nl: + out = out or "" + if isinstance(out, str): + out += "\n" + else: + out += b"\n" + + if not out: + file.flush() + return + + # If there is a message and the value looks like bytes, we manually + # need to find the binary stream and write the message in there. + # This is done separately so that most stream types will work as you + # would expect. Eg: you can write to StringIO for other cases. + if isinstance(out, (bytes, bytearray)): + binary_file = _find_binary_writer(file) + + if binary_file is not None: + file.flush() + binary_file.write(out) + binary_file.flush() + return + + # ANSI style code support. For no message or bytes, nothing happens. + # When outputting to a file instead of a terminal, strip codes. + else: + color = resolve_color_default(color) + + if should_strip_ansi(file, color): + out = strip_ansi(out) + elif WIN: + if auto_wrap_for_ansi is not None: + file = auto_wrap_for_ansi(file, color) # type: ignore + elif not color: + out = strip_ansi(out) + + file.write(out) # type: ignore + file.flush() + + +def get_binary_stream(name: t.Literal["stdin", "stdout", "stderr"]) -> t.BinaryIO: + """Returns a system stream for byte processing. + + :param name: the name of the stream to open. Valid names are ``'stdin'``, + ``'stdout'`` and ``'stderr'`` + """ + opener = binary_streams.get(name) + if opener is None: + raise TypeError(f"Unknown standard stream '{name}'") + return opener() + + +def get_text_stream( + name: t.Literal["stdin", "stdout", "stderr"], + encoding: str | None = None, + errors: str | None = "strict", +) -> t.TextIO: + """Returns a system stream for text processing. This usually returns + a wrapped stream around a binary stream returned from + :func:`get_binary_stream` but it also can take shortcuts for already + correctly configured streams. + + :param name: the name of the stream to open. Valid names are ``'stdin'``, + ``'stdout'`` and ``'stderr'`` + :param encoding: overrides the detected default encoding. + :param errors: overrides the default error mode. + """ + opener = text_streams.get(name) + if opener is None: + raise TypeError(f"Unknown standard stream '{name}'") + return opener(encoding, errors) + + +def open_file( + filename: str | os.PathLike[str], + mode: str = "r", + encoding: str | None = None, + errors: str | None = "strict", + lazy: bool = False, + atomic: bool = False, +) -> t.IO[t.Any]: + """Open a file, with extra behavior to handle ``'-'`` to indicate + a standard stream, lazy open on write, and atomic write. Similar to + the behavior of the :class:`~click.File` param type. + + If ``'-'`` is given to open ``stdout`` or ``stdin``, the stream is + wrapped so that using it in a context manager will not close it. + This makes it possible to use the function without accidentally + closing a standard stream: + + .. code-block:: python + + with open_file(filename) as f: + ... + + :param filename: The name or Path of the file to open, or ``'-'`` for + ``stdin``/``stdout``. + :param mode: The mode in which to open the file. + :param encoding: The encoding to decode or encode a file opened in + text mode. + :param errors: The error handling mode. + :param lazy: Wait to open the file until it is accessed. For read + mode, the file is temporarily opened to raise access errors + early, then closed until it is read again. + :param atomic: Write to a temporary file and replace the given file + on close. + + .. versionadded:: 3.0 + """ + if lazy: + return t.cast( + "t.IO[t.Any]", LazyFile(filename, mode, encoding, errors, atomic=atomic) + ) + + f, should_close = open_stream(filename, mode, encoding, errors, atomic=atomic) + + if not should_close: + f = t.cast("t.IO[t.Any]", KeepOpenFile(f)) + + return f + + +def format_filename( + filename: str | bytes | os.PathLike[str] | os.PathLike[bytes], + shorten: bool = False, +) -> str: + """Format a filename as a string for display. Ensures the filename can be + displayed by replacing any invalid bytes or surrogate escapes in the name + with the replacement character ``�``. + + Invalid bytes or surrogate escapes will raise an error when written to a + stream with ``errors="strict"``. This will typically happen with ``stdout`` + when the locale is something like ``en_GB.UTF-8``. + + Many scenarios *are* safe to write surrogates though, due to PEP 538 and + PEP 540, including: + + - Writing to ``stderr``, which uses ``errors="backslashreplace"``. + - The system has ``LANG=C.UTF-8``, ``C``, or ``POSIX``. Python opens + stdout and stderr with ``errors="surrogateescape"``. + - None of ``LANG/LC_*`` are set. Python assumes ``LANG=C.UTF-8``. + - Python is started in UTF-8 mode with ``PYTHONUTF8=1`` or ``-X utf8``. + Python opens stdout and stderr with ``errors="surrogateescape"``. + + :param filename: formats a filename for UI display. This will also convert + the filename into unicode without failing. + :param shorten: this optionally shortens the filename to strip of the + path that leads up to it. + """ + if shorten: + filename = os.path.basename(filename) + else: + filename = os.fspath(filename) + + if isinstance(filename, bytes): + filename = filename.decode(sys.getfilesystemencoding(), "replace") + else: + filename = filename.encode("utf-8", "surrogateescape").decode( + "utf-8", "replace" + ) + + return filename + + +def get_app_dir(app_name: str, roaming: bool = True, force_posix: bool = False) -> str: + r"""Returns the config folder for the application. The default behavior + is to return whatever is most appropriate for the operating system. + + To give you an idea, for an app called ``"Foo Bar"``, something like + the following folders could be returned: + + Mac OS X: + ``~/Library/Application Support/Foo Bar`` + Mac OS X (POSIX): + ``~/.foo-bar`` + Unix: + ``~/.config/foo-bar`` + Unix (POSIX): + ``~/.foo-bar`` + Windows (roaming): + ``C:\Users\\AppData\Roaming\Foo Bar`` + Windows (not roaming): + ``C:\Users\\AppData\Local\Foo Bar`` + + .. versionadded:: 2.0 + + :param app_name: the application name. This should be properly capitalized + and can contain whitespace. + :param roaming: controls if the folder should be roaming or not on Windows. + Has no effect otherwise. + :param force_posix: if this is set to `True` then on any POSIX system the + folder will be stored in the home folder with a leading + dot instead of the XDG config home or darwin's + application support folder. + """ + if WIN: + key = "APPDATA" if roaming else "LOCALAPPDATA" + folder = os.environ.get(key) + if folder is None: + folder = os.path.expanduser("~") + return os.path.join(folder, app_name) + if force_posix: + return os.path.join(os.path.expanduser(f"~/.{_posixify(app_name)}")) + if sys.platform == "darwin": + return os.path.join( + os.path.expanduser("~/Library/Application Support"), app_name + ) + return os.path.join( + os.environ.get("XDG_CONFIG_HOME", os.path.expanduser("~/.config")), + _posixify(app_name), + ) + + +class PacifyFlushWrapper: + """This wrapper is used to catch and suppress BrokenPipeErrors resulting + from ``.flush()`` being called on broken pipe during the shutdown/final-GC + of the Python interpreter. Notably ``.flush()`` is always called on + ``sys.stdout`` and ``sys.stderr``. So as to have minimal impact on any + other cleanup code, and the case where the underlying file is not a broken + pipe, all calls and attributes are proxied. + """ + + def __init__(self, wrapped: t.IO[t.Any]) -> None: + self.wrapped = wrapped + + def flush(self) -> None: + try: + self.wrapped.flush() + except OSError as e: + import errno + + if e.errno != errno.EPIPE: + raise + + def __getattr__(self, attr: str) -> t.Any: + return getattr(self.wrapped, attr) + + +def _detect_program_name( + path: str | None = None, _main: ModuleType | None = None +) -> str: + """Determine the command used to run the program, for use in help + text. If a file or entry point was executed, the file name is + returned. If ``python -m`` was used to execute a module or package, + ``python -m name`` is returned. + + This doesn't try to be too precise, the goal is to give a concise + name for help text. Files are only shown as their name without the + path. ``python`` is only shown for modules, and the full path to + ``sys.executable`` is not shown. + + :param path: The Python file being executed. Python puts this in + ``sys.argv[0]``, which is used by default. + :param _main: The ``__main__`` module. This should only be passed + during internal testing. + + .. versionadded:: 8.0 + Based on command args detection in the Werkzeug reloader. + + :meta private: + """ + if _main is None: + _main = sys.modules["__main__"] + + if not path: + path = sys.argv[0] + + # The value of __package__ indicates how Python was called. It may + # not exist if a setuptools script is installed as an egg. It may be + # set incorrectly for entry points created with pip on Windows. + # It is set to "" inside a Shiv or PEX zipapp. + if getattr(_main, "__package__", None) in {None, ""} or ( + os.name == "nt" + and _main.__package__ == "" + and not os.path.exists(path) + and os.path.exists(f"{path}.exe") + ): + # Executed a file, like "python app.py". + return os.path.basename(path) + + # Executed a module, like "python -m example". + # Rewritten by Python from "-m script" to "/path/to/script.py". + # Need to look at main module to determine how it was executed. + py_module = t.cast(str, _main.__package__) + name = os.path.splitext(os.path.basename(path))[0] + + # A submodule like "example.cli". + if name != "__main__": + py_module = f"{py_module}.{name}" + + return f"python -m {py_module.lstrip('.')}" + + +def _expand_args( + args: cabc.Iterable[str], + *, + user: bool = True, + env: bool = True, + glob_recursive: bool = True, +) -> list[str]: + """Simulate Unix shell expansion with Python functions. + + See :func:`glob.glob`, :func:`os.path.expanduser`, and + :func:`os.path.expandvars`. + + This is intended for use on Windows, where the shell does not do any + expansion. It may not exactly match what a Unix shell would do. + + :param args: List of command line arguments to expand. + :param user: Expand user home directory. + :param env: Expand environment variables. + :param glob_recursive: ``**`` matches directories recursively. + + .. versionchanged:: 8.1 + Invalid glob patterns are treated as empty expansions rather + than raising an error. + + .. versionadded:: 8.0 + + :meta private: + """ + from glob import glob + + out = [] + + for arg in args: + if user: + arg = os.path.expanduser(arg) + + if env: + arg = os.path.expandvars(arg) + + try: + matches = glob(arg, recursive=glob_recursive) + except re.error: + matches = [] + + if not matches: + out.append(arg) + else: + out.extend(matches) + + return out diff --git a/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/METADATA b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/METADATA new file mode 100644 index 00000000..a1b5c575 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/METADATA @@ -0,0 +1,441 @@ +Metadata-Version: 2.1 +Name: colorama +Version: 0.4.6 +Summary: Cross-platform colored terminal text. +Project-URL: Homepage, https://github.com/tartley/colorama +Author-email: Jonathan Hartley +License-File: LICENSE.txt +Keywords: ansi,color,colour,crossplatform,terminal,text,windows,xplatform +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Terminals +Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7 +Description-Content-Type: text/x-rst + +.. image:: https://img.shields.io/pypi/v/colorama.svg + :target: https://pypi.org/project/colorama/ + :alt: Latest Version + +.. image:: https://img.shields.io/pypi/pyversions/colorama.svg + :target: https://pypi.org/project/colorama/ + :alt: Supported Python versions + +.. image:: https://github.com/tartley/colorama/actions/workflows/test.yml/badge.svg + :target: https://github.com/tartley/colorama/actions/workflows/test.yml + :alt: Build Status + +Colorama +======== + +Makes ANSI escape character sequences (for producing colored terminal text and +cursor positioning) work under MS Windows. + +.. |donate| image:: https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif + :target: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=2MZ9D2GMLYCUJ&item_name=Colorama¤cy_code=USD + :alt: Donate with Paypal + +`PyPI for releases `_ | +`Github for source `_ | +`Colorama for enterprise on Tidelift `_ + +If you find Colorama useful, please |donate| to the authors. Thank you! + +Installation +------------ + +Tested on CPython 2.7, 3.7, 3.8, 3.9 and 3.10 and Pypy 2.7 and 3.8. + +No requirements other than the standard library. + +.. code-block:: bash + + pip install colorama + # or + conda install -c anaconda colorama + +Description +----------- + +ANSI escape character sequences have long been used to produce colored terminal +text and cursor positioning on Unix and Macs. Colorama makes this work on +Windows, too, by wrapping ``stdout``, stripping ANSI sequences it finds (which +would appear as gobbledygook in the output), and converting them into the +appropriate win32 calls to modify the state of the terminal. On other platforms, +Colorama does nothing. + +This has the upshot of providing a simple cross-platform API for printing +colored terminal text from Python, and has the happy side-effect that existing +applications or libraries which use ANSI sequences to produce colored output on +Linux or Macs can now also work on Windows, simply by calling +``colorama.just_fix_windows_console()`` (since v0.4.6) or ``colorama.init()`` +(all versions, but may have other side-effects – see below). + +An alternative approach is to install ``ansi.sys`` on Windows machines, which +provides the same behaviour for all applications running in terminals. Colorama +is intended for situations where that isn't easy (e.g., maybe your app doesn't +have an installer.) + +Demo scripts in the source code repository print some colored text using +ANSI sequences. Compare their output under Gnome-terminal's built in ANSI +handling, versus on Windows Command-Prompt using Colorama: + +.. image:: https://github.com/tartley/colorama/raw/master/screenshots/ubuntu-demo.png + :width: 661 + :height: 357 + :alt: ANSI sequences on Ubuntu under gnome-terminal. + +.. image:: https://github.com/tartley/colorama/raw/master/screenshots/windows-demo.png + :width: 668 + :height: 325 + :alt: Same ANSI sequences on Windows, using Colorama. + +These screenshots show that, on Windows, Colorama does not support ANSI 'dim +text'; it looks the same as 'normal text'. + +Usage +----- + +Initialisation +.............. + +If the only thing you want from Colorama is to get ANSI escapes to work on +Windows, then run: + +.. code-block:: python + + from colorama import just_fix_windows_console + just_fix_windows_console() + +If you're on a recent version of Windows 10 or better, and your stdout/stderr +are pointing to a Windows console, then this will flip the magic configuration +switch to enable Windows' built-in ANSI support. + +If you're on an older version of Windows, and your stdout/stderr are pointing to +a Windows console, then this will wrap ``sys.stdout`` and/or ``sys.stderr`` in a +magic file object that intercepts ANSI escape sequences and issues the +appropriate Win32 calls to emulate them. + +In all other circumstances, it does nothing whatsoever. Basically the idea is +that this makes Windows act like Unix with respect to ANSI escape handling. + +It's safe to call this function multiple times. It's safe to call this function +on non-Windows platforms, but it won't do anything. It's safe to call this +function when one or both of your stdout/stderr are redirected to a file – it +won't do anything to those streams. + +Alternatively, you can use the older interface with more features (but also more +potential footguns): + +.. code-block:: python + + from colorama import init + init() + +This does the same thing as ``just_fix_windows_console``, except for the +following differences: + +- It's not safe to call ``init`` multiple times; you can end up with multiple + layers of wrapping and broken ANSI support. + +- Colorama will apply a heuristic to guess whether stdout/stderr support ANSI, + and if it thinks they don't, then it will wrap ``sys.stdout`` and + ``sys.stderr`` in a magic file object that strips out ANSI escape sequences + before printing them. This happens on all platforms, and can be convenient if + you want to write your code to emit ANSI escape sequences unconditionally, and + let Colorama decide whether they should actually be output. But note that + Colorama's heuristic is not particularly clever. + +- ``init`` also accepts explicit keyword args to enable/disable various + functionality – see below. + +To stop using Colorama before your program exits, simply call ``deinit()``. +This will restore ``stdout`` and ``stderr`` to their original values, so that +Colorama is disabled. To resume using Colorama again, call ``reinit()``; it is +cheaper than calling ``init()`` again (but does the same thing). + +Most users should depend on ``colorama >= 0.4.6``, and use +``just_fix_windows_console``. The old ``init`` interface will be supported +indefinitely for backwards compatibility, but we don't plan to fix any issues +with it, also for backwards compatibility. + +Colored Output +.............. + +Cross-platform printing of colored text can then be done using Colorama's +constant shorthand for ANSI escape sequences. These are deliberately +rudimentary, see below. + +.. code-block:: python + + from colorama import Fore, Back, Style + print(Fore.RED + 'some red text') + print(Back.GREEN + 'and with a green background') + print(Style.DIM + 'and in dim text') + print(Style.RESET_ALL) + print('back to normal now') + +...or simply by manually printing ANSI sequences from your own code: + +.. code-block:: python + + print('\033[31m' + 'some red text') + print('\033[39m') # and reset to default color + +...or, Colorama can be used in conjunction with existing ANSI libraries +such as the venerable `Termcolor `_ +the fabulous `Blessings `_, +or the incredible `_Rich `_. + +If you wish Colorama's Fore, Back and Style constants were more capable, +then consider using one of the above highly capable libraries to generate +colors, etc, and use Colorama just for its primary purpose: to convert +those ANSI sequences to also work on Windows: + +SIMILARLY, do not send PRs adding the generation of new ANSI types to Colorama. +We are only interested in converting ANSI codes to win32 API calls, not +shortcuts like the above to generate ANSI characters. + +.. code-block:: python + + from colorama import just_fix_windows_console + from termcolor import colored + + # use Colorama to make Termcolor work on Windows too + just_fix_windows_console() + + # then use Termcolor for all colored text output + print(colored('Hello, World!', 'green', 'on_red')) + +Available formatting constants are:: + + Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET. + Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET. + Style: DIM, NORMAL, BRIGHT, RESET_ALL + +``Style.RESET_ALL`` resets foreground, background, and brightness. Colorama will +perform this reset automatically on program exit. + +These are fairly well supported, but not part of the standard:: + + Fore: LIGHTBLACK_EX, LIGHTRED_EX, LIGHTGREEN_EX, LIGHTYELLOW_EX, LIGHTBLUE_EX, LIGHTMAGENTA_EX, LIGHTCYAN_EX, LIGHTWHITE_EX + Back: LIGHTBLACK_EX, LIGHTRED_EX, LIGHTGREEN_EX, LIGHTYELLOW_EX, LIGHTBLUE_EX, LIGHTMAGENTA_EX, LIGHTCYAN_EX, LIGHTWHITE_EX + +Cursor Positioning +.................. + +ANSI codes to reposition the cursor are supported. See ``demos/demo06.py`` for +an example of how to generate them. + +Init Keyword Args +................. + +``init()`` accepts some ``**kwargs`` to override default behaviour. + +init(autoreset=False): + If you find yourself repeatedly sending reset sequences to turn off color + changes at the end of every print, then ``init(autoreset=True)`` will + automate that: + + .. code-block:: python + + from colorama import init + init(autoreset=True) + print(Fore.RED + 'some red text') + print('automatically back to default color again') + +init(strip=None): + Pass ``True`` or ``False`` to override whether ANSI codes should be + stripped from the output. The default behaviour is to strip if on Windows + or if output is redirected (not a tty). + +init(convert=None): + Pass ``True`` or ``False`` to override whether to convert ANSI codes in the + output into win32 calls. The default behaviour is to convert if on Windows + and output is to a tty (terminal). + +init(wrap=True): + On Windows, Colorama works by replacing ``sys.stdout`` and ``sys.stderr`` + with proxy objects, which override the ``.write()`` method to do their work. + If this wrapping causes you problems, then this can be disabled by passing + ``init(wrap=False)``. The default behaviour is to wrap if ``autoreset`` or + ``strip`` or ``convert`` are True. + + When wrapping is disabled, colored printing on non-Windows platforms will + continue to work as normal. To do cross-platform colored output, you can + use Colorama's ``AnsiToWin32`` proxy directly: + + .. code-block:: python + + import sys + from colorama import init, AnsiToWin32 + init(wrap=False) + stream = AnsiToWin32(sys.stderr).stream + + # Python 2 + print >>stream, Fore.BLUE + 'blue text on stderr' + + # Python 3 + print(Fore.BLUE + 'blue text on stderr', file=stream) + +Recognised ANSI Sequences +......................... + +ANSI sequences generally take the form:: + + ESC [ ; ... + +Where ```` is an integer, and ```` is a single letter. Zero or +more params are passed to a ````. If no params are passed, it is +generally synonymous with passing a single zero. No spaces exist in the +sequence; they have been inserted here simply to read more easily. + +The only ANSI sequences that Colorama converts into win32 calls are:: + + ESC [ 0 m # reset all (colors and brightness) + ESC [ 1 m # bright + ESC [ 2 m # dim (looks same as normal brightness) + ESC [ 22 m # normal brightness + + # FOREGROUND: + ESC [ 30 m # black + ESC [ 31 m # red + ESC [ 32 m # green + ESC [ 33 m # yellow + ESC [ 34 m # blue + ESC [ 35 m # magenta + ESC [ 36 m # cyan + ESC [ 37 m # white + ESC [ 39 m # reset + + # BACKGROUND + ESC [ 40 m # black + ESC [ 41 m # red + ESC [ 42 m # green + ESC [ 43 m # yellow + ESC [ 44 m # blue + ESC [ 45 m # magenta + ESC [ 46 m # cyan + ESC [ 47 m # white + ESC [ 49 m # reset + + # cursor positioning + ESC [ y;x H # position cursor at x across, y down + ESC [ y;x f # position cursor at x across, y down + ESC [ n A # move cursor n lines up + ESC [ n B # move cursor n lines down + ESC [ n C # move cursor n characters forward + ESC [ n D # move cursor n characters backward + + # clear the screen + ESC [ mode J # clear the screen + + # clear the line + ESC [ mode K # clear the line + +Multiple numeric params to the ``'m'`` command can be combined into a single +sequence:: + + ESC [ 36 ; 45 ; 1 m # bright cyan text on magenta background + +All other ANSI sequences of the form ``ESC [ ; ... `` +are silently stripped from the output on Windows. + +Any other form of ANSI sequence, such as single-character codes or alternative +initial characters, are not recognised or stripped. It would be cool to add +them though. Let me know if it would be useful for you, via the Issues on +GitHub. + +Status & Known Problems +----------------------- + +I've personally only tested it on Windows XP (CMD, Console2), Ubuntu +(gnome-terminal, xterm), and OS X. + +Some valid ANSI sequences aren't recognised. + +If you're hacking on the code, see `README-hacking.md`_. ESPECIALLY, see the +explanation there of why we do not want PRs that allow Colorama to generate new +types of ANSI codes. + +See outstanding issues and wish-list: +https://github.com/tartley/colorama/issues + +If anything doesn't work for you, or doesn't do what you expected or hoped for, +I'd love to hear about it on that issues list, would be delighted by patches, +and would be happy to grant commit access to anyone who submits a working patch +or two. + +.. _README-hacking.md: README-hacking.md + +License +------- + +Copyright Jonathan Hartley & Arnon Yaari, 2013-2020. BSD 3-Clause license; see +LICENSE file. + +Professional support +-------------------- + +.. |tideliftlogo| image:: https://cdn2.hubspot.net/hubfs/4008838/website/logos/logos_for_download/Tidelift_primary-shorthand-logo.png + :alt: Tidelift + :target: https://tidelift.com/subscription/pkg/pypi-colorama?utm_source=pypi-colorama&utm_medium=referral&utm_campaign=readme + +.. list-table:: + :widths: 10 100 + + * - |tideliftlogo| + - Professional support for colorama is available as part of the + `Tidelift Subscription`_. + Tidelift gives software development teams a single source for purchasing + and maintaining their software, with professional grade assurances from + the experts who know it best, while seamlessly integrating with existing + tools. + +.. _Tidelift Subscription: https://tidelift.com/subscription/pkg/pypi-colorama?utm_source=pypi-colorama&utm_medium=referral&utm_campaign=readme + +Thanks +------ + +See the CHANGELOG for more thanks! + +* Marc Schlaich (schlamar) for a ``setup.py`` fix for Python2.5. +* Marc Abramowitz, reported & fixed a crash on exit with closed ``stdout``, + providing a solution to issue #7's setuptools/distutils debate, + and other fixes. +* User 'eryksun', for guidance on correctly instantiating ``ctypes.windll``. +* Matthew McCormick for politely pointing out a longstanding crash on non-Win. +* Ben Hoyt, for a magnificent fix under 64-bit Windows. +* Jesse at Empty Square for submitting a fix for examples in the README. +* User 'jamessp', an observant documentation fix for cursor positioning. +* User 'vaal1239', Dave Mckee & Lackner Kristof for a tiny but much-needed Win7 + fix. +* Julien Stuyck, for wisely suggesting Python3 compatible updates to README. +* Daniel Griffith for multiple fabulous patches. +* Oscar Lesta for a valuable fix to stop ANSI chars being sent to non-tty + output. +* Roger Binns, for many suggestions, valuable feedback, & bug reports. +* Tim Golden for thought and much appreciated feedback on the initial idea. +* User 'Zearin' for updates to the README file. +* John Szakmeister for adding support for light colors +* Charles Merriam for adding documentation to demos +* Jurko for a fix on 64-bit Windows CPython2.5 w/o ctypes +* Florian Bruhin for a fix when stdout or stderr are None +* Thomas Weininger for fixing ValueError on Windows +* Remi Rampin for better Github integration and fixes to the README file +* Simeon Visser for closing a file handle using 'with' and updating classifiers + to include Python 3.3 and 3.4 +* Andy Neff for fixing RESET of LIGHT_EX colors. +* Jonathan Hartley for the initial idea and implementation. diff --git a/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/RECORD b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/RECORD new file mode 100644 index 00000000..8c5f12de --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/RECORD @@ -0,0 +1,31 @@ +colorama-0.4.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +colorama-0.4.6.dist-info/METADATA,sha256=e67SnrUMOym9sz_4TjF3vxvAV4T3aF7NyqRHHH3YEMw,17158 +colorama-0.4.6.dist-info/RECORD,, +colorama-0.4.6.dist-info/WHEEL,sha256=cdcF4Fbd0FPtw2EMIOwH-3rSOTUdTCeOSXRMD1iLUb8,105 +colorama-0.4.6.dist-info/licenses/LICENSE.txt,sha256=ysNcAmhuXQSlpxQL-zs25zrtSWZW6JEQLkKIhteTAxg,1491 +colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 +colorama/__pycache__/__init__.cpython-310.pyc,, +colorama/__pycache__/ansi.cpython-310.pyc,, +colorama/__pycache__/ansitowin32.cpython-310.pyc,, +colorama/__pycache__/initialise.cpython-310.pyc,, +colorama/__pycache__/win32.cpython-310.pyc,, +colorama/__pycache__/winterm.cpython-310.pyc,, +colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 +colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 +colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 +colorama/tests/__pycache__/__init__.cpython-310.pyc,, +colorama/tests/__pycache__/ansi_test.cpython-310.pyc,, +colorama/tests/__pycache__/ansitowin32_test.cpython-310.pyc,, +colorama/tests/__pycache__/initialise_test.cpython-310.pyc,, +colorama/tests/__pycache__/isatty_test.cpython-310.pyc,, +colorama/tests/__pycache__/utils.cpython-310.pyc,, +colorama/tests/__pycache__/winterm_test.cpython-310.pyc,, +colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 +colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 +colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 +colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 +colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 +colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 +colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 +colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 diff --git a/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL new file mode 100644 index 00000000..d79189fd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: hatchling 1.11.1 +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any diff --git a/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt new file mode 100644 index 00000000..3105888e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt @@ -0,0 +1,27 @@ +Copyright (c) 2010 Jonathan Hartley +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holders, nor those of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/ocr/.venv/Lib/site-packages/colorama/__init__.py b/ocr/.venv/Lib/site-packages/colorama/__init__.py new file mode 100644 index 00000000..383101cd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/__init__.py @@ -0,0 +1,7 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.6' + diff --git a/ocr/.venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9561ca9e4ab125ceaaaebed92dae5f49d06643b GIT binary patch literal 465 zcmYk2%}N6?5P&z^>~_1`dhpbPFR%w!X~lzxSQSwaJ@^M95Y}##)cllWTdNP^JNQbu zdh!)KnLz{x@=azYnLjfaXDwxNk|#|9a*S8>4!TegC@C-%JeJLips=ep+)P{hW~2&s|Qmf zjjdJ9TE1%iaJFzQdlW17B6MS39Ge>LjN~Qu_|#bL@lic}_Q`eoD!EUO7uFeDB413j z6F25w=<(<+*{*h~-OF-~9cQb43Np_lQ< z7Qy2S#+KYVVKieOkzIqQfbYBGJ$f6eI69kgqo3#rch9Yv)2lhx_qCL~Ws`Girj}Mq wu9x&eJkXGwZ_dL&^%HmWZxvgNLEDT~^H-nkE7L3_KY%ql=x+lJQ6FXT52*xw`v3p{ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-310.pyc b/ocr/.venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80bc0416b3e9df55866305da168fffaefaeb796c GIT binary patch literal 2991 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 Zyh&V=tR^)w*;zhI!GX*NR@CWN{~uqKzAyj) literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-310.pyc b/ocr/.venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad10cef0fba08cf55d8bb158e6055acc1b1fae1e GIT binary patch literal 2248 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

{9^)n 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-310.pyc b/ocr/.venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4478209fa31547e810bc429b66538c31303eedfd GIT binary patch literal 2676 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/ansi_test.py b/ocr/.venv/Lib/site-packages/colorama/tests/ansi_test.py new file mode 100644 index 00000000..0a20c80f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/ansi_test.py @@ -0,0 +1,76 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansi import Back, Fore, Style +from ..ansitowin32 import AnsiToWin32 + +stdout_orig = sys.stdout +stderr_orig = sys.stderr + + +class AnsiTest(TestCase): + + def setUp(self): + # sanity check: stdout should be a file or StringIO object. + # It will only be AnsiToWin32 if init() has previously wrapped it + self.assertNotEqual(type(sys.stdout), AnsiToWin32) + self.assertNotEqual(type(sys.stderr), AnsiToWin32) + + def tearDown(self): + sys.stdout = stdout_orig + sys.stderr = stderr_orig + + + def testForeAttributes(self): + self.assertEqual(Fore.BLACK, '\033[30m') + self.assertEqual(Fore.RED, '\033[31m') + self.assertEqual(Fore.GREEN, '\033[32m') + self.assertEqual(Fore.YELLOW, '\033[33m') + self.assertEqual(Fore.BLUE, '\033[34m') + self.assertEqual(Fore.MAGENTA, '\033[35m') + self.assertEqual(Fore.CYAN, '\033[36m') + self.assertEqual(Fore.WHITE, '\033[37m') + self.assertEqual(Fore.RESET, '\033[39m') + + # Check the light, extended versions. + self.assertEqual(Fore.LIGHTBLACK_EX, '\033[90m') + self.assertEqual(Fore.LIGHTRED_EX, '\033[91m') + self.assertEqual(Fore.LIGHTGREEN_EX, '\033[92m') + self.assertEqual(Fore.LIGHTYELLOW_EX, '\033[93m') + self.assertEqual(Fore.LIGHTBLUE_EX, '\033[94m') + self.assertEqual(Fore.LIGHTMAGENTA_EX, '\033[95m') + self.assertEqual(Fore.LIGHTCYAN_EX, '\033[96m') + self.assertEqual(Fore.LIGHTWHITE_EX, '\033[97m') + + + def testBackAttributes(self): + self.assertEqual(Back.BLACK, '\033[40m') + self.assertEqual(Back.RED, '\033[41m') + self.assertEqual(Back.GREEN, '\033[42m') + self.assertEqual(Back.YELLOW, '\033[43m') + self.assertEqual(Back.BLUE, '\033[44m') + self.assertEqual(Back.MAGENTA, '\033[45m') + self.assertEqual(Back.CYAN, '\033[46m') + self.assertEqual(Back.WHITE, '\033[47m') + self.assertEqual(Back.RESET, '\033[49m') + + # Check the light, extended versions. + self.assertEqual(Back.LIGHTBLACK_EX, '\033[100m') + self.assertEqual(Back.LIGHTRED_EX, '\033[101m') + self.assertEqual(Back.LIGHTGREEN_EX, '\033[102m') + self.assertEqual(Back.LIGHTYELLOW_EX, '\033[103m') + self.assertEqual(Back.LIGHTBLUE_EX, '\033[104m') + self.assertEqual(Back.LIGHTMAGENTA_EX, '\033[105m') + self.assertEqual(Back.LIGHTCYAN_EX, '\033[106m') + self.assertEqual(Back.LIGHTWHITE_EX, '\033[107m') + + + def testStyleAttributes(self): + self.assertEqual(Style.DIM, '\033[2m') + self.assertEqual(Style.NORMAL, '\033[22m') + self.assertEqual(Style.BRIGHT, '\033[1m') + + +if __name__ == '__main__': + main() diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/ansitowin32_test.py b/ocr/.venv/Lib/site-packages/colorama/tests/ansitowin32_test.py new file mode 100644 index 00000000..91ca551f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/ansitowin32_test.py @@ -0,0 +1,294 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from io import StringIO, TextIOWrapper +from unittest import TestCase, main +try: + from contextlib import ExitStack +except ImportError: + # python 2 + from contextlib2 import ExitStack + +try: + from unittest.mock import MagicMock, Mock, patch +except ImportError: + from mock import MagicMock, Mock, patch + +from ..ansitowin32 import AnsiToWin32, StreamWrapper +from ..win32 import ENABLE_VIRTUAL_TERMINAL_PROCESSING +from .utils import osname + + +class StreamWrapperTest(TestCase): + + def testIsAProxy(self): + mockStream = Mock() + wrapper = StreamWrapper(mockStream, None) + self.assertTrue( wrapper.random_attr is mockStream.random_attr ) + + def testDelegatesWrite(self): + mockStream = Mock() + mockConverter = Mock() + wrapper = StreamWrapper(mockStream, mockConverter) + wrapper.write('hello') + self.assertTrue(mockConverter.write.call_args, (('hello',), {})) + + def testDelegatesContext(self): + mockConverter = Mock() + s = StringIO() + with StreamWrapper(s, mockConverter) as fp: + fp.write(u'hello') + self.assertTrue(s.closed) + + def testProxyNoContextManager(self): + mockStream = MagicMock() + mockStream.__enter__.side_effect = AttributeError() + mockConverter = Mock() + with self.assertRaises(AttributeError) as excinfo: + with StreamWrapper(mockStream, mockConverter) as wrapper: + wrapper.write('hello') + + def test_closed_shouldnt_raise_on_closed_stream(self): + stream = StringIO() + stream.close() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + + def test_closed_shouldnt_raise_on_detached_stream(self): + stream = TextIOWrapper(StringIO()) + stream.detach() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + +class AnsiToWin32Test(TestCase): + + def testInit(self): + mockStdout = Mock() + auto = Mock() + stream = AnsiToWin32(mockStdout, autoreset=auto) + self.assertEqual(stream.wrapped, mockStdout) + self.assertEqual(stream.autoreset, auto) + + @patch('colorama.ansitowin32.winterm', None) + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + def testStripIsTrueOnWindows(self): + with osname('nt'): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + self.assertTrue(stream.strip) + + def testStripIsFalseOffWindows(self): + with osname('posix'): + mockStdout = Mock(closed=False) + stream = AnsiToWin32(mockStdout) + self.assertFalse(stream.strip) + + def testWriteStripsAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = True + + stream.write('abc') + + self.assertFalse(stream.wrapped.write.called) + self.assertEqual(stream.write_and_convert.call_args, (('abc',), {})) + + def testWriteDoesNotStripAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = False + stream.convert = False + + stream.write('abc') + + self.assertFalse(stream.write_and_convert.called) + self.assertEqual(stream.wrapped.write.call_args, (('abc',), {})) + + def assert_autoresets(self, convert, autoreset=True): + stream = AnsiToWin32(Mock()) + stream.convert = convert + stream.reset_all = Mock() + stream.autoreset = autoreset + stream.winterm = Mock() + + stream.write('abc') + + self.assertEqual(stream.reset_all.called, autoreset) + + def testWriteAutoresets(self): + self.assert_autoresets(convert=True) + self.assert_autoresets(convert=False) + self.assert_autoresets(convert=True, autoreset=False) + self.assert_autoresets(convert=False, autoreset=False) + + def testWriteAndConvertWritesPlainText(self): + stream = AnsiToWin32(Mock()) + stream.write_and_convert( 'abc' ) + self.assertEqual( stream.wrapped.write.call_args, (('abc',), {}) ) + + def testWriteAndConvertStripsAllValidAnsi(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + data = [ + 'abc\033[mdef', + 'abc\033[0mdef', + 'abc\033[2mdef', + 'abc\033[02mdef', + 'abc\033[002mdef', + 'abc\033[40mdef', + 'abc\033[040mdef', + 'abc\033[0;1mdef', + 'abc\033[40;50mdef', + 'abc\033[50;30;40mdef', + 'abc\033[Adef', + 'abc\033[0Gdef', + 'abc\033[1;20;128Hdef', + ] + for datum in data: + stream.wrapped.write.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( + [args[0] for args in stream.wrapped.write.call_args_list], + [ ('abc',), ('def',) ] + ) + + def testWriteAndConvertSkipsEmptySnippets(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + stream.write_and_convert( '\033[40m\033[41m' ) + self.assertFalse( stream.wrapped.write.called ) + + def testWriteAndConvertCallsWin32WithParamsAndCommand(self): + stream = AnsiToWin32(Mock()) + stream.convert = True + stream.call_win32 = Mock() + stream.extract_params = Mock(return_value='params') + data = { + 'abc\033[adef': ('a', 'params'), + 'abc\033[;;bdef': ('b', 'params'), + 'abc\033[0cdef': ('c', 'params'), + 'abc\033[;;0;;Gdef': ('G', 'params'), + 'abc\033[1;20;128Hdef': ('H', 'params'), + } + for datum, expected in data.items(): + stream.call_win32.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( stream.call_win32.call_args[0], expected ) + + def test_reset_all_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + converter = AnsiToWin32(stream) + stream.close() + + converter.reset_all() + + def test_wrap_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + stream.close() + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(stream) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def test_wrap_shouldnt_raise_on_missing_closed_attr(self): + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(object()) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def testExtractParams(self): + stream = AnsiToWin32(Mock()) + data = { + '': (0,), + ';;': (0,), + '2': (2,), + ';;002;;': (2,), + '0;1': (0, 1), + ';;003;;456;;': (3, 456), + '11;22;33;44;55': (11, 22, 33, 44, 55), + } + for datum, expected in data.items(): + self.assertEqual(stream.extract_params('m', datum), expected) + + def testCallWin32UsesLookup(self): + listener = Mock() + stream = AnsiToWin32(listener) + stream.win32_calls = { + 1: (lambda *_, **__: listener(11),), + 2: (lambda *_, **__: listener(22),), + 3: (lambda *_, **__: listener(33),), + } + stream.call_win32('m', (3, 1, 99, 2)) + self.assertEqual( + [a[0][0] for a in listener.call_args_list], + [33, 11, 22] ) + + def test_osc_codes(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout, convert=True) + with patch('colorama.ansitowin32.winterm') as winterm: + data = [ + '\033]0\x07', # missing arguments + '\033]0;foo\x08', # wrong OSC command + '\033]0;colorama_test_title\x07', # should work + '\033]1;colorama_test_title\x07', # wrong set command + '\033]2;colorama_test_title\x07', # should work + '\033]' + ';' * 64 + '\x08', # see issue #247 + ] + for code in data: + stream.write(code) + self.assertEqual(winterm.set_title.call_count, 2) + + def test_native_windows_ansi(self): + with ExitStack() as stack: + def p(a, b): + stack.enter_context(patch(a, b, create=True)) + # Pretend to be on Windows + p("colorama.ansitowin32.os.name", "nt") + p("colorama.ansitowin32.winapi_test", lambda: True) + p("colorama.win32.winapi_test", lambda: True) + p("colorama.winterm.win32.windll", "non-None") + p("colorama.winterm.get_osfhandle", lambda _: 1234) + + # Pretend that our mock stream has native ANSI support + p( + "colorama.winterm.win32.GetConsoleMode", + lambda _: ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = True + stdout.fileno.return_value = 1 + + # Our fake console says it has native vt support, so AnsiToWin32 should + # enable that support and do nothing else. + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertFalse(stream.strip) + self.assertFalse(stream.convert) + self.assertFalse(stream.should_wrap()) + + # Now let's pretend we're on an old Windows console, that doesn't have + # native ANSI support. + p("colorama.winterm.win32.GetConsoleMode", lambda _: 0) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertTrue(stream.strip) + self.assertTrue(stream.convert) + self.assertTrue(stream.should_wrap()) + + +if __name__ == '__main__': + main() diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/initialise_test.py b/ocr/.venv/Lib/site-packages/colorama/tests/initialise_test.py new file mode 100644 index 00000000..89f9b075 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/initialise_test.py @@ -0,0 +1,189 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import patch, Mock +except ImportError: + from mock import patch, Mock + +from ..ansitowin32 import StreamWrapper +from ..initialise import init, just_fix_windows_console, _wipe_internal_state_for_tests +from .utils import osname, replace_by + +orig_stdout = sys.stdout +orig_stderr = sys.stderr + + +class InitTest(TestCase): + + @skipUnless(sys.stdout.isatty(), "sys.stdout is not a tty") + def setUp(self): + # sanity check + self.assertNotWrapped() + + def tearDown(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def assertWrapped(self): + self.assertIsNot(sys.stdout, orig_stdout, 'stdout should be wrapped') + self.assertIsNot(sys.stderr, orig_stderr, 'stderr should be wrapped') + self.assertTrue(isinstance(sys.stdout, StreamWrapper), + 'bad stdout wrapper') + self.assertTrue(isinstance(sys.stderr, StreamWrapper), + 'bad stderr wrapper') + + def assertNotWrapped(self): + self.assertIs(sys.stdout, orig_stdout, 'stdout should not be wrapped') + self.assertIs(sys.stderr, orig_stderr, 'stderr should not be wrapped') + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + @patch('colorama.ansitowin32.enable_vt_processing', lambda *_: False) + def testInitWrapsOnWindows(self, _): + with osname("nt"): + init() + self.assertWrapped() + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: False) + def testInitDoesntWrapOnEmulatedWindows(self, _): + with osname("nt"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapOnNonWindows(self): + with osname("posix"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapIfNone(self): + with replace_by(None): + init() + # We can't use assertNotWrapped here because replace_by(None) + # changes stdout/stderr already. + self.assertIsNone(sys.stdout) + self.assertIsNone(sys.stderr) + + def testInitAutoresetOnWrapsOnAllPlatforms(self): + with osname("posix"): + init(autoreset=True) + self.assertWrapped() + + def testInitWrapOffDoesntWrapOnWindows(self): + with osname("nt"): + init(wrap=False) + self.assertNotWrapped() + + def testInitWrapOffIncompatibleWithAutoresetOn(self): + self.assertRaises(ValueError, lambda: init(autoreset=True, wrap=False)) + + @patch('colorama.win32.SetConsoleTextAttribute') + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetPassedOn(self, mockATW32, _): + with osname("nt"): + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 2) + self.assertEqual(mockATW32.call_args_list[1][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[0][1]['autoreset'], True) + + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetChangeable(self, mockATW32): + with osname("nt"): + init() + + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 4) + self.assertEqual(mockATW32.call_args_list[2][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[3][1]['autoreset'], True) + + init() + self.assertEqual(len(mockATW32.call_args_list), 6) + self.assertEqual( + mockATW32.call_args_list[4][1]['autoreset'], False) + self.assertEqual( + mockATW32.call_args_list[5][1]['autoreset'], False) + + + @patch('colorama.initialise.atexit.register') + def testAtexitRegisteredOnlyOnce(self, mockRegister): + init() + self.assertTrue(mockRegister.called) + mockRegister.reset_mock() + init() + self.assertFalse(mockRegister.called) + + +class JustFixWindowsConsoleTest(TestCase): + def _reset(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def tearDown(self): + self._reset() + + @patch("colorama.ansitowin32.winapi_test", lambda: True) + def testJustFixWindowsConsole(self): + if sys.platform != "win32": + # just_fix_windows_console should be a no-op + just_fix_windows_console() + self.assertIs(sys.stdout, orig_stdout) + self.assertIs(sys.stderr, orig_stderr) + else: + def fake_std(): + # Emulate stdout=not a tty, stderr=tty + # to check that we handle both cases correctly + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = False + stdout.fileno.return_value = 1 + sys.stdout = stdout + + stderr = Mock() + stderr.closed = False + stderr.isatty.return_value = True + stderr.fileno.return_value = 2 + sys.stderr = stderr + + for native_ansi in [False, True]: + with patch( + 'colorama.ansitowin32.enable_vt_processing', + lambda *_: native_ansi + ): + self._reset() + fake_std() + + # Regular single-call test + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + if native_ansi: + self.assertIs(sys.stderr, prev_stderr) + else: + self.assertIsNot(sys.stderr, prev_stderr) + + # second call without resetting is always a no-op + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + self.assertIs(sys.stderr, prev_stderr) + + self._reset() + fake_std() + + # If init() runs first, just_fix_windows_console should be a no-op + init() + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(prev_stdout, sys.stdout) + self.assertIs(prev_stderr, sys.stderr) + + +if __name__ == '__main__': + main() diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/isatty_test.py b/ocr/.venv/Lib/site-packages/colorama/tests/isatty_test.py new file mode 100644 index 00000000..0f84e4be --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/isatty_test.py @@ -0,0 +1,57 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansitowin32 import StreamWrapper, AnsiToWin32 +from .utils import pycharm, replace_by, replace_original_by, StreamTTY, StreamNonTTY + + +def is_a_tty(stream): + return StreamWrapper(stream, None).isatty() + +class IsattyTest(TestCase): + + def test_TTY(self): + tty = StreamTTY() + self.assertTrue(is_a_tty(tty)) + with pycharm(): + self.assertTrue(is_a_tty(tty)) + + def test_nonTTY(self): + non_tty = StreamNonTTY() + self.assertFalse(is_a_tty(non_tty)) + with pycharm(): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharm(self): + with pycharm(): + self.assertTrue(is_a_tty(sys.stderr)) + self.assertTrue(is_a_tty(sys.stdout)) + + def test_withPycharmTTYOverride(self): + tty = StreamTTY() + with pycharm(), replace_by(tty): + self.assertTrue(is_a_tty(tty)) + + def test_withPycharmNonTTYOverride(self): + non_tty = StreamNonTTY() + with pycharm(), replace_by(non_tty): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharmNoneOverride(self): + with pycharm(): + with replace_by(None), replace_original_by(None): + self.assertFalse(is_a_tty(None)) + self.assertFalse(is_a_tty(StreamNonTTY())) + self.assertTrue(is_a_tty(StreamTTY())) + + def test_withPycharmStreamWrapped(self): + with pycharm(): + self.assertTrue(AnsiToWin32(StreamTTY()).stream.isatty()) + self.assertFalse(AnsiToWin32(StreamNonTTY()).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stdout).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stderr).stream.isatty()) + + +if __name__ == '__main__': + main() diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/utils.py b/ocr/.venv/Lib/site-packages/colorama/tests/utils.py new file mode 100644 index 00000000..472fafb4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/utils.py @@ -0,0 +1,49 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from contextlib import contextmanager +from io import StringIO +import sys +import os + + +class StreamTTY(StringIO): + def isatty(self): + return True + +class StreamNonTTY(StringIO): + def isatty(self): + return False + +@contextmanager +def osname(name): + orig = os.name + os.name = name + yield + os.name = orig + +@contextmanager +def replace_by(stream): + orig_stdout = sys.stdout + orig_stderr = sys.stderr + sys.stdout = stream + sys.stderr = stream + yield + sys.stdout = orig_stdout + sys.stderr = orig_stderr + +@contextmanager +def replace_original_by(stream): + orig_stdout = sys.__stdout__ + orig_stderr = sys.__stderr__ + sys.__stdout__ = stream + sys.__stderr__ = stream + yield + sys.__stdout__ = orig_stdout + sys.__stderr__ = orig_stderr + +@contextmanager +def pycharm(): + os.environ["PYCHARM_HOSTED"] = "1" + non_tty = StreamNonTTY() + with replace_by(non_tty), replace_original_by(non_tty): + yield + del os.environ["PYCHARM_HOSTED"] diff --git a/ocr/.venv/Lib/site-packages/colorama/tests/winterm_test.py b/ocr/.venv/Lib/site-packages/colorama/tests/winterm_test.py new file mode 100644 index 00000000..d0955f9e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/tests/winterm_test.py @@ -0,0 +1,131 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import Mock, patch +except ImportError: + from mock import Mock, patch + +from ..winterm import WinColor, WinStyle, WinTerm + + +class WinTermTest(TestCase): + + @patch('colorama.winterm.win32') + def testInit(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 7 + 6 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + self.assertEqual(term._fore, 7) + self.assertEqual(term._back, 6) + self.assertEqual(term._style, 8) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testGetAttrs(self): + term = WinTerm() + + term._fore = 0 + term._back = 0 + term._style = 0 + self.assertEqual(term.get_attrs(), 0) + + term._fore = WinColor.YELLOW + self.assertEqual(term.get_attrs(), WinColor.YELLOW) + + term._back = WinColor.MAGENTA + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16) + + term._style = WinStyle.BRIGHT + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16 + WinStyle.BRIGHT) + + @patch('colorama.winterm.win32') + def testResetAll(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 1 + 2 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + + term.set_console = Mock() + term._fore = -1 + term._back = -1 + term._style = -1 + + term.reset_all() + + self.assertEqual(term._fore, 1) + self.assertEqual(term._back, 2) + self.assertEqual(term._style, 8) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testFore(self): + term = WinTerm() + term.set_console = Mock() + term._fore = 0 + + term.fore(5) + + self.assertEqual(term._fore, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testBack(self): + term = WinTerm() + term.set_console = Mock() + term._back = 0 + + term.back(5) + + self.assertEqual(term._back, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testStyle(self): + term = WinTerm() + term.set_console = Mock() + term._style = 0 + + term.style(22) + + self.assertEqual(term._style, 22) + self.assertEqual(term.set_console.called, True) + + @patch('colorama.winterm.win32') + def testSetConsole(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console() + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDOUT, term.get_attrs()), {}) + ) + + @patch('colorama.winterm.win32') + def testSetConsoleOnStderr(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console(on_stderr=True) + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDERR, term.get_attrs()), {}) + ) + + +if __name__ == '__main__': + main() diff --git a/ocr/.venv/Lib/site-packages/colorama/win32.py b/ocr/.venv/Lib/site-packages/colorama/win32.py new file mode 100644 index 00000000..841b0e27 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/win32.py @@ -0,0 +1,180 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. + +# from winbase.h +STDOUT = -11 +STDERR = -12 + +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004 + +try: + import ctypes + from ctypes import LibraryLoader + windll = LibraryLoader(ctypes.WinDLL) + from ctypes import wintypes +except (AttributeError, ImportError): + windll = None + SetConsoleTextAttribute = lambda *_: None + winapi_test = lambda *_: None +else: + from ctypes import byref, Structure, c_char, POINTER + + COORD = wintypes._COORD + + class CONSOLE_SCREEN_BUFFER_INFO(Structure): + """struct in wincon.h.""" + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + def __str__(self): + return '(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)' % ( + self.dwSize.Y, self.dwSize.X + , self.dwCursorPosition.Y, self.dwCursorPosition.X + , self.wAttributes + , self.srWindow.Top, self.srWindow.Left, self.srWindow.Bottom, self.srWindow.Right + , self.dwMaximumWindowSize.Y, self.dwMaximumWindowSize.X + ) + + _GetStdHandle = windll.kernel32.GetStdHandle + _GetStdHandle.argtypes = [ + wintypes.DWORD, + ] + _GetStdHandle.restype = wintypes.HANDLE + + _GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo + _GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + POINTER(CONSOLE_SCREEN_BUFFER_INFO), + ] + _GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + _SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute + _SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + ] + _SetConsoleTextAttribute.restype = wintypes.BOOL + + _SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition + _SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + COORD, + ] + _SetConsoleCursorPosition.restype = wintypes.BOOL + + _FillConsoleOutputCharacterA = windll.kernel32.FillConsoleOutputCharacterA + _FillConsoleOutputCharacterA.argtypes = [ + wintypes.HANDLE, + c_char, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputCharacterA.restype = wintypes.BOOL + + _FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute + _FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputAttribute.restype = wintypes.BOOL + + _SetConsoleTitleW = windll.kernel32.SetConsoleTitleW + _SetConsoleTitleW.argtypes = [ + wintypes.LPCWSTR + ] + _SetConsoleTitleW.restype = wintypes.BOOL + + _GetConsoleMode = windll.kernel32.GetConsoleMode + _GetConsoleMode.argtypes = [ + wintypes.HANDLE, + POINTER(wintypes.DWORD) + ] + _GetConsoleMode.restype = wintypes.BOOL + + _SetConsoleMode = windll.kernel32.SetConsoleMode + _SetConsoleMode.argtypes = [ + wintypes.HANDLE, + wintypes.DWORD + ] + _SetConsoleMode.restype = wintypes.BOOL + + def _winapi_test(handle): + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return bool(success) + + def winapi_test(): + return any(_winapi_test(h) for h in + (_GetStdHandle(STDOUT), _GetStdHandle(STDERR))) + + def GetConsoleScreenBufferInfo(stream_id=STDOUT): + handle = _GetStdHandle(stream_id) + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return csbi + + def SetConsoleTextAttribute(stream_id, attrs): + handle = _GetStdHandle(stream_id) + return _SetConsoleTextAttribute(handle, attrs) + + def SetConsoleCursorPosition(stream_id, position, adjust=True): + position = COORD(*position) + # If the position is out of range, do nothing. + if position.Y <= 0 or position.X <= 0: + return + # Adjust for Windows' SetConsoleCursorPosition: + # 1. being 0-based, while ANSI is 1-based. + # 2. expecting (x,y), while ANSI uses (y,x). + adjusted_position = COORD(position.Y - 1, position.X - 1) + if adjust: + # Adjust for viewport's scroll position + sr = GetConsoleScreenBufferInfo(STDOUT).srWindow + adjusted_position.Y += sr.Top + adjusted_position.X += sr.Left + # Resume normal processing + handle = _GetStdHandle(stream_id) + return _SetConsoleCursorPosition(handle, adjusted_position) + + def FillConsoleOutputCharacter(stream_id, char, length, start): + handle = _GetStdHandle(stream_id) + char = c_char(char.encode()) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + success = _FillConsoleOutputCharacterA( + handle, char, length, start, byref(num_written)) + return num_written.value + + def FillConsoleOutputAttribute(stream_id, attr, length, start): + ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' + handle = _GetStdHandle(stream_id) + attribute = wintypes.WORD(attr) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + return _FillConsoleOutputAttribute( + handle, attribute, length, start, byref(num_written)) + + def SetConsoleTitle(title): + return _SetConsoleTitleW(title) + + def GetConsoleMode(handle): + mode = wintypes.DWORD() + success = _GetConsoleMode(handle, byref(mode)) + if not success: + raise ctypes.WinError() + return mode.value + + def SetConsoleMode(handle, mode): + success = _SetConsoleMode(handle, mode) + if not success: + raise ctypes.WinError() diff --git a/ocr/.venv/Lib/site-packages/colorama/winterm.py b/ocr/.venv/Lib/site-packages/colorama/winterm.py new file mode 100644 index 00000000..aad867e8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/colorama/winterm.py @@ -0,0 +1,195 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +try: + from msvcrt import get_osfhandle +except ImportError: + def get_osfhandle(_): + raise OSError("This isn't windows!") + + +from . import win32 + +# from wincon.h +class WinColor(object): + BLACK = 0 + BLUE = 1 + GREEN = 2 + CYAN = 3 + RED = 4 + MAGENTA = 5 + YELLOW = 6 + GREY = 7 + +# from wincon.h +class WinStyle(object): + NORMAL = 0x00 # dim text, dim background + BRIGHT = 0x08 # bright text, dim background + BRIGHT_BACKGROUND = 0x80 # dim text, bright background + +class WinTerm(object): + + def __init__(self): + self._default = win32.GetConsoleScreenBufferInfo(win32.STDOUT).wAttributes + self.set_attrs(self._default) + self._default_fore = self._fore + self._default_back = self._back + self._default_style = self._style + # In order to emulate LIGHT_EX in windows, we borrow the BRIGHT style. + # So that LIGHT_EX colors and BRIGHT style do not clobber each other, + # we track them separately, since LIGHT_EX is overwritten by Fore/Back + # and BRIGHT is overwritten by Style codes. + self._light = 0 + + def get_attrs(self): + return self._fore + self._back * 16 + (self._style | self._light) + + def set_attrs(self, value): + self._fore = value & 7 + self._back = (value >> 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) + + +def enable_vt_processing(fd): + if win32.windll is None or not win32.winapi_test(): + return False + + try: + handle = get_osfhandle(fd) + mode = win32.GetConsoleMode(handle) + win32.SetConsoleMode( + handle, + mode | win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + + mode = win32.GetConsoleMode(handle) + if mode & win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING: + return True + # Can get TypeError in testsuite where 'fd' is a Mock() + except (OSError, TypeError): + return False diff --git a/ocr/.venv/Lib/site-packages/distutils-precedence.pth b/ocr/.venv/Lib/site-packages/distutils-precedence.pth new file mode 100644 index 00000000..7f009fe9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/ocr/.venv/Lib/site-packages/dotenv/__init__.py b/ocr/.venv/Lib/site-packages/dotenv/__init__.py new file mode 100644 index 00000000..7f4c631b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/__init__.py @@ -0,0 +1,49 @@ +from typing import Any, Optional + +from .main import (dotenv_values, find_dotenv, get_key, load_dotenv, set_key, + unset_key) + + +def load_ipython_extension(ipython: Any) -> None: + from .ipython import load_ipython_extension + load_ipython_extension(ipython) + + +def get_cli_string( + path: Optional[str] = None, + action: Optional[str] = None, + key: Optional[str] = None, + value: Optional[str] = None, + quote: Optional[str] = None, +): + """Returns a string suitable for running as a shell script. + + Useful for converting a arguments passed to a fabric task + to be passed to a `local` or `run` command. + """ + command = ['dotenv'] + if quote: + command.append(f'-q {quote}') + if path: + command.append(f'-f {path}') + if action: + command.append(action) + if key: + command.append(key) + if value: + if ' ' in value: + command.append(f'"{value}"') + else: + command.append(value) + + return ' '.join(command).strip() + + +__all__ = ['get_cli_string', + 'load_dotenv', + 'dotenv_values', + 'get_key', + 'set_key', + 'unset_key', + 'find_dotenv', + 'load_ipython_extension'] diff --git a/ocr/.venv/Lib/site-packages/dotenv/__main__.py b/ocr/.venv/Lib/site-packages/dotenv/__main__.py new file mode 100644 index 00000000..3977f55a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/__main__.py @@ -0,0 +1,6 @@ +"""Entry point for cli, enables execution with `python -m dotenv`""" + +from .cli import cli + +if __name__ == "__main__": + cli() diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87545e0e220435c84050a26381e1f4a18aad2d73 GIT binary patch literal 1259 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 F{{cMf^H~4@ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..789e88773f59c8f7c5b81d626cc18062152fda07 GIT binary patch literal 1484 zcmZWp&5s*36t_K}nIxNKwOtM@FcMm!91`w;N>N*(m0(-3Kw%VV>K!}DZ0D=C6Pi)> zl)dhiGaUJseC5=Cp@+irOacKs@w1=(@}A%C{p_;e4-ho>m!tGu2cbWVvfp40J%BEM z1i=u)8Om{la}trS*>@_xSiSAC*g2k*W~RN2PjP zENe0<>tHl0mt2UHaUDoi3LY!5;PuDn1xpjEc&N&7XA$yOsZ@|!xTGSbR~eU(pGy;! zmW8(GJgdOzvhIvV;Pa}KygvKe&va2Vc40!ZOd7XWJlvY;ZVOLbQ8j;qzo_jofK`8X z$*D-@VOqd15u8ehovp%oI-7G5PRopOAz>7un)C4ao|ET8TRVlRg|^kI;@V?;N*9?D z2Y_utK+zL(IVC{<`E5t^l+aclaz#evl z2Zzyao0S-VB06TpJAd+6h*D^$0-h;hXd{k|xCa6fwaW{V(4o>jtiReIMzWN z=OtTYX5NeAmkXM;JHiE@!aN4rf~zGgqndzCK6~PQvt~|V$|*l+CbmV)8L<79*zFkD zp#4e632tl?b4_>6%#Hho3x+9c^ea;MH>fVdP(xC`_bs2nB>?&v%AK`|gw0zpz8I2d zAh!GM10tIkL#(|mSpPY$K4~6=?Pknh!7Cx*Hl0CiX;^wd#78h(4Exd17Q=A@*L2*3 z6vm_l#Lzf8{lCdSFH{3z3uePCJEv*UP^zVnL9Pk5cSge)VQ|&{=WTWF8;oQR#4$R? LhZeDpaPRal+8cw| literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/main.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..635ac1ed81f601ba934e2aad5dacf98e26a62151 GIT binary patch literal 10264 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/parser.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..164665aa51f098a15ef817e00d532c49a71a2e49 GIT binary patch literal 6153 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 F{s$36+L8bO literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/variables.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/variables.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea925b1369bb06c14a4b4d7297500208e2002a9c GIT binary patch literal 3542 zcma)9TW=h<6(;AtSFIJ-vE7@SxQQpR-3w5lHSENWofZZXIjCV5*lscyExFRJW@pwM zN@&zspoP-6`n4!f1h5|cm-w2e{DJ^^X}`n0Y2~Qx2;}nc@N&+_^Bqz}t5s+Cf`4od zuh$s+iiDG&58*CK`A<|&m|%iutV_R6#>Y zv}9AXr7zo;*uWDTqVt8N_=M)xts6^eF;>Vyx}Rw~{N(8P{n^@6`(rkeNl^~}lpLgLm~LmXPd=Rd0tk0e zN~$F5a>2Te;L;V2^nidXJRso9K=?8Qwlx_68RrttMn=#RzTOe<)#i?Q(w zy(^Uol+^nw?>ks~@wsSFxsOu*09D0au!@j=E3GX0D%noBU$7-y$7<~)5WCs zXd?4Jq**3)a_?cU=&Rn%1DPN6J{oTK%AuAwCTV{!-H~Na6dH=3EubrJPCh47a+xHr zk?|3#I*+)=1Af>bzi-a8#>KofrwIU#Vx9KT5O7X4(XiIObkqj5&o4S`uiAuYLikl= z2l5hxlGgF~Vbg9lS8T-%6JcWn4=}1H$+!^v8MT{9@@zlN=9-|`9?8Bo-gZ%Biabzs z4vN@kT*R@WSWp+JA_z}ZWQYQD88xim5!>WWaFyHMn420HkoL2*Ec+O;_AS{xLic)v z2^SIM2_F&WA)efUGmEFLFCs*oBSYwkuULJ=%vLRjBlin=X-x&chQ}*ff7az3=db?{I4S`)p>|fy2mt?uSb=aOSaLrnN=UX1DD;NlS zY@n>p$HoY3P;#P@%veOFOR3biJf)8tE6ffcd*Y@|Av0|VKJ z&~gUO5z@rWC?ta2wA@v1VT83oy-BTCQKC^v5<_WG>a3wOQ(6+fg3^+_WH=qxg1%R1 zqwi6*zMJLIb@bbfkRUb|Au*?I+*YsCw2M>`xfLCNq7zgEk-ALP_o*V(j62M=BFimd z{|8qo7JrCRQi>t2w%tv)?Z4qF()3Z*K62_VN~ut-Q&f6HF}el@xB^4~dilb&R1HN0 zDG)UoqK7Vnx@e%M2B{9JHbo0k1J@~NI$OtH95j1zwYG#uSF4Gh&MzqAQMxkW{C=Br zmV$KgQG3Z*iisI#D+kQQ?KM9bL?NNCZlH?Y8Ecjur_YK&{{>1(sX5>v@VSLOXET`c z+I^Zt8FR&8icc`v{nCeH9+J7|PH>rA)s#6g}QSd7i8$lP= zZTi0$eGQYplhJJC4IJV%3R)|6`|77;h~<$b^a`@KNpZ?T3d~=lEa`j^alY{PEIt#) z7B{->R(u9-?!aAf+EZly%#@WC--Q#A;tq<%>HIoQXK|X0SQ_$62*hc@_PL6vm2*Mw z5&puan#wtLrf%h0{p%G{w0#gdTZTf5BFwluQrm!wy%SeCsT76iY2YYi?xI-W&hs{> zOtb{zQdny+hhnnmF?|e;4C^P8Kv#MeH(fd-DuInpqO1`*JNE(~F0~zK>G= z9o1if#FT4BI34o`?9;dD75Bn9W<4M_^(sf;sW|oVi!3q?Dn#6#r{2BoCAE&y%YkXXGO4FlGtkyOGChX|l zQzvUSCaEgr^1WUD7K__wuJad5i}-VJ=1zd$h+pL1ztwLrD&91XlEzK9`-<|L zeVv&=e@_2JC<@jSnLmVR!hSKH3^QcQryu_QgGY})v`*T41P}it&GSO1^uI@m`?*F7 tQ1-X}+8s~WZizj6OWdBlAKxP^ZEmZx4q53q+>1KjY_>X$&TE%1{0D1+p%?%F literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/__pycache__/version.cpython-310.pyc b/ocr/.venv/Lib/site-packages/dotenv/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e843562db88e9d4adcbd3e8abc0a59721c05db2f GIT binary patch literal 197 zcmd1j<>g`k0=8*FnPNctF^Gc<7=auIATH(r5-AK(3@MDk44O<;tcH39dWL?QjJLSs zv@#XzZ;tgO`hy!05C)Z*-t{DK(&g4De5#GIVe zl6XhYnEd3T7`?L8ys{Xd%%qs&%#u{yg2d$P#PrnSn3VhypoBiue7%CoTO2mI`6;D2 OsdgZT6@x6}U;qGPUo+MK literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/dotenv/cli.py b/ocr/.venv/Lib/site-packages/dotenv/cli.py new file mode 100644 index 00000000..65ead461 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/cli.py @@ -0,0 +1,199 @@ +import json +import os +import shlex +import sys +from contextlib import contextmanager +from subprocess import Popen +from typing import Any, Dict, IO, Iterator, List + +try: + import click +except ImportError: + sys.stderr.write('It seems python-dotenv is not installed with cli option. \n' + 'Run pip install "python-dotenv[cli]" to fix this.') + sys.exit(1) + +from .main import dotenv_values, set_key, unset_key +from .version import __version__ + + +def enumerate_env(): + """ + Return a path for the ${pwd}/.env file. + + If pwd does not exist, return None. + """ + try: + cwd = os.getcwd() + except FileNotFoundError: + return None + path = os.path.join(cwd, '.env') + return path + + +@click.group() +@click.option('-f', '--file', default=enumerate_env(), + type=click.Path(file_okay=True), + help="Location of the .env file, defaults to .env file in current working directory.") +@click.option('-q', '--quote', default='always', + type=click.Choice(['always', 'never', 'auto']), + help="Whether to quote or not the variable values. Default mode is always. This does not affect parsing.") +@click.option('-e', '--export', default=False, + type=click.BOOL, + help="Whether to write the dot file as an executable bash script.") +@click.version_option(version=__version__) +@click.pass_context +def cli(ctx: click.Context, file: Any, quote: Any, export: Any) -> None: + """This script is used to set, get or unset values from a .env file.""" + ctx.obj = {'QUOTE': quote, 'EXPORT': export, 'FILE': file} + + +@contextmanager +def stream_file(path: os.PathLike) -> Iterator[IO[str]]: + """ + Open a file and yield the corresponding (decoded) stream. + + Exits with error code 2 if the file cannot be opened. + """ + + try: + with open(path) as stream: + yield stream + except OSError as exc: + print(f"Error opening env file: {exc}", file=sys.stderr) + exit(2) + + +@cli.command() +@click.pass_context +@click.option('--format', default='simple', + type=click.Choice(['simple', 'json', 'shell', 'export']), + help="The format in which to display the list. Default format is simple, " + "which displays name=value without quotes.") +def list(ctx: click.Context, format: bool) -> None: + """Display all the stored key/value.""" + file = ctx.obj['FILE'] + + with stream_file(file) as stream: + values = dotenv_values(stream=stream) + + if format == 'json': + click.echo(json.dumps(values, indent=2, sort_keys=True)) + else: + prefix = 'export ' if format == 'export' else '' + for k in sorted(values): + v = values[k] + if v is not None: + if format in ('export', 'shell'): + v = shlex.quote(v) + click.echo(f'{prefix}{k}={v}') + + +@cli.command() +@click.pass_context +@click.argument('key', required=True) +@click.argument('value', required=True) +def set(ctx: click.Context, key: Any, value: Any) -> None: + """Store the given key/value.""" + file = ctx.obj['FILE'] + quote = ctx.obj['QUOTE'] + export = ctx.obj['EXPORT'] + success, key, value = set_key(file, key, value, quote, export) + if success: + click.echo(f'{key}={value}') + else: + exit(1) + + +@cli.command() +@click.pass_context +@click.argument('key', required=True) +def get(ctx: click.Context, key: Any) -> None: + """Retrieve the value for the given key.""" + file = ctx.obj['FILE'] + + with stream_file(file) as stream: + values = dotenv_values(stream=stream) + + stored_value = values.get(key) + if stored_value: + click.echo(stored_value) + else: + exit(1) + + +@cli.command() +@click.pass_context +@click.argument('key', required=True) +def unset(ctx: click.Context, key: Any) -> None: + """Removes the given key.""" + file = ctx.obj['FILE'] + quote = ctx.obj['QUOTE'] + success, key = unset_key(file, key, quote) + if success: + click.echo(f"Successfully removed {key}") + else: + exit(1) + + +@cli.command(context_settings={'ignore_unknown_options': True}) +@click.pass_context +@click.option( + "--override/--no-override", + default=True, + help="Override variables from the environment file with those from the .env file.", +) +@click.argument('commandline', nargs=-1, type=click.UNPROCESSED) +def run(ctx: click.Context, override: bool, commandline: List[str]) -> None: + """Run command with environment variables present.""" + file = ctx.obj['FILE'] + if not os.path.isfile(file): + raise click.BadParameter( + f'Invalid value for \'-f\' "{file}" does not exist.', + ctx=ctx + ) + dotenv_as_dict = { + k: v + for (k, v) in dotenv_values(file).items() + if v is not None and (override or k not in os.environ) + } + + if not commandline: + click.echo('No command given.') + exit(1) + ret = run_command(commandline, dotenv_as_dict) + exit(ret) + + +def run_command(command: List[str], env: Dict[str, str]) -> int: + """Run command in sub process. + + Runs the command in a sub process with the variables from `env` + added in the current environment variables. + + Parameters + ---------- + command: List[str] + The command and it's parameters + env: Dict + The additional environment variables + + Returns + ------- + int + The return code of the command + + """ + # copy the current environment variables and add the vales from + # `env` + cmd_env = os.environ.copy() + cmd_env.update(env) + + p = Popen(command, + universal_newlines=True, + bufsize=0, + shell=False, + env=cmd_env) + _, _ = p.communicate() + + return p.returncode diff --git a/ocr/.venv/Lib/site-packages/dotenv/ipython.py b/ocr/.venv/Lib/site-packages/dotenv/ipython.py new file mode 100644 index 00000000..7df727cd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/ipython.py @@ -0,0 +1,39 @@ +from IPython.core.magic import Magics, line_magic, magics_class # type: ignore +from IPython.core.magic_arguments import (argument, magic_arguments, # type: ignore + parse_argstring) # type: ignore + +from .main import find_dotenv, load_dotenv + + +@magics_class +class IPythonDotEnv(Magics): + + @magic_arguments() + @argument( + '-o', '--override', action='store_true', + help="Indicate to override existing variables" + ) + @argument( + '-v', '--verbose', action='store_true', + help="Indicate function calls to be verbose" + ) + @argument('dotenv_path', nargs='?', type=str, default='.env', + help='Search in increasingly higher folders for the `dotenv_path`') + @line_magic + def dotenv(self, line): + args = parse_argstring(self.dotenv, line) + # Locate the .env file + dotenv_path = args.dotenv_path + try: + dotenv_path = find_dotenv(dotenv_path, True, True) + except IOError: + print("cannot find .env file") + return + + # Load the .env file + load_dotenv(dotenv_path, verbose=args.verbose, override=args.override) + + +def load_ipython_extension(ipython): + """Register the %dotenv magic.""" + ipython.register_magics(IPythonDotEnv) diff --git a/ocr/.venv/Lib/site-packages/dotenv/main.py b/ocr/.venv/Lib/site-packages/dotenv/main.py new file mode 100644 index 00000000..7bc54285 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/main.py @@ -0,0 +1,392 @@ +import io +import logging +import os +import pathlib +import shutil +import sys +import tempfile +from collections import OrderedDict +from contextlib import contextmanager +from typing import (IO, Dict, Iterable, Iterator, Mapping, Optional, Tuple, + Union) + +from .parser import Binding, parse_stream +from .variables import parse_variables + +# A type alias for a string path to be used for the paths in this file. +# These paths may flow to `open()` and `shutil.move()`; `shutil.move()` +# only accepts string paths, not byte paths or file descriptors. See +# https://github.com/python/typeshed/pull/6832. +StrPath = Union[str, 'os.PathLike[str]'] + +logger = logging.getLogger(__name__) + + +def with_warn_for_invalid_lines(mappings: Iterator[Binding]) -> Iterator[Binding]: + for mapping in mappings: + if mapping.error: + logger.warning( + "Python-dotenv could not parse statement starting at line %s", + mapping.original.line, + ) + yield mapping + + +class DotEnv: + def __init__( + self, + dotenv_path: Optional[StrPath], + stream: Optional[IO[str]] = None, + verbose: bool = False, + encoding: Optional[str] = None, + interpolate: bool = True, + override: bool = True, + ) -> None: + self.dotenv_path: Optional[StrPath] = dotenv_path + self.stream: Optional[IO[str]] = stream + self._dict: Optional[Dict[str, Optional[str]]] = None + self.verbose: bool = verbose + self.encoding: Optional[str] = encoding + self.interpolate: bool = interpolate + self.override: bool = override + + @contextmanager + def _get_stream(self) -> Iterator[IO[str]]: + if self.dotenv_path and os.path.isfile(self.dotenv_path): + with open(self.dotenv_path, encoding=self.encoding) as stream: + yield stream + elif self.stream is not None: + yield self.stream + else: + if self.verbose: + logger.info( + "Python-dotenv could not find configuration file %s.", + self.dotenv_path or '.env', + ) + yield io.StringIO('') + + def dict(self) -> Dict[str, Optional[str]]: + """Return dotenv as dict""" + if self._dict: + return self._dict + + raw_values = self.parse() + + if self.interpolate: + self._dict = OrderedDict(resolve_variables(raw_values, override=self.override)) + else: + self._dict = OrderedDict(raw_values) + + return self._dict + + def parse(self) -> Iterator[Tuple[str, Optional[str]]]: + with self._get_stream() as stream: + for mapping in with_warn_for_invalid_lines(parse_stream(stream)): + if mapping.key is not None: + yield mapping.key, mapping.value + + def set_as_environment_variables(self) -> bool: + """ + Load the current dotenv as system environment variable. + """ + if not self.dict(): + return False + + for k, v in self.dict().items(): + if k in os.environ and not self.override: + continue + if v is not None: + os.environ[k] = v + + return True + + def get(self, key: str) -> Optional[str]: + """ + """ + data = self.dict() + + if key in data: + return data[key] + + if self.verbose: + logger.warning("Key %s not found in %s.", key, self.dotenv_path) + + return None + + +def get_key( + dotenv_path: StrPath, + key_to_get: str, + encoding: Optional[str] = "utf-8", +) -> Optional[str]: + """ + Get the value of a given key from the given .env. + + Returns `None` if the key isn't found or doesn't have a value. + """ + return DotEnv(dotenv_path, verbose=True, encoding=encoding).get(key_to_get) + + +@contextmanager +def rewrite( + path: StrPath, + encoding: Optional[str], +) -> Iterator[Tuple[IO[str], IO[str]]]: + pathlib.Path(path).touch() + + with tempfile.NamedTemporaryFile(mode="w", encoding=encoding, delete=False) as dest: + error = None + try: + with open(path, encoding=encoding) as source: + yield (source, dest) + except BaseException as err: + error = err + + if error is None: + shutil.move(dest.name, path) + else: + os.unlink(dest.name) + raise error from None + + +def set_key( + dotenv_path: StrPath, + key_to_set: str, + value_to_set: str, + quote_mode: str = "always", + export: bool = False, + encoding: Optional[str] = "utf-8", +) -> Tuple[Optional[bool], str, str]: + """ + Adds or Updates a key/value to the given .env + + If the .env path given doesn't exist, fails instead of risking creating + an orphan .env somewhere in the filesystem + """ + if quote_mode not in ("always", "auto", "never"): + raise ValueError(f"Unknown quote_mode: {quote_mode}") + + quote = ( + quote_mode == "always" + or (quote_mode == "auto" and not value_to_set.isalnum()) + ) + + if quote: + value_out = "'{}'".format(value_to_set.replace("'", "\\'")) + else: + value_out = value_to_set + if export: + line_out = f'export {key_to_set}={value_out}\n' + else: + line_out = f"{key_to_set}={value_out}\n" + + with rewrite(dotenv_path, encoding=encoding) as (source, dest): + replaced = False + missing_newline = False + for mapping in with_warn_for_invalid_lines(parse_stream(source)): + if mapping.key == key_to_set: + dest.write(line_out) + replaced = True + else: + dest.write(mapping.original.string) + missing_newline = not mapping.original.string.endswith("\n") + if not replaced: + if missing_newline: + dest.write("\n") + dest.write(line_out) + + return True, key_to_set, value_to_set + + +def unset_key( + dotenv_path: StrPath, + key_to_unset: str, + quote_mode: str = "always", + encoding: Optional[str] = "utf-8", +) -> Tuple[Optional[bool], str]: + """ + Removes a given key from the given `.env` file. + + If the .env path given doesn't exist, fails. + If the given key doesn't exist in the .env, fails. + """ + if not os.path.exists(dotenv_path): + logger.warning("Can't delete from %s - it doesn't exist.", dotenv_path) + return None, key_to_unset + + removed = False + with rewrite(dotenv_path, encoding=encoding) as (source, dest): + for mapping in with_warn_for_invalid_lines(parse_stream(source)): + if mapping.key == key_to_unset: + removed = True + else: + dest.write(mapping.original.string) + + if not removed: + logger.warning("Key %s not removed from %s - key doesn't exist.", key_to_unset, dotenv_path) + return None, key_to_unset + + return removed, key_to_unset + + +def resolve_variables( + values: Iterable[Tuple[str, Optional[str]]], + override: bool, +) -> Mapping[str, Optional[str]]: + new_values: Dict[str, Optional[str]] = {} + + for (name, value) in values: + if value is None: + result = None + else: + atoms = parse_variables(value) + env: Dict[str, Optional[str]] = {} + if override: + env.update(os.environ) # type: ignore + env.update(new_values) + else: + env.update(new_values) + env.update(os.environ) # type: ignore + result = "".join(atom.resolve(env) for atom in atoms) + + new_values[name] = result + + return new_values + + +def _walk_to_root(path: str) -> Iterator[str]: + """ + Yield directories starting from the given directory up to the root + """ + if not os.path.exists(path): + raise IOError('Starting path not found') + + if os.path.isfile(path): + path = os.path.dirname(path) + + last_dir = None + current_dir = os.path.abspath(path) + while last_dir != current_dir: + yield current_dir + parent_dir = os.path.abspath(os.path.join(current_dir, os.path.pardir)) + last_dir, current_dir = current_dir, parent_dir + + +def find_dotenv( + filename: str = '.env', + raise_error_if_not_found: bool = False, + usecwd: bool = False, +) -> str: + """ + Search in increasingly higher folders for the given file + + Returns path to the file if found, or an empty string otherwise + """ + + def _is_interactive(): + """ Decide whether this is running in a REPL or IPython notebook """ + try: + main = __import__('__main__', None, None, fromlist=['__file__']) + except ModuleNotFoundError: + return False + return not hasattr(main, '__file__') + + if usecwd or _is_interactive() or getattr(sys, 'frozen', False): + # Should work without __file__, e.g. in REPL or IPython notebook. + path = os.getcwd() + else: + # will work for .py files + frame = sys._getframe() + current_file = __file__ + + while frame.f_code.co_filename == current_file or not os.path.exists( + frame.f_code.co_filename + ): + assert frame.f_back is not None + frame = frame.f_back + frame_filename = frame.f_code.co_filename + path = os.path.dirname(os.path.abspath(frame_filename)) + + for dirname in _walk_to_root(path): + check_path = os.path.join(dirname, filename) + if os.path.isfile(check_path): + return check_path + + if raise_error_if_not_found: + raise IOError('File not found') + + return '' + + +def load_dotenv( + dotenv_path: Optional[StrPath] = None, + stream: Optional[IO[str]] = None, + verbose: bool = False, + override: bool = False, + interpolate: bool = True, + encoding: Optional[str] = "utf-8", +) -> bool: + """Parse a .env file and then load all the variables found as environment variables. + + Parameters: + dotenv_path: Absolute or relative path to .env file. + stream: Text stream (such as `io.StringIO`) with .env content, used if + `dotenv_path` is `None`. + verbose: Whether to output a warning the .env file is missing. + override: Whether to override the system environment variables with the variables + from the `.env` file. + encoding: Encoding to be used to read the file. + Returns: + Bool: True if at least one environment variable is set else False + + If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the + .env file. + """ + if dotenv_path is None and stream is None: + dotenv_path = find_dotenv() + + dotenv = DotEnv( + dotenv_path=dotenv_path, + stream=stream, + verbose=verbose, + interpolate=interpolate, + override=override, + encoding=encoding, + ) + return dotenv.set_as_environment_variables() + + +def dotenv_values( + dotenv_path: Optional[StrPath] = None, + stream: Optional[IO[str]] = None, + verbose: bool = False, + interpolate: bool = True, + encoding: Optional[str] = "utf-8", +) -> Dict[str, Optional[str]]: + """ + Parse a .env file and return its content as a dict. + + The returned dict will have `None` values for keys without values in the .env file. + For example, `foo=bar` results in `{"foo": "bar"}` whereas `foo` alone results in + `{"foo": None}` + + Parameters: + dotenv_path: Absolute or relative path to the .env file. + stream: `StringIO` object with .env content, used if `dotenv_path` is `None`. + verbose: Whether to output a warning if the .env file is missing. + encoding: Encoding to be used to read the file. + + If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the + .env file. + """ + if dotenv_path is None and stream is None: + dotenv_path = find_dotenv() + + return DotEnv( + dotenv_path=dotenv_path, + stream=stream, + verbose=verbose, + interpolate=interpolate, + override=True, + encoding=encoding, + ).dict() diff --git a/ocr/.venv/Lib/site-packages/dotenv/parser.py b/ocr/.venv/Lib/site-packages/dotenv/parser.py new file mode 100644 index 00000000..735f14a3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/parser.py @@ -0,0 +1,175 @@ +import codecs +import re +from typing import (IO, Iterator, Match, NamedTuple, Optional, # noqa:F401 + Pattern, Sequence, Tuple) + + +def make_regex(string: str, extra_flags: int = 0) -> Pattern[str]: + return re.compile(string, re.UNICODE | extra_flags) + + +_newline = make_regex(r"(\r\n|\n|\r)") +_multiline_whitespace = make_regex(r"\s*", extra_flags=re.MULTILINE) +_whitespace = make_regex(r"[^\S\r\n]*") +_export = make_regex(r"(?:export[^\S\r\n]+)?") +_single_quoted_key = make_regex(r"'([^']+)'") +_unquoted_key = make_regex(r"([^=\#\s]+)") +_equal_sign = make_regex(r"(=[^\S\r\n]*)") +_single_quoted_value = make_regex(r"'((?:\\'|[^'])*)'") +_double_quoted_value = make_regex(r'"((?:\\"|[^"])*)"') +_unquoted_value = make_regex(r"([^\r\n]*)") +_comment = make_regex(r"(?:[^\S\r\n]*#[^\r\n]*)?") +_end_of_line = make_regex(r"[^\S\r\n]*(?:\r\n|\n|\r|$)") +_rest_of_line = make_regex(r"[^\r\n]*(?:\r|\n|\r\n)?") +_double_quote_escapes = make_regex(r"\\[\\'\"abfnrtv]") +_single_quote_escapes = make_regex(r"\\[\\']") + + +class Original(NamedTuple): + string: str + line: int + + +class Binding(NamedTuple): + key: Optional[str] + value: Optional[str] + original: Original + error: bool + + +class Position: + def __init__(self, chars: int, line: int) -> None: + self.chars = chars + self.line = line + + @classmethod + def start(cls) -> "Position": + return cls(chars=0, line=1) + + def set(self, other: "Position") -> None: + self.chars = other.chars + self.line = other.line + + def advance(self, string: str) -> None: + self.chars += len(string) + self.line += len(re.findall(_newline, string)) + + +class Error(Exception): + pass + + +class Reader: + def __init__(self, stream: IO[str]) -> None: + self.string = stream.read() + self.position = Position.start() + self.mark = Position.start() + + def has_next(self) -> bool: + return self.position.chars < len(self.string) + + def set_mark(self) -> None: + self.mark.set(self.position) + + def get_marked(self) -> Original: + return Original( + string=self.string[self.mark.chars:self.position.chars], + line=self.mark.line, + ) + + def peek(self, count: int) -> str: + return self.string[self.position.chars:self.position.chars + count] + + def read(self, count: int) -> str: + result = self.string[self.position.chars:self.position.chars + count] + if len(result) < count: + raise Error("read: End of string") + self.position.advance(result) + return result + + def read_regex(self, regex: Pattern[str]) -> Sequence[str]: + match = regex.match(self.string, self.position.chars) + if match is None: + raise Error("read_regex: Pattern not found") + self.position.advance(self.string[match.start():match.end()]) + return match.groups() + + +def decode_escapes(regex: Pattern[str], string: str) -> str: + def decode_match(match: Match[str]) -> str: + return codecs.decode(match.group(0), 'unicode-escape') # type: ignore + + return regex.sub(decode_match, string) + + +def parse_key(reader: Reader) -> Optional[str]: + char = reader.peek(1) + if char == "#": + return None + elif char == "'": + (key,) = reader.read_regex(_single_quoted_key) + else: + (key,) = reader.read_regex(_unquoted_key) + return key + + +def parse_unquoted_value(reader: Reader) -> str: + (part,) = reader.read_regex(_unquoted_value) + return re.sub(r"\s+#.*", "", part).rstrip() + + +def parse_value(reader: Reader) -> str: + char = reader.peek(1) + if char == u"'": + (value,) = reader.read_regex(_single_quoted_value) + return decode_escapes(_single_quote_escapes, value) + elif char == u'"': + (value,) = reader.read_regex(_double_quoted_value) + return decode_escapes(_double_quote_escapes, value) + elif char in (u"", u"\n", u"\r"): + return u"" + else: + return parse_unquoted_value(reader) + + +def parse_binding(reader: Reader) -> Binding: + reader.set_mark() + try: + reader.read_regex(_multiline_whitespace) + if not reader.has_next(): + return Binding( + key=None, + value=None, + original=reader.get_marked(), + error=False, + ) + reader.read_regex(_export) + key = parse_key(reader) + reader.read_regex(_whitespace) + if reader.peek(1) == "=": + reader.read_regex(_equal_sign) + value: Optional[str] = parse_value(reader) + else: + value = None + reader.read_regex(_comment) + reader.read_regex(_end_of_line) + return Binding( + key=key, + value=value, + original=reader.get_marked(), + error=False, + ) + except Error: + reader.read_regex(_rest_of_line) + return Binding( + key=None, + value=None, + original=reader.get_marked(), + error=True, + ) + + +def parse_stream(stream: IO[str]) -> Iterator[Binding]: + reader = Reader(stream) + while reader.has_next(): + yield parse_binding(reader) diff --git a/ocr/.venv/Lib/site-packages/dotenv/py.typed b/ocr/.venv/Lib/site-packages/dotenv/py.typed new file mode 100644 index 00000000..7632ecf7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/ocr/.venv/Lib/site-packages/dotenv/variables.py b/ocr/.venv/Lib/site-packages/dotenv/variables.py new file mode 100644 index 00000000..667f2f26 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/variables.py @@ -0,0 +1,86 @@ +import re +from abc import ABCMeta, abstractmethod +from typing import Iterator, Mapping, Optional, Pattern + +_posix_variable: Pattern[str] = re.compile( + r""" + \$\{ + (?P[^\}:]*) + (?::- + (?P[^\}]*) + )? + \} + """, + re.VERBOSE, +) + + +class Atom(metaclass=ABCMeta): + def __ne__(self, other: object) -> bool: + result = self.__eq__(other) + if result is NotImplemented: + return NotImplemented + return not result + + @abstractmethod + def resolve(self, env: Mapping[str, Optional[str]]) -> str: ... + + +class Literal(Atom): + def __init__(self, value: str) -> None: + self.value = value + + def __repr__(self) -> str: + return f"Literal(value={self.value})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + return self.value == other.value + + def __hash__(self) -> int: + return hash((self.__class__, self.value)) + + def resolve(self, env: Mapping[str, Optional[str]]) -> str: + return self.value + + +class Variable(Atom): + def __init__(self, name: str, default: Optional[str]) -> None: + self.name = name + self.default = default + + def __repr__(self) -> str: + return f"Variable(name={self.name}, default={self.default})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + return (self.name, self.default) == (other.name, other.default) + + def __hash__(self) -> int: + return hash((self.__class__, self.name, self.default)) + + def resolve(self, env: Mapping[str, Optional[str]]) -> str: + default = self.default if self.default is not None else "" + result = env.get(self.name, default) + return result if result is not None else "" + + +def parse_variables(value: str) -> Iterator[Atom]: + cursor = 0 + + for match in _posix_variable.finditer(value): + (start, end) = match.span() + name = match["name"] + default = match["default"] + + if start > cursor: + yield Literal(value=value[cursor:start]) + + yield Variable(name=name, default=default) + cursor = end + + length = len(value) + if cursor < length: + yield Literal(value=value[cursor:length]) diff --git a/ocr/.venv/Lib/site-packages/dotenv/version.py b/ocr/.venv/Lib/site-packages/dotenv/version.py new file mode 100644 index 00000000..5c4105cd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/dotenv/version.py @@ -0,0 +1 @@ +__version__ = "1.0.1" diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/METADATA b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/METADATA new file mode 100644 index 00000000..45df9c80 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/METADATA @@ -0,0 +1,159 @@ +Metadata-Version: 2.4 +Name: exceptiongroup +Version: 1.3.0 +Summary: Backport of PEP 654 (exception groups) +Author-email: Alex Grönholm +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Typing :: Typed +License-File: LICENSE +Requires-Dist: typing-extensions >= 4.6.0; python_version < '3.13' +Requires-Dist: pytest >= 6 ; extra == "test" +Project-URL: Changelog, https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst +Project-URL: Issue Tracker, https://github.com/agronholm/exceptiongroup/issues +Project-URL: Source code, https://github.com/agronholm/exceptiongroup +Provides-Extra: test + +.. image:: https://github.com/agronholm/exceptiongroup/actions/workflows/test.yml/badge.svg + :target: https://github.com/agronholm/exceptiongroup/actions/workflows/test.yml + :alt: Build Status +.. image:: https://coveralls.io/repos/github/agronholm/exceptiongroup/badge.svg?branch=main + :target: https://coveralls.io/github/agronholm/exceptiongroup?branch=main + :alt: Code Coverage + +This is a backport of the ``BaseExceptionGroup`` and ``ExceptionGroup`` classes from +Python 3.11. + +It contains the following: + +* The ``exceptiongroup.BaseExceptionGroup`` and ``exceptiongroup.ExceptionGroup`` + classes +* A utility function (``exceptiongroup.catch()``) for catching exceptions possibly + nested in an exception group +* Patches to the ``TracebackException`` class that properly formats exception groups + (installed on import) +* An exception hook that handles formatting of exception groups through + ``TracebackException`` (installed on import) +* Special versions of some of the functions from the ``traceback`` module, modified to + correctly handle exception groups even when monkey patching is disabled, or blocked by + another custom exception hook: + + * ``traceback.format_exception()`` + * ``traceback.format_exception_only()`` + * ``traceback.print_exception()`` + * ``traceback.print_exc()`` +* A backported version of ``contextlib.suppress()`` from Python 3.12.1 which also + handles suppressing exceptions inside exception groups + +If this package is imported on Python 3.11 or later, the built-in implementations of the +exception group classes are used instead, ``TracebackException`` is not monkey patched +and the exception hook won't be installed. + +See the `standard library documentation`_ for more information on exception groups. + +.. _standard library documentation: https://docs.python.org/3/library/exceptions.html + +Catching exceptions +=================== + +Due to the lack of the ``except*`` syntax introduced by `PEP 654`_ in earlier Python +versions, you need to use ``exceptiongroup.catch()`` to catch exceptions that are +potentially nested inside an exception group. This function returns a context manager +that calls the given handler for any exceptions matching the sole argument. + +The argument to ``catch()`` must be a dict (or any ``Mapping``) where each key is either +an exception class or an iterable of exception classes. Each value must be a callable +that takes a single positional argument. The handler will be called at most once, with +an exception group as an argument which will contain all the exceptions that are any +of the given types, or their subclasses. The exception group may contain nested groups +containing more matching exceptions. + +Thus, the following Python 3.11+ code: + +.. code-block:: python + + try: + ... + except* (ValueError, KeyError) as excgroup: + for exc in excgroup.exceptions: + print('Caught exception:', type(exc)) + except* RuntimeError: + print('Caught runtime error') + +would be written with this backport like this: + +.. code-block:: python + + from exceptiongroup import BaseExceptionGroup, catch + + def value_key_err_handler(excgroup: BaseExceptionGroup) -> None: + for exc in excgroup.exceptions: + print('Caught exception:', type(exc)) + + def runtime_err_handler(exc: BaseExceptionGroup) -> None: + print('Caught runtime error') + + with catch({ + (ValueError, KeyError): value_key_err_handler, + RuntimeError: runtime_err_handler + }): + ... + +**NOTE**: Just like with ``except*``, you cannot handle ``BaseExceptionGroup`` or +``ExceptionGroup`` with ``catch()``. + +Suppressing exceptions +====================== + +This library contains a backport of the ``contextlib.suppress()`` context manager from +Python 3.12.1. It allows you to selectively ignore certain exceptions, even when they're +inside exception groups: + +.. code-block:: python + + from exceptiongroup import suppress + + with suppress(RuntimeError): + raise ExceptionGroup("", [RuntimeError("boo")]) + +Notes on monkey patching +======================== + +To make exception groups render properly when an unhandled exception group is being +printed out, this package does two things when it is imported on any Python version +earlier than 3.11: + +#. The ``traceback.TracebackException`` class is monkey patched to store extra + information about exception groups (in ``__init__()``) and properly format them (in + ``format()``) +#. An exception hook is installed at ``sys.excepthook``, provided that no other hook is + already present. This hook causes the exception to be formatted using + ``traceback.TracebackException`` rather than the built-in rendered. + +If ``sys.exceptionhook`` is found to be set to something else than the default when +``exceptiongroup`` is imported, no monkeypatching is done at all. + +To prevent the exception hook and patches from being installed, set the environment +variable ``EXCEPTIONGROUP_NO_PATCH`` to ``1``. + +Formatting exception groups +--------------------------- + +Normally, the monkey patching applied by this library on import will cause exception +groups to be printed properly in tracebacks. But in cases when the monkey patching is +blocked by a third party exception hook, or monkey patching is explicitly disabled, +you can still manually format exceptions using the special versions of the ``traceback`` +functions, like ``format_exception()``, listed at the top of this page. They work just +like their counterparts in the ``traceback`` module, except that they use a separately +patched subclass of ``TracebackException`` to perform the rendering. + +Particularly in cases where a library installs its own exception hook, it is recommended +to use these special versions to do the actual formatting of exceptions/tracebacks. + +.. _PEP 654: https://www.python.org/dev/peps/pep-0654/ + diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/RECORD b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/RECORD new file mode 100644 index 00000000..dbe487c8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/RECORD @@ -0,0 +1,18 @@ +exceptiongroup-1.3.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +exceptiongroup-1.3.0.dist-info/METADATA,sha256=oiAq-llXqOaV0B3dJN316SjtCpthQvuQjmVuVObbaeQ,6725 +exceptiongroup-1.3.0.dist-info/RECORD,, +exceptiongroup-1.3.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 +exceptiongroup-1.3.0.dist-info/licenses/LICENSE,sha256=blBw12UDHgrUA6HL-Qrm0ZoCKPgC4yC3rP9GCqcu1Hw,3704 +exceptiongroup/__init__.py,sha256=7DHS0hDk-RIs3IQc3SbZVB0-1MhiSCJ9XgvEyEloL7M,1049 +exceptiongroup/__pycache__/__init__.cpython-310.pyc,, +exceptiongroup/__pycache__/_catch.cpython-310.pyc,, +exceptiongroup/__pycache__/_exceptions.cpython-310.pyc,, +exceptiongroup/__pycache__/_formatting.cpython-310.pyc,, +exceptiongroup/__pycache__/_suppress.cpython-310.pyc,, +exceptiongroup/__pycache__/_version.cpython-310.pyc,, +exceptiongroup/_catch.py,sha256=CaJez3E-Jkr-7B7RT3fzusdLWnuyeekooSFn7KyWt9s,4680 +exceptiongroup/_exceptions.py,sha256=wPwPsZ64SXEptuwb4XrTIa1Mc78uqF5vmCrXTdllLn4,11463 +exceptiongroup/_formatting.py,sha256=4UC6bUN3K-FxEX96_ozzgeX05fCyprl6qCVR-efBmQ0,21032 +exceptiongroup/_suppress.py,sha256=LX11PRNpchwfNWwEMY92nYN1F_5qFenQcS8EjIONXKE,1772 +exceptiongroup/_version.py,sha256=qDtcPZdKzxLpd8vVl6fpIFIMkWt2HK_cO9gLDwaHEdk,511 +exceptiongroup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/WHEEL new file mode 100644 index 00000000..d8b9936d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.12.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/licenses/LICENSE new file mode 100644 index 00000000..50d4fa5e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup-1.3.0.dist-info/licenses/LICENSE @@ -0,0 +1,73 @@ +The MIT License (MIT) + +Copyright (c) 2022 Alex Grönholm + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +This project contains code copied from the Python standard library. +The following is the required license notice for those parts. + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__init__.py b/ocr/.venv/Lib/site-packages/exceptiongroup/__init__.py new file mode 100644 index 00000000..d8e36b2e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/__init__.py @@ -0,0 +1,46 @@ +__all__ = [ + "BaseExceptionGroup", + "ExceptionGroup", + "catch", + "format_exception", + "format_exception_only", + "print_exception", + "print_exc", + "suppress", +] + +import os +import sys + +from ._catch import catch +from ._version import version as __version__ # noqa: F401 + +if sys.version_info < (3, 11): + from ._exceptions import BaseExceptionGroup, ExceptionGroup + from ._formatting import ( + format_exception, + format_exception_only, + print_exc, + print_exception, + ) + + if os.getenv("EXCEPTIONGROUP_NO_PATCH") != "1": + from . import _formatting # noqa: F401 + + BaseExceptionGroup.__module__ = __name__ + ExceptionGroup.__module__ = __name__ +else: + from traceback import ( + format_exception, + format_exception_only, + print_exc, + print_exception, + ) + + BaseExceptionGroup = BaseExceptionGroup + ExceptionGroup = ExceptionGroup + +if sys.version_info < (3, 12, 1): + from ._suppress import suppress +else: + from contextlib import suppress diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..680398e4e802dca68134cdf77052ba401146ca8d GIT binary patch literal 881 zcmZuv&u`N(6t>;8Nt5&kWn zjsJ&}ublcXaN;>zyJ?!GeD-^O?|t8UPSNT32v+<1Alq>e`fH8*s{zJa`1Buu8A{PF zOi_wcA~41EPAEwmsUsTFp$J6c(qv#$&hIlobUt$v*=l^XYU3wGUh(TnWYgbB zJ+}-N{zZqcqcaV&j4m#Ck<>*)-Bw#b1^{ z6VJGg);-MZKe5N4x2$4pw_F(S&5gEw`!4zgfQP)m!yyT=Px^Qpcij-Th=;d{<2tpk GPyPdc;_QI{ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a566b01c445cc69fdc0325d3d01cd68754d040b GIT binary patch literal 3266 zcmZuzTW{RP6`mPhmV41!k|jBE-IOWNBHKC})F|MjFp4;ed_fZ>h}{~dWiS*ul2+n! z*TY%MT5yd(%6ngmz7z%I7X$eR{Vja$lmCLyR{75CB~ofGcII%-%;A|c=lkaL=H_Y) zPxbGMoqLOn{hMCSKNem-VT|V|5E7Q~ly!N)ImsdwfiS%lSm>?P?mB_fbpy9s2`Xle zoqFABP&KlX*1GkeZe%xYbmxM(ZZl|dCat|oNoAj@n~9fH)A{Z~uz=Ay^{I5^f^4p` z9WI;OVwDApcUe+P>ff=Xek_8^$zn2}EPQ7NONn^ET9@CzOV;9LJ<774j&!G&Z{=D=v0m$CTE5UW6*O}XF)X*Dc>m#H zU$z7W9)GnSuH9Q-`_ui6yQOtIJ8X$J6s9+IYWUcJ#ZRMLuD^(7pM1EhdV_up&4p(c z+uvhYvVbQH@mxu)#Kw-SPL(hJuj9q&q2)_0>U zNu>(AQUCPDWN%OOpr6Vo8oocd;L+3Te!Ja98{Qi)dm4*#&XG+2H9C6Akb)O1#GyZ6 z-}4Q`r4gR{9KvGfGTl~}F!Ot+me8FBYk%1Mb1qfBxwj{K+0N!?GT+y|{^pl`nLWaB zNFCn3zuAk`X8XC!o^O8M+1kuIT7J++v=RP%Q%>WzL-G4CjA^Uw{vmc9cCwBRL!>Or z$as08Pm~BACl>BHfTejt*HeF#`_jmm#4BBP|J8Nt6?aS zASw*$)qL3I!^LwSo~TPlQp``Uz9sU0;gdV1h3%a#T{xAgO6aZAr3;xi)!19TUK*3b z)5n3};cs^G4TJ)i9B|bx*a_rUd}J4PAqGrcO85g-*w8YyOnA|}5Lz4y_1mGDvu7O% zn`v?Q8;;;`tlqNb$_;zBNrSC(@ZB7Gs-t1w95H6i>8X`zwtnj?mUUq%lACP_T zFr8Sa|G4tp+?DCv1E#AdwF0)(OI=Uk-#Yj2zv)I{ z9rMK57wWHtmAI>biHU}Fj07r#dW{)kuQHkQnq-<)aO~rCK?z61T-hku@XESUJ>_e4 z2-fv=&mW(*KXmc_;Im4M zZ(J^|RA#N}IB6+g0}mz)DFw|;9{dP_Jg7nw66*7^GNH(z(ls0n50uOYsV*y%ML)@N z^&V{Bz(4;QO-;DGA#Ab8n@Dt|HrfV$;>^YfC456HecR+K-1}CX)sX!2&BBwqcpQsA-2wEX)$x2I0J?K_%KHsSw-X?yPBa z6=G@a6$12OXEtm>I^w!Y@XT-G9sLn6Y*5nb$iW)N*jtA^hwSC|XKQGr276y)#HLlx zJ}xX=@b)eC?2@h*@Dh-9Hiqx&UEogb47#}1&H)h>1{F@jH5tXb{=Ph%=_GJ0l^dcs3DE(Tlx=ALe*a_yzMA%c|bYJRswA!1#mc$f>56-2tsU;la|2LSO-$GNfJPwHd zZ{7mtxqaqY$ZZbnl5Bh26Aj?sCVZoy>Ju0M{ES;4K_0{JV;Ws1RBR7W z1_5-6N+tCHn$pS-^YT*MLmg)LG;c>+v9d@{`&SgIvNpN0)6SNn%tlm**;IvO7c$O9 zQSqVZ3N0JYQSO18QJih}aO2N%AUDwqylJs%;A*@+7nK>vOYhd0CH_e4o)i5vm?u2G RWcY6$oQ7BsFIvqne*hHsLk0i< literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..43fbeb6f55517ade4df933c40d76f77c2fbedde9 GIT binary patch literal 10219 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a21b4a24d357fdd06a99591c0c51eab2fe28a01b GIT binary patch literal 12281 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 VrpVAU^HVbut8qle4cpE<{C^#OhT{ML literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37fb91d5d3c604289bc4764459542b1392843257 GIT binary patch literal 1567 zcmZux&u`l{6ecCgmSrbtoHS{-b<3d`phG=$+bJl9wqBMM+tL6@F- $|9XA(XWwo zkOVF;to<8y-j4m3c-<+${(_wLo?IvKFamn|NIvns@4b&I7Zw5nqxDBO{ii|5-#EEB z7)%}$LiKL|1Q9eNIgKbq>|{>lz}wB-oJFi&W0{vXqDGCqteN|fpSPk`9z;Rjj@pz+ z=cpqZ$3#64P2pz?`C_yPtG@bLGU41M(Nf_^7Agg?(6-!#FwKKdWTOVBweDE#Cir ztN+8Zoo(wsuke&OvkV<9OJZ$8=fZ_R7i~0j8nXK|)^h7Kk+uJ}D#uj+?rXA>XQ0W}_T! zY$jQ(_2#Q&N-ax=y_w^yjgczzjomZzx-2%n>OK6j_poOJIm=RCt{5QoaxV3Q1R2eS z0|1|GOdGW@p%cQPy?f+6#nQI<^>LwNnU>i|ErR2FqE_H_dC=b+ywFnV!O@W{i^IXU zQXiYL8a%IL@pGJI((otG24$iKy%SlS41P?91DzWApaPcACOx={aEN97g3tK%sx#|z zo))R${5AyBm})@Jm#;i#ySAaE8LPswowAT~6p=1IeWZwjMsn&FfSN!^RdNg!Hk@m-l8`dWll{Pt^}lu&y?Qf`P4e0@(6yOX7ezBIF|<~mVr$V|W7Yj7Mmr9pfwM+^$|!S~GuP~?|4s;u z@R%hqfY%VOBlcAt|07(ellTM?W}-etQ+s{}C~Ts#ia3{?+ko@D6ypqWhx1>@arR-S z$+;*K&K0Upp%T=6G&PB9gSo2(FsP*Z8upz;( b{RXdv#+r19?{sK~-hre$Q1$={zv})As}F@L literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc b/ocr/.venv/Lib/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae5fb6485f59c9d413b200bf2303c3095e5e921b GIT binary patch literal 561 zcmYjN&2AGh5Vm){KlxcuIUvD_>mFD@+)#u-A%%!4t!M(mvSg+45N*2kuDnjv_Ca_6 zZoHDOobn1>V7#=zjQq{7X1;NqWqpFu`+BeZMG5)gga3tL@CsjhiLfARqR2POiK3hW zHIG!F!Ya53c}NNR41LBKB@hCG2;win1EM02JkbH9Jb@T`Djt!}CTJ6k(;M3x5!Gje z_xV5#&<=T~hNmRYa^?n7?!dHVt)+Aa{{p*hD!^27Q+3>UR;UBXN>b7tMX6cNQ9l z6eh&H!JCN*Jornmqi4nQ;%Of4eSY6{MCi@(J1&uOSyi|wn}0r;$nm?$`2BSD*2VU! zDfQaKen^7g!ctoow$||MqqMH=(jt*o%0Dc+ZGWkJ zC+5IU^zc)RUx-DE*Ne>tYP}Y3pgp&BBaR!;pO6+<`Fbkql@Y}b^iCX=XQC}FJZ_e& z^W_>^0hcRi{JyoRx6PB=zbu+7myRxKwXNW#Ke~O0&<|O_=n(aOz=AYLX{W)E{sv6N Bj%NS> literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/_catch.py b/ocr/.venv/Lib/site-packages/exceptiongroup/_catch.py new file mode 100644 index 00000000..0246568b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/_catch.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +import inspect +import sys +from collections.abc import Callable, Iterable, Mapping +from contextlib import AbstractContextManager +from types import TracebackType +from typing import TYPE_CHECKING, Any + +if sys.version_info < (3, 11): + from ._exceptions import BaseExceptionGroup + +if TYPE_CHECKING: + _Handler = Callable[[BaseExceptionGroup[Any]], Any] + + +class _Catcher: + def __init__(self, handler_map: Mapping[tuple[type[BaseException], ...], _Handler]): + self._handler_map = handler_map + + def __enter__(self) -> None: + pass + + def __exit__( + self, + etype: type[BaseException] | None, + exc: BaseException | None, + tb: TracebackType | None, + ) -> bool: + if exc is not None: + unhandled = self.handle_exception(exc) + if unhandled is exc: + return False + elif unhandled is None: + return True + else: + if isinstance(exc, BaseExceptionGroup): + try: + raise unhandled from exc.__cause__ + except BaseExceptionGroup: + # Change __context__ to __cause__ because Python 3.11 does this + # too + unhandled.__context__ = exc.__cause__ + raise + + raise unhandled from exc + + return False + + def handle_exception(self, exc: BaseException) -> BaseException | None: + excgroup: BaseExceptionGroup | None + if isinstance(exc, BaseExceptionGroup): + excgroup = exc + else: + excgroup = BaseExceptionGroup("", [exc]) + + new_exceptions: list[BaseException] = [] + for exc_types, handler in self._handler_map.items(): + matched, excgroup = excgroup.split(exc_types) + if matched: + try: + try: + raise matched + except BaseExceptionGroup: + result = handler(matched) + except BaseExceptionGroup as new_exc: + if new_exc is matched: + new_exceptions.append(new_exc) + else: + new_exceptions.extend(new_exc.exceptions) + except BaseException as new_exc: + new_exceptions.append(new_exc) + else: + if inspect.iscoroutine(result): + raise TypeError( + f"Error trying to handle {matched!r} with {handler!r}. " + "Exception handler must be a sync function." + ) from exc + + if not excgroup: + break + + if new_exceptions: + if len(new_exceptions) == 1: + return new_exceptions[0] + + return BaseExceptionGroup("", new_exceptions) + elif ( + excgroup and len(excgroup.exceptions) == 1 and excgroup.exceptions[0] is exc + ): + return exc + else: + return excgroup + + +def catch( + __handlers: Mapping[type[BaseException] | Iterable[type[BaseException]], _Handler], +) -> AbstractContextManager[None]: + if not isinstance(__handlers, Mapping): + raise TypeError("the argument must be a mapping") + + handler_map: dict[ + tuple[type[BaseException], ...], Callable[[BaseExceptionGroup]] + ] = {} + for type_or_iterable, handler in __handlers.items(): + iterable: tuple[type[BaseException]] + if isinstance(type_or_iterable, type) and issubclass( + type_or_iterable, BaseException + ): + iterable = (type_or_iterable,) + elif isinstance(type_or_iterable, Iterable): + iterable = tuple(type_or_iterable) + else: + raise TypeError( + "each key must be either an exception classes or an iterable thereof" + ) + + if not callable(handler): + raise TypeError("handlers must be callable") + + for exc_type in iterable: + if not isinstance(exc_type, type) or not issubclass( + exc_type, BaseException + ): + raise TypeError( + "each key must be either an exception classes or an iterable " + "thereof" + ) + + if issubclass(exc_type, BaseExceptionGroup): + raise TypeError( + "catching ExceptionGroup with catch() is not allowed. " + "Use except instead." + ) + + handler_map[iterable] = handler + + return _Catcher(handler_map) diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/_exceptions.py b/ocr/.venv/Lib/site-packages/exceptiongroup/_exceptions.py new file mode 100644 index 00000000..f42c1ad3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/_exceptions.py @@ -0,0 +1,336 @@ +from __future__ import annotations + +import sys +from collections.abc import Callable, Sequence +from functools import partial +from inspect import getmro, isclass +from typing import TYPE_CHECKING, Generic, Type, TypeVar, cast, overload + +if sys.version_info < (3, 13): + from typing_extensions import TypeVar + +_BaseExceptionT_co = TypeVar( + "_BaseExceptionT_co", bound=BaseException, covariant=True, default=BaseException +) +_BaseExceptionT = TypeVar("_BaseExceptionT", bound=BaseException) +_ExceptionT_co = TypeVar( + "_ExceptionT_co", bound=Exception, covariant=True, default=Exception +) +_ExceptionT = TypeVar("_ExceptionT", bound=Exception) +# using typing.Self would require a typing_extensions dependency on py<3.11 +_ExceptionGroupSelf = TypeVar("_ExceptionGroupSelf", bound="ExceptionGroup") +_BaseExceptionGroupSelf = TypeVar("_BaseExceptionGroupSelf", bound="BaseExceptionGroup") + + +def check_direct_subclass( + exc: BaseException, parents: tuple[type[BaseException]] +) -> bool: + for cls in getmro(exc.__class__)[:-1]: + if cls in parents: + return True + + return False + + +def get_condition_filter( + condition: type[_BaseExceptionT] + | tuple[type[_BaseExceptionT], ...] + | Callable[[_BaseExceptionT_co], bool], +) -> Callable[[_BaseExceptionT_co], bool]: + if isclass(condition) and issubclass( + cast(Type[BaseException], condition), BaseException + ): + return partial(check_direct_subclass, parents=(condition,)) + elif isinstance(condition, tuple): + if all(isclass(x) and issubclass(x, BaseException) for x in condition): + return partial(check_direct_subclass, parents=condition) + elif callable(condition): + return cast("Callable[[BaseException], bool]", condition) + + raise TypeError("expected a function, exception type or tuple of exception types") + + +def _derive_and_copy_attributes(self, excs): + eg = self.derive(excs) + eg.__cause__ = self.__cause__ + eg.__context__ = self.__context__ + eg.__traceback__ = self.__traceback__ + if hasattr(self, "__notes__"): + # Create a new list so that add_note() only affects one exceptiongroup + eg.__notes__ = list(self.__notes__) + return eg + + +class BaseExceptionGroup(BaseException, Generic[_BaseExceptionT_co]): + """A combination of multiple unrelated exceptions.""" + + def __new__( + cls: type[_BaseExceptionGroupSelf], + __message: str, + __exceptions: Sequence[_BaseExceptionT_co], + ) -> _BaseExceptionGroupSelf: + if not isinstance(__message, str): + raise TypeError(f"argument 1 must be str, not {type(__message)}") + if not isinstance(__exceptions, Sequence): + raise TypeError("second argument (exceptions) must be a sequence") + if not __exceptions: + raise ValueError( + "second argument (exceptions) must be a non-empty sequence" + ) + + for i, exc in enumerate(__exceptions): + if not isinstance(exc, BaseException): + raise ValueError( + f"Item {i} of second argument (exceptions) is not an exception" + ) + + if cls is BaseExceptionGroup: + if all(isinstance(exc, Exception) for exc in __exceptions): + cls = ExceptionGroup + + if issubclass(cls, Exception): + for exc in __exceptions: + if not isinstance(exc, Exception): + if cls is ExceptionGroup: + raise TypeError( + "Cannot nest BaseExceptions in an ExceptionGroup" + ) + else: + raise TypeError( + f"Cannot nest BaseExceptions in {cls.__name__!r}" + ) + + instance = super().__new__(cls, __message, __exceptions) + instance._exceptions = tuple(__exceptions) + return instance + + def __init__( + self, + __message: str, + __exceptions: Sequence[_BaseExceptionT_co], + *args: object, + ) -> None: + BaseException.__init__(self, __message, __exceptions, *args) + + def add_note(self, note: str) -> None: + if not isinstance(note, str): + raise TypeError( + f"Expected a string, got note={note!r} (type {type(note).__name__})" + ) + + if not hasattr(self, "__notes__"): + self.__notes__: list[str] = [] + + self.__notes__.append(note) + + @property + def message(self) -> str: + return self.args[0] + + @property + def exceptions( + self, + ) -> tuple[_BaseExceptionT_co | BaseExceptionGroup[_BaseExceptionT_co], ...]: + return tuple(self._exceptions) + + @overload + def subgroup( + self, __condition: type[_ExceptionT] | tuple[type[_ExceptionT], ...] + ) -> ExceptionGroup[_ExceptionT] | None: ... + + @overload + def subgroup( + self, __condition: type[_BaseExceptionT] | tuple[type[_BaseExceptionT], ...] + ) -> BaseExceptionGroup[_BaseExceptionT] | None: ... + + @overload + def subgroup( + self, + __condition: Callable[[_BaseExceptionT_co | _BaseExceptionGroupSelf], bool], + ) -> BaseExceptionGroup[_BaseExceptionT_co] | None: ... + + def subgroup( + self, + __condition: type[_BaseExceptionT] + | tuple[type[_BaseExceptionT], ...] + | Callable[[_BaseExceptionT_co | _BaseExceptionGroupSelf], bool], + ) -> BaseExceptionGroup[_BaseExceptionT] | None: + condition = get_condition_filter(__condition) + modified = False + if condition(self): + return self + + exceptions: list[BaseException] = [] + for exc in self.exceptions: + if isinstance(exc, BaseExceptionGroup): + subgroup = exc.subgroup(__condition) + if subgroup is not None: + exceptions.append(subgroup) + + if subgroup is not exc: + modified = True + elif condition(exc): + exceptions.append(exc) + else: + modified = True + + if not modified: + return self + elif exceptions: + group = _derive_and_copy_attributes(self, exceptions) + return group + else: + return None + + @overload + def split( + self, __condition: type[_ExceptionT] | tuple[type[_ExceptionT], ...] + ) -> tuple[ + ExceptionGroup[_ExceptionT] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ]: ... + + @overload + def split( + self, __condition: type[_BaseExceptionT] | tuple[type[_BaseExceptionT], ...] + ) -> tuple[ + BaseExceptionGroup[_BaseExceptionT] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ]: ... + + @overload + def split( + self, + __condition: Callable[[_BaseExceptionT_co | _BaseExceptionGroupSelf], bool], + ) -> tuple[ + BaseExceptionGroup[_BaseExceptionT_co] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ]: ... + + def split( + self, + __condition: type[_BaseExceptionT] + | tuple[type[_BaseExceptionT], ...] + | Callable[[_BaseExceptionT_co], bool], + ) -> ( + tuple[ + ExceptionGroup[_ExceptionT] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ] + | tuple[ + BaseExceptionGroup[_BaseExceptionT] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ] + | tuple[ + BaseExceptionGroup[_BaseExceptionT_co] | None, + BaseExceptionGroup[_BaseExceptionT_co] | None, + ] + ): + condition = get_condition_filter(__condition) + if condition(self): + return self, None + + matching_exceptions: list[BaseException] = [] + nonmatching_exceptions: list[BaseException] = [] + for exc in self.exceptions: + if isinstance(exc, BaseExceptionGroup): + matching, nonmatching = exc.split(condition) + if matching is not None: + matching_exceptions.append(matching) + + if nonmatching is not None: + nonmatching_exceptions.append(nonmatching) + elif condition(exc): + matching_exceptions.append(exc) + else: + nonmatching_exceptions.append(exc) + + matching_group: _BaseExceptionGroupSelf | None = None + if matching_exceptions: + matching_group = _derive_and_copy_attributes(self, matching_exceptions) + + nonmatching_group: _BaseExceptionGroupSelf | None = None + if nonmatching_exceptions: + nonmatching_group = _derive_and_copy_attributes( + self, nonmatching_exceptions + ) + + return matching_group, nonmatching_group + + @overload + def derive(self, __excs: Sequence[_ExceptionT]) -> ExceptionGroup[_ExceptionT]: ... + + @overload + def derive( + self, __excs: Sequence[_BaseExceptionT] + ) -> BaseExceptionGroup[_BaseExceptionT]: ... + + def derive( + self, __excs: Sequence[_BaseExceptionT] + ) -> BaseExceptionGroup[_BaseExceptionT]: + return BaseExceptionGroup(self.message, __excs) + + def __str__(self) -> str: + suffix = "" if len(self._exceptions) == 1 else "s" + return f"{self.message} ({len(self._exceptions)} sub-exception{suffix})" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.args[0]!r}, {self.args[1]!r})" + + +class ExceptionGroup(BaseExceptionGroup[_ExceptionT_co], Exception): + def __new__( + cls: type[_ExceptionGroupSelf], + __message: str, + __exceptions: Sequence[_ExceptionT_co], + ) -> _ExceptionGroupSelf: + return super().__new__(cls, __message, __exceptions) + + if TYPE_CHECKING: + + @property + def exceptions( + self, + ) -> tuple[_ExceptionT_co | ExceptionGroup[_ExceptionT_co], ...]: ... + + @overload # type: ignore[override] + def subgroup( + self, __condition: type[_ExceptionT] | tuple[type[_ExceptionT], ...] + ) -> ExceptionGroup[_ExceptionT] | None: ... + + @overload + def subgroup( + self, __condition: Callable[[_ExceptionT_co | _ExceptionGroupSelf], bool] + ) -> ExceptionGroup[_ExceptionT_co] | None: ... + + def subgroup( + self, + __condition: type[_ExceptionT] + | tuple[type[_ExceptionT], ...] + | Callable[[_ExceptionT_co], bool], + ) -> ExceptionGroup[_ExceptionT] | None: + return super().subgroup(__condition) + + @overload + def split( + self, __condition: type[_ExceptionT] | tuple[type[_ExceptionT], ...] + ) -> tuple[ + ExceptionGroup[_ExceptionT] | None, ExceptionGroup[_ExceptionT_co] | None + ]: ... + + @overload + def split( + self, __condition: Callable[[_ExceptionT_co | _ExceptionGroupSelf], bool] + ) -> tuple[ + ExceptionGroup[_ExceptionT_co] | None, ExceptionGroup[_ExceptionT_co] | None + ]: ... + + def split( + self: _ExceptionGroupSelf, + __condition: type[_ExceptionT] + | tuple[type[_ExceptionT], ...] + | Callable[[_ExceptionT_co], bool], + ) -> tuple[ + ExceptionGroup[_ExceptionT_co] | None, ExceptionGroup[_ExceptionT_co] | None + ]: + return super().split(__condition) diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/_formatting.py b/ocr/.venv/Lib/site-packages/exceptiongroup/_formatting.py new file mode 100644 index 00000000..c383c502 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/_formatting.py @@ -0,0 +1,601 @@ +# traceback_exception_init() adapted from trio +# +# _ExceptionPrintContext and traceback_exception_format() copied from the standard +# library +from __future__ import annotations + +import collections.abc +import sys +import textwrap +import traceback +from functools import singledispatch +from types import TracebackType +from typing import Any, List, Optional + +from ._exceptions import BaseExceptionGroup + +max_group_width = 15 +max_group_depth = 10 +_cause_message = ( + "\nThe above exception was the direct cause of the following exception:\n\n" +) + +_context_message = ( + "\nDuring handling of the above exception, another exception occurred:\n\n" +) + + +def _format_final_exc_line(etype, value): + valuestr = _safe_string(value, "exception") + if value is None or not valuestr: + line = f"{etype}\n" + else: + line = f"{etype}: {valuestr}\n" + + return line + + +def _safe_string(value, what, func=str): + try: + return func(value) + except BaseException: + return f"<{what} {func.__name__}() failed>" + + +class _ExceptionPrintContext: + def __init__(self): + self.seen = set() + self.exception_group_depth = 0 + self.need_close = False + + def indent(self): + return " " * (2 * self.exception_group_depth) + + def emit(self, text_gen, margin_char=None): + if margin_char is None: + margin_char = "|" + indent_str = self.indent() + if self.exception_group_depth: + indent_str += margin_char + " " + + if isinstance(text_gen, str): + yield textwrap.indent(text_gen, indent_str, lambda line: True) + else: + for text in text_gen: + yield textwrap.indent(text, indent_str, lambda line: True) + + +def exceptiongroup_excepthook( + etype: type[BaseException], value: BaseException, tb: TracebackType | None +) -> None: + sys.stderr.write("".join(traceback.format_exception(etype, value, tb))) + + +class PatchedTracebackException(traceback.TracebackException): + def __init__( + self, + exc_type: type[BaseException], + exc_value: BaseException, + exc_traceback: TracebackType | None, + *, + limit: int | None = None, + lookup_lines: bool = True, + capture_locals: bool = False, + compact: bool = False, + _seen: set[int] | None = None, + ) -> None: + kwargs: dict[str, Any] = {} + if sys.version_info >= (3, 10): + kwargs["compact"] = compact + + is_recursive_call = _seen is not None + if _seen is None: + _seen = set() + _seen.add(id(exc_value)) + + self.stack = traceback.StackSummary.extract( + traceback.walk_tb(exc_traceback), + limit=limit, + lookup_lines=lookup_lines, + capture_locals=capture_locals, + ) + self.exc_type = exc_type + # Capture now to permit freeing resources: only complication is in the + # unofficial API _format_final_exc_line + self._str = _safe_string(exc_value, "exception") + try: + self.__notes__ = getattr(exc_value, "__notes__", None) + except KeyError: + # Workaround for https://github.com/python/cpython/issues/98778 on Python + # <= 3.9, and some 3.10 and 3.11 patch versions. + HTTPError = getattr(sys.modules.get("urllib.error", None), "HTTPError", ()) + if sys.version_info[:2] <= (3, 11) and isinstance(exc_value, HTTPError): + self.__notes__ = None + else: + raise + + if exc_type and issubclass(exc_type, SyntaxError): + # Handle SyntaxError's specially + self.filename = exc_value.filename + lno = exc_value.lineno + self.lineno = str(lno) if lno is not None else None + self.text = exc_value.text + self.offset = exc_value.offset + self.msg = exc_value.msg + if sys.version_info >= (3, 10): + end_lno = exc_value.end_lineno + self.end_lineno = str(end_lno) if end_lno is not None else None + self.end_offset = exc_value.end_offset + elif ( + exc_type + and issubclass(exc_type, (NameError, AttributeError)) + and getattr(exc_value, "name", None) is not None + ): + suggestion = _compute_suggestion_error(exc_value, exc_traceback) + if suggestion: + self._str += f". Did you mean: '{suggestion}'?" + + if lookup_lines: + # Force all lines in the stack to be loaded + for frame in self.stack: + frame.line + + self.__suppress_context__ = ( + exc_value.__suppress_context__ if exc_value is not None else False + ) + + # Convert __cause__ and __context__ to `TracebackExceptions`s, use a + # queue to avoid recursion (only the top-level call gets _seen == None) + if not is_recursive_call: + queue = [(self, exc_value)] + while queue: + te, e = queue.pop() + + if e and e.__cause__ is not None and id(e.__cause__) not in _seen: + cause = PatchedTracebackException( + type(e.__cause__), + e.__cause__, + e.__cause__.__traceback__, + limit=limit, + lookup_lines=lookup_lines, + capture_locals=capture_locals, + _seen=_seen, + ) + else: + cause = None + + if compact: + need_context = ( + cause is None and e is not None and not e.__suppress_context__ + ) + else: + need_context = True + if ( + e + and e.__context__ is not None + and need_context + and id(e.__context__) not in _seen + ): + context = PatchedTracebackException( + type(e.__context__), + e.__context__, + e.__context__.__traceback__, + limit=limit, + lookup_lines=lookup_lines, + capture_locals=capture_locals, + _seen=_seen, + ) + else: + context = None + + # Capture each of the exceptions in the ExceptionGroup along with each + # of their causes and contexts + if e and isinstance(e, BaseExceptionGroup): + exceptions = [] + for exc in e.exceptions: + texc = PatchedTracebackException( + type(exc), + exc, + exc.__traceback__, + lookup_lines=lookup_lines, + capture_locals=capture_locals, + _seen=_seen, + ) + exceptions.append(texc) + else: + exceptions = None + + te.__cause__ = cause + te.__context__ = context + te.exceptions = exceptions + if cause: + queue.append((te.__cause__, e.__cause__)) + if context: + queue.append((te.__context__, e.__context__)) + if exceptions: + queue.extend(zip(te.exceptions, e.exceptions)) + + def format(self, *, chain=True, _ctx=None, **kwargs): + if _ctx is None: + _ctx = _ExceptionPrintContext() + + output = [] + exc = self + if chain: + while exc: + if exc.__cause__ is not None: + chained_msg = _cause_message + chained_exc = exc.__cause__ + elif exc.__context__ is not None and not exc.__suppress_context__: + chained_msg = _context_message + chained_exc = exc.__context__ + else: + chained_msg = None + chained_exc = None + + output.append((chained_msg, exc)) + exc = chained_exc + else: + output.append((None, exc)) + + for msg, exc in reversed(output): + if msg is not None: + yield from _ctx.emit(msg) + if exc.exceptions is None: + if exc.stack: + yield from _ctx.emit("Traceback (most recent call last):\n") + yield from _ctx.emit(exc.stack.format()) + yield from _ctx.emit(exc.format_exception_only()) + elif _ctx.exception_group_depth > max_group_depth: + # exception group, but depth exceeds limit + yield from _ctx.emit(f"... (max_group_depth is {max_group_depth})\n") + else: + # format exception group + is_toplevel = _ctx.exception_group_depth == 0 + if is_toplevel: + _ctx.exception_group_depth += 1 + + if exc.stack: + yield from _ctx.emit( + "Exception Group Traceback (most recent call last):\n", + margin_char="+" if is_toplevel else None, + ) + yield from _ctx.emit(exc.stack.format()) + + yield from _ctx.emit(exc.format_exception_only()) + num_excs = len(exc.exceptions) + if num_excs <= max_group_width: + n = num_excs + else: + n = max_group_width + 1 + _ctx.need_close = False + for i in range(n): + last_exc = i == n - 1 + if last_exc: + # The closing frame may be added by a recursive call + _ctx.need_close = True + + if max_group_width is not None: + truncated = i >= max_group_width + else: + truncated = False + title = f"{i + 1}" if not truncated else "..." + yield ( + _ctx.indent() + + ("+-" if i == 0 else " ") + + f"+---------------- {title} ----------------\n" + ) + _ctx.exception_group_depth += 1 + if not truncated: + yield from exc.exceptions[i].format(chain=chain, _ctx=_ctx) + else: + remaining = num_excs - max_group_width + plural = "s" if remaining > 1 else "" + yield from _ctx.emit( + f"and {remaining} more exception{plural}\n" + ) + + if last_exc and _ctx.need_close: + yield _ctx.indent() + "+------------------------------------\n" + _ctx.need_close = False + _ctx.exception_group_depth -= 1 + + if is_toplevel: + assert _ctx.exception_group_depth == 1 + _ctx.exception_group_depth = 0 + + def format_exception_only(self, **kwargs): + """Format the exception part of the traceback. + The return value is a generator of strings, each ending in a newline. + Normally, the generator emits a single string; however, for + SyntaxError exceptions, it emits several lines that (when + printed) display detailed information about where the syntax + error occurred. + The message indicating which exception occurred is always the last + string in the output. + """ + if self.exc_type is None: + yield traceback._format_final_exc_line(None, self._str) + return + + stype = self.exc_type.__qualname__ + smod = self.exc_type.__module__ + if smod not in ("__main__", "builtins"): + if not isinstance(smod, str): + smod = "" + stype = smod + "." + stype + + if not issubclass(self.exc_type, SyntaxError): + yield _format_final_exc_line(stype, self._str) + elif traceback_exception_format_syntax_error is not None: + yield from traceback_exception_format_syntax_error(self, stype) + else: + yield from traceback_exception_original_format_exception_only(self) + + if isinstance(self.__notes__, collections.abc.Sequence): + for note in self.__notes__: + note = _safe_string(note, "note") + yield from [line + "\n" for line in note.split("\n")] + elif self.__notes__ is not None: + yield _safe_string(self.__notes__, "__notes__", func=repr) + + +traceback_exception_original_format = traceback.TracebackException.format +traceback_exception_original_format_exception_only = ( + traceback.TracebackException.format_exception_only +) +traceback_exception_format_syntax_error = getattr( + traceback.TracebackException, "_format_syntax_error", None +) +if sys.excepthook is sys.__excepthook__: + traceback.TracebackException.__init__ = ( # type: ignore[assignment] + PatchedTracebackException.__init__ + ) + traceback.TracebackException.format = ( # type: ignore[assignment] + PatchedTracebackException.format + ) + traceback.TracebackException.format_exception_only = ( # type: ignore[assignment] + PatchedTracebackException.format_exception_only + ) + sys.excepthook = exceptiongroup_excepthook + +# Ubuntu's system Python has a sitecustomize.py file that imports +# apport_python_hook and replaces sys.excepthook. +# +# The custom hook captures the error for crash reporting, and then calls +# sys.__excepthook__ to actually print the error. +# +# We don't mind it capturing the error for crash reporting, but we want to +# take over printing the error. So we monkeypatch the apport_python_hook +# module so that instead of calling sys.__excepthook__, it calls our custom +# hook. +# +# More details: https://github.com/python-trio/trio/issues/1065 +if getattr(sys.excepthook, "__name__", None) in ( + "apport_excepthook", + # on ubuntu 22.10 the hook was renamed to partial_apport_excepthook + "partial_apport_excepthook", +): + # patch traceback like above + traceback.TracebackException.__init__ = ( # type: ignore[assignment] + PatchedTracebackException.__init__ + ) + traceback.TracebackException.format = ( # type: ignore[assignment] + PatchedTracebackException.format + ) + traceback.TracebackException.format_exception_only = ( # type: ignore[assignment] + PatchedTracebackException.format_exception_only + ) + + from types import ModuleType + + import apport_python_hook + + # monkeypatch the sys module that apport has imported + fake_sys = ModuleType("exceptiongroup_fake_sys") + fake_sys.__dict__.update(sys.__dict__) + fake_sys.__excepthook__ = exceptiongroup_excepthook + apport_python_hook.sys = fake_sys + + +@singledispatch +def format_exception_only(__exc: BaseException, **kwargs: Any) -> List[str]: + return list( + PatchedTracebackException( + type(__exc), __exc, None, compact=True + ).format_exception_only() + ) + + +@format_exception_only.register +def _(__exc: type, value: BaseException, **kwargs: Any) -> List[str]: + return format_exception_only(value) + + +@singledispatch +def format_exception( + __exc: BaseException, limit: Optional[int] = None, chain: bool = True, **kwargs: Any +) -> List[str]: + return list( + PatchedTracebackException( + type(__exc), __exc, __exc.__traceback__, limit=limit, compact=True + ).format(chain=chain) + ) + + +@format_exception.register +def _( + __exc: type, + value: BaseException, + tb: TracebackType, + limit: Optional[int] = None, + chain: bool = True, + **kwargs: Any, +) -> List[str]: + return format_exception(value, limit, chain) + + +@singledispatch +def print_exception( + __exc: BaseException, + limit: Optional[int] = None, + file: Any = None, + chain: bool = True, + **kwargs: Any, +) -> None: + if file is None: + file = sys.stderr + + for line in PatchedTracebackException( + type(__exc), __exc, __exc.__traceback__, limit=limit + ).format(chain=chain): + print(line, file=file, end="") + + +@print_exception.register +def _( + __exc: type, + value: BaseException, + tb: TracebackType, + limit: Optional[int] = None, + file: Any = None, + chain: bool = True, +) -> None: + print_exception(value, limit, file, chain) + + +def print_exc( + limit: Optional[int] = None, + file: Any | None = None, + chain: bool = True, +) -> None: + value = sys.exc_info()[1] + print_exception(value, limit, file, chain) + + +# Python levenshtein edit distance code for NameError/AttributeError +# suggestions, backported from 3.12 + +_MAX_CANDIDATE_ITEMS = 750 +_MAX_STRING_SIZE = 40 +_MOVE_COST = 2 +_CASE_COST = 1 +_SENTINEL = object() + + +def _substitution_cost(ch_a, ch_b): + if ch_a == ch_b: + return 0 + if ch_a.lower() == ch_b.lower(): + return _CASE_COST + return _MOVE_COST + + +def _compute_suggestion_error(exc_value, tb): + wrong_name = getattr(exc_value, "name", None) + if wrong_name is None or not isinstance(wrong_name, str): + return None + if isinstance(exc_value, AttributeError): + obj = getattr(exc_value, "obj", _SENTINEL) + if obj is _SENTINEL: + return None + obj = exc_value.obj + try: + d = dir(obj) + except Exception: + return None + else: + assert isinstance(exc_value, NameError) + # find most recent frame + if tb is None: + return None + while tb.tb_next is not None: + tb = tb.tb_next + frame = tb.tb_frame + + d = list(frame.f_locals) + list(frame.f_globals) + list(frame.f_builtins) + if len(d) > _MAX_CANDIDATE_ITEMS: + return None + wrong_name_len = len(wrong_name) + if wrong_name_len > _MAX_STRING_SIZE: + return None + best_distance = wrong_name_len + suggestion = None + for possible_name in d: + if possible_name == wrong_name: + # A missing attribute is "found". Don't suggest it (see GH-88821). + continue + # No more than 1/3 of the involved characters should need changed. + max_distance = (len(possible_name) + wrong_name_len + 3) * _MOVE_COST // 6 + # Don't take matches we've already beaten. + max_distance = min(max_distance, best_distance - 1) + current_distance = _levenshtein_distance( + wrong_name, possible_name, max_distance + ) + if current_distance > max_distance: + continue + if not suggestion or current_distance < best_distance: + suggestion = possible_name + best_distance = current_distance + return suggestion + + +def _levenshtein_distance(a, b, max_cost): + # A Python implementation of Python/suggestions.c:levenshtein_distance. + + # Both strings are the same + if a == b: + return 0 + + # Trim away common affixes + pre = 0 + while a[pre:] and b[pre:] and a[pre] == b[pre]: + pre += 1 + a = a[pre:] + b = b[pre:] + post = 0 + while a[: post or None] and b[: post or None] and a[post - 1] == b[post - 1]: + post -= 1 + a = a[: post or None] + b = b[: post or None] + if not a or not b: + return _MOVE_COST * (len(a) + len(b)) + if len(a) > _MAX_STRING_SIZE or len(b) > _MAX_STRING_SIZE: + return max_cost + 1 + + # Prefer shorter buffer + if len(b) < len(a): + a, b = b, a + + # Quick fail when a match is impossible + if (len(b) - len(a)) * _MOVE_COST > max_cost: + return max_cost + 1 + + # Instead of producing the whole traditional len(a)-by-len(b) + # matrix, we can update just one row in place. + # Initialize the buffer row + row = list(range(_MOVE_COST, _MOVE_COST * (len(a) + 1), _MOVE_COST)) + + result = 0 + for bindex in range(len(b)): + bchar = b[bindex] + distance = result = bindex * _MOVE_COST + minimum = sys.maxsize + for index in range(len(a)): + # 1) Previous distance in this row is cost(b[:b_index], a[:index]) + substitute = distance + _substitution_cost(bchar, a[index]) + # 2) cost(b[:b_index], a[:index+1]) from previous row + distance = row[index] + # 3) existing result is cost(b[:b_index+1], a[index]) + + insert_delete = min(result, distance) + _MOVE_COST + result = min(insert_delete, substitute) + + # cost(b[:b_index+1], a[:index+1]) + row[index] = result + if result < minimum: + minimum = result + if minimum > max_cost: + # Everything in this row is too big, so bail early. + return max_cost + 1 + return result diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/_suppress.py b/ocr/.venv/Lib/site-packages/exceptiongroup/_suppress.py new file mode 100644 index 00000000..11467eed --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/_suppress.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +import sys +from contextlib import AbstractContextManager +from types import TracebackType +from typing import TYPE_CHECKING, Optional, Type, cast + +if sys.version_info < (3, 11): + from ._exceptions import BaseExceptionGroup + +if TYPE_CHECKING: + # requires python 3.9 + BaseClass = AbstractContextManager[None] +else: + BaseClass = AbstractContextManager + + +class suppress(BaseClass): + """Backport of :class:`contextlib.suppress` from Python 3.12.1.""" + + def __init__(self, *exceptions: type[BaseException]): + self._exceptions = exceptions + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exctype: Optional[Type[BaseException]], + excinst: Optional[BaseException], + exctb: Optional[TracebackType], + ) -> bool: + # Unlike isinstance and issubclass, CPython exception handling + # currently only looks at the concrete type hierarchy (ignoring + # the instance and subclass checking hooks). While Guido considers + # that a bug rather than a feature, it's a fairly hard one to fix + # due to various internal implementation details. suppress provides + # the simpler issubclass based semantics, rather than trying to + # exactly reproduce the limitations of the CPython interpreter. + # + # See http://bugs.python.org/issue12029 for more details + if exctype is None: + return False + + if issubclass(exctype, self._exceptions): + return True + + if issubclass(exctype, BaseExceptionGroup): + match, rest = cast(BaseExceptionGroup, excinst).split(self._exceptions) + if rest is None: + return True + + raise rest + + return False diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/_version.py b/ocr/.venv/Lib/site-packages/exceptiongroup/_version.py new file mode 100644 index 00000000..32c340de --- /dev/null +++ b/ocr/.venv/Lib/site-packages/exceptiongroup/_version.py @@ -0,0 +1,21 @@ +# file generated by setuptools-scm +# don't change, don't track in version control + +__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"] + +TYPE_CHECKING = False +if TYPE_CHECKING: + from typing import Tuple + from typing import Union + + VERSION_TUPLE = Tuple[Union[int, str], ...] +else: + VERSION_TUPLE = object + +version: str +__version__: str +__version_tuple__: VERSION_TUPLE +version_tuple: VERSION_TUPLE + +__version__ = version = '1.3.0' +__version_tuple__ = version_tuple = (1, 3, 0) diff --git a/ocr/.venv/Lib/site-packages/exceptiongroup/py.typed b/ocr/.venv/Lib/site-packages/exceptiongroup/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/INSTALLER b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/METADATA b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/METADATA new file mode 100644 index 00000000..ada7bdee --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/METADATA @@ -0,0 +1,562 @@ +Metadata-Version: 2.1 +Name: fastapi +Version: 0.115.0 +Summary: FastAPI framework, high performance, easy to learn, fast to code, ready for production +Author-Email: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= +Classifier: Intended Audience :: Information Technology +Classifier: Intended Audience :: System Administrators +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python +Classifier: Topic :: Internet +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Software Development :: Libraries +Classifier: Topic :: Software Development +Classifier: Typing :: Typed +Classifier: Development Status :: 4 - Beta +Classifier: Environment :: Web Environment +Classifier: Framework :: AsyncIO +Classifier: Framework :: FastAPI +Classifier: Framework :: Pydantic +Classifier: Framework :: Pydantic :: 1 +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers +Classifier: Topic :: Internet :: WWW/HTTP +Project-URL: Homepage, https://github.com/fastapi/fastapi +Project-URL: Documentation, https://fastapi.tiangolo.com/ +Project-URL: Repository, https://github.com/fastapi/fastapi +Project-URL: Issues, https://github.com/fastapi/fastapi/issues +Project-URL: Changelog, https://fastapi.tiangolo.com/release-notes/ +Requires-Python: >=3.8 +Requires-Dist: starlette<0.39.0,>=0.37.2 +Requires-Dist: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4 +Requires-Dist: typing-extensions>=4.8.0 +Requires-Dist: fastapi-cli[standard]>=0.0.5; extra == "standard" +Requires-Dist: httpx>=0.23.0; extra == "standard" +Requires-Dist: jinja2>=2.11.2; extra == "standard" +Requires-Dist: python-multipart>=0.0.7; extra == "standard" +Requires-Dist: email-validator>=2.0.0; extra == "standard" +Requires-Dist: uvicorn[standard]>=0.12.0; extra == "standard" +Requires-Dist: fastapi-cli[standard]>=0.0.5; extra == "all" +Requires-Dist: httpx>=0.23.0; extra == "all" +Requires-Dist: jinja2>=2.11.2; extra == "all" +Requires-Dist: python-multipart>=0.0.7; extra == "all" +Requires-Dist: itsdangerous>=1.1.0; extra == "all" +Requires-Dist: pyyaml>=5.3.1; extra == "all" +Requires-Dist: ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == "all" +Requires-Dist: orjson>=3.2.1; extra == "all" +Requires-Dist: email-validator>=2.0.0; extra == "all" +Requires-Dist: uvicorn[standard]>=0.12.0; extra == "all" +Requires-Dist: pydantic-settings>=2.0.0; extra == "all" +Requires-Dist: pydantic-extra-types>=2.0.0; extra == "all" +Provides-Extra: standard +Provides-Extra: all +Description-Content-Type: text/markdown + +

+

+ FastAPI framework, high performance, easy to learn, fast to code, ready for production +

+

+ + Test + + + Coverage + + + Package version + + + Supported Python versions + +

+ +--- + +**Documentation**: https://fastapi.tiangolo.com + +**Source Code**: https://github.com/fastapi/fastapi + +--- + +FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints. + +The key features are: + +* **Fast**: Very high performance, on par with **NodeJS** and **Go** (thanks to Starlette and Pydantic). [One of the fastest Python frameworks available](#performance). +* **Fast to code**: Increase the speed to develop features by about 200% to 300%. * +* **Fewer bugs**: Reduce about 40% of human (developer) induced errors. * +* **Intuitive**: Great editor support. Completion everywhere. Less time debugging. +* **Easy**: Designed to be easy to use and learn. Less time reading docs. +* **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs. +* **Robust**: Get production-ready code. With automatic interactive documentation. +* **Standards-based**: Based on (and fully compatible with) the open standards for APIs: OpenAPI (previously known as Swagger) and JSON Schema. + +* estimation based on tests on an internal development team, building production applications. + +## Sponsors + + + + + + + + + + + + + + + + + + + + + + + +Other sponsors + +## Opinions + +"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" + +
Kabir Khan - Microsoft (ref)
+ +--- + +"_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_" + +
Piero Molino, Yaroslav Dudin, and Sai Sumanth Miryala - Uber (ref)
+ +--- + +"_**Netflix** is pleased to announce the open-source release of our **crisis management** orchestration framework: **Dispatch**! [built with **FastAPI**]_" + +
Kevin Glisson, Marc Vilanova, Forest Monsen - Netflix (ref)
+ +--- + +"_I’m over the moon excited about **FastAPI**. It’s so fun!_" + +
Brian Okken - Python Bytes podcast host (ref)
+ +--- + +"_Honestly, what you've built looks super solid and polished. In many ways, it's what I wanted **Hug** to be - it's really inspiring to see someone build that._" + +
Timothy Crosley - Hug creator (ref)
+ +--- + +"_If you're looking to learn one **modern framework** for building REST APIs, check out **FastAPI** [...] It's fast, easy to use and easy to learn [...]_" + +"_We've switched over to **FastAPI** for our **APIs** [...] I think you'll like it [...]_" + +
Ines Montani - Matthew Honnibal - Explosion AI founders - spaCy creators (ref) - (ref)
+ +--- + +"_If anyone is looking to build a production Python API, I would highly recommend **FastAPI**. It is **beautifully designed**, **simple to use** and **highly scalable**, it has become a **key component** in our API first development strategy and is driving many automations and services such as our Virtual TAC Engineer._" + +
Deon Pillsbury - Cisco (ref)
+ +--- + +## **Typer**, the FastAPI of CLIs + + + +If you are building a CLI app to be used in the terminal instead of a web API, check out **Typer**. + +**Typer** is FastAPI's little sibling. And it's intended to be the **FastAPI of CLIs**. ⌨️ 🚀 + +## Requirements + +FastAPI stands on the shoulders of giants: + +* Starlette for the web parts. +* Pydantic for the data parts. + +## Installation + +Create and activate a virtual environment and then install FastAPI: + +
+ +```console +$ pip install "fastapi[standard]" + +---> 100% +``` + +
+ +**Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals. + +## Example + +### Create it + +* Create a file `main.py` with: + +```Python +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} +``` + +
+Or use async def... + +If your code uses `async` / `await`, use `async def`: + +```Python hl_lines="9 14" +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +async def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +async def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} +``` + +**Note**: + +If you don't know, check the _"In a hurry?"_ section about `async` and `await` in the docs. + +
+ +### Run it + +Run the server with: + +
+ +```console +$ fastapi dev main.py + + ╭────────── FastAPI CLI - Development mode ───────────╮ + │ │ + │ Serving at: http://127.0.0.1:8000 │ + │ │ + │ API docs: http://127.0.0.1:8000/docs │ + │ │ + │ Running in development mode, for production use: │ + │ │ + │ fastapi run │ + │ │ + ╰─────────────────────────────────────────────────────╯ + +INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp'] +INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) +INFO: Started reloader process [2248755] using WatchFiles +INFO: Started server process [2248757] +INFO: Waiting for application startup. +INFO: Application startup complete. +``` + +
+ +
+About the command fastapi dev main.py... + +The command `fastapi dev` reads your `main.py` file, detects the **FastAPI** app in it, and starts a server using Uvicorn. + +By default, `fastapi dev` will start with auto-reload enabled for local development. + +You can read more about it in the FastAPI CLI docs. + +
+ +### Check it + +Open your browser at http://127.0.0.1:8000/items/5?q=somequery. + +You will see the JSON response as: + +```JSON +{"item_id": 5, "q": "somequery"} +``` + +You already created an API that: + +* Receives HTTP requests in the _paths_ `/` and `/items/{item_id}`. +* Both _paths_ take `GET` operations (also known as HTTP _methods_). +* The _path_ `/items/{item_id}` has a _path parameter_ `item_id` that should be an `int`. +* The _path_ `/items/{item_id}` has an optional `str` _query parameter_ `q`. + +### Interactive API docs + +Now go to http://127.0.0.1:8000/docs. + +You will see the automatic interactive API documentation (provided by Swagger UI): + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) + +### Alternative API docs + +And now, go to http://127.0.0.1:8000/redoc. + +You will see the alternative automatic documentation (provided by ReDoc): + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) + +## Example upgrade + +Now modify the file `main.py` to receive a body from a `PUT` request. + +Declare the body using standard Python types, thanks to Pydantic. + +```Python hl_lines="4 9-12 25-27" +from typing import Union + +from fastapi import FastAPI +from pydantic import BaseModel + +app = FastAPI() + + +class Item(BaseModel): + name: str + price: float + is_offer: Union[bool, None] = None + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} + + +@app.put("/items/{item_id}") +def update_item(item_id: int, item: Item): + return {"item_name": item.name, "item_id": item_id} +``` + +The `fastapi dev` server should reload automatically. + +### Interactive API docs upgrade + +Now go to http://127.0.0.1:8000/docs. + +* The interactive API documentation will be automatically updated, including the new body: + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png) + +* Click on the button "Try it out", it allows you to fill the parameters and directly interact with the API: + +![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png) + +* Then click on the "Execute" button, the user interface will communicate with your API, send the parameters, get the results and show them on the screen: + +![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png) + +### Alternative API docs upgrade + +And now, go to http://127.0.0.1:8000/redoc. + +* The alternative documentation will also reflect the new query parameter and body: + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png) + +### Recap + +In summary, you declare **once** the types of parameters, body, etc. as function parameters. + +You do that with standard modern Python types. + +You don't have to learn a new syntax, the methods or classes of a specific library, etc. + +Just standard **Python**. + +For example, for an `int`: + +```Python +item_id: int +``` + +or for a more complex `Item` model: + +```Python +item: Item +``` + +...and with that single declaration you get: + +* Editor support, including: + * Completion. + * Type checks. +* Validation of data: + * Automatic and clear errors when the data is invalid. + * Validation even for deeply nested JSON objects. +* Conversion of input data: coming from the network to Python data and types. Reading from: + * JSON. + * Path parameters. + * Query parameters. + * Cookies. + * Headers. + * Forms. + * Files. +* Conversion of output data: converting from Python data and types to network data (as JSON): + * Convert Python types (`str`, `int`, `float`, `bool`, `list`, etc). + * `datetime` objects. + * `UUID` objects. + * Database models. + * ...and many more. +* Automatic interactive API documentation, including 2 alternative user interfaces: + * Swagger UI. + * ReDoc. + +--- + +Coming back to the previous code example, **FastAPI** will: + +* Validate that there is an `item_id` in the path for `GET` and `PUT` requests. +* Validate that the `item_id` is of type `int` for `GET` and `PUT` requests. + * If it is not, the client will see a useful, clear error. +* Check if there is an optional query parameter named `q` (as in `http://127.0.0.1:8000/items/foo?q=somequery`) for `GET` requests. + * As the `q` parameter is declared with `= None`, it is optional. + * Without the `None` it would be required (as is the body in the case with `PUT`). +* For `PUT` requests to `/items/{item_id}`, read the body as JSON: + * Check that it has a required attribute `name` that should be a `str`. + * Check that it has a required attribute `price` that has to be a `float`. + * Check that it has an optional attribute `is_offer`, that should be a `bool`, if present. + * All this would also work for deeply nested JSON objects. +* Convert from and to JSON automatically. +* Document everything with OpenAPI, that can be used by: + * Interactive documentation systems. + * Automatic client code generation systems, for many languages. +* Provide 2 interactive documentation web interfaces directly. + +--- + +We just scratched the surface, but you already get the idea of how it all works. + +Try changing the line with: + +```Python + return {"item_name": item.name, "item_id": item_id} +``` + +...from: + +```Python + ... "item_name": item.name ... +``` + +...to: + +```Python + ... "item_price": item.price ... +``` + +...and see how your editor will auto-complete the attributes and know their types: + +![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png) + +For a more complete example including more features, see the Tutorial - User Guide. + +**Spoiler alert**: the tutorial - user guide includes: + +* Declaration of **parameters** from other different places as: **headers**, **cookies**, **form fields** and **files**. +* How to set **validation constraints** as `maximum_length` or `regex`. +* A very powerful and easy to use **Dependency Injection** system. +* Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. +* More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). +* **GraphQL** integration with Strawberry and other libraries. +* Many extra features (thanks to Starlette) as: + * **WebSockets** + * extremely easy tests based on HTTPX and `pytest` + * **CORS** + * **Cookie Sessions** + * ...and more. + +## Performance + +Independent TechEmpower benchmarks show **FastAPI** applications running under Uvicorn as one of the fastest Python frameworks available, only below Starlette and Uvicorn themselves (used internally by FastAPI). (*) + +To understand more about it, see the section Benchmarks. + +## Dependencies + +FastAPI depends on Pydantic and Starlette. + +### `standard` Dependencies + +When you install FastAPI with `pip install "fastapi[standard]"` it comes the `standard` group of optional dependencies: + +Used by Pydantic: + +* email-validator - for email validation. + +Used by Starlette: + +* httpx - Required if you want to use the `TestClient`. +* jinja2 - Required if you want to use the default template configuration. +* python-multipart - Required if you want to support form "parsing", with `request.form()`. + +Used by FastAPI / Starlette: + +* uvicorn - for the server that loads and serves your application. This includes `uvicorn[standard]`, which includes some dependencies (e.g. `uvloop`) needed for high performance serving. +* `fastapi-cli` - to provide the `fastapi` command. + +### Without `standard` Dependencies + +If you don't want to include the `standard` optional dependencies, you can install with `pip install fastapi` instead of `pip install "fastapi[standard]"`. + +### Additional Optional Dependencies + +There are some additional dependencies you might want to install. + +Additional optional Pydantic dependencies: + +* pydantic-settings - for settings management. +* pydantic-extra-types - for extra types to be used with Pydantic. + +Additional optional FastAPI dependencies: + +* orjson - Required if you want to use `ORJSONResponse`. +* ujson - Required if you want to use `UJSONResponse`. + +## License + +This project is licensed under the terms of the MIT license. diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/RECORD b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/RECORD new file mode 100644 index 00000000..01e9e660 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/RECORD @@ -0,0 +1,97 @@ +../../Scripts/fastapi.exe,sha256=VKzAh4-TA6pc86gUG0uwGfV7DTGEm6IwgzN9AW789HM,107902 +fastapi-0.115.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +fastapi-0.115.0.dist-info/METADATA,sha256=ooXztPJg9fxh1kZsyXVFKVLEyPDuMUVqS0N7t6uRi94,27227 +fastapi-0.115.0.dist-info/RECORD,, +fastapi-0.115.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +fastapi-0.115.0.dist-info/WHEEL,sha256=rSwsxJWe3vzyR5HCwjWXQruDgschpei4h_giTm0dJVE,90 +fastapi-0.115.0.dist-info/entry_points.txt,sha256=Nn2-rs4A5_lQZko2b9QqCKQx9Irx0agGbxq3QLgjBxQ,46 +fastapi-0.115.0.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086 +fastapi/__init__.py,sha256=xZXaU_wxKQRFq4Cl6laXFZnFy_nuVDvmwxHB43HlgaE,1081 +fastapi/__main__.py,sha256=bKePXLdO4SsVSM6r9SVoLickJDcR2c0cTOxZRKq26YQ,37 +fastapi/__pycache__/__init__.cpython-310.pyc,, +fastapi/__pycache__/__main__.cpython-310.pyc,, +fastapi/__pycache__/_compat.cpython-310.pyc,, +fastapi/__pycache__/applications.cpython-310.pyc,, +fastapi/__pycache__/background.cpython-310.pyc,, +fastapi/__pycache__/cli.cpython-310.pyc,, +fastapi/__pycache__/concurrency.cpython-310.pyc,, +fastapi/__pycache__/datastructures.cpython-310.pyc,, +fastapi/__pycache__/encoders.cpython-310.pyc,, +fastapi/__pycache__/exception_handlers.cpython-310.pyc,, +fastapi/__pycache__/exceptions.cpython-310.pyc,, +fastapi/__pycache__/logger.cpython-310.pyc,, +fastapi/__pycache__/param_functions.cpython-310.pyc,, +fastapi/__pycache__/params.cpython-310.pyc,, +fastapi/__pycache__/requests.cpython-310.pyc,, +fastapi/__pycache__/responses.cpython-310.pyc,, +fastapi/__pycache__/routing.cpython-310.pyc,, +fastapi/__pycache__/staticfiles.cpython-310.pyc,, +fastapi/__pycache__/templating.cpython-310.pyc,, +fastapi/__pycache__/testclient.cpython-310.pyc,, +fastapi/__pycache__/types.cpython-310.pyc,, +fastapi/__pycache__/utils.cpython-310.pyc,, +fastapi/__pycache__/websockets.cpython-310.pyc,, +fastapi/_compat.py,sha256=N4y7exHYWpWytEwsDU31YHDXoJRvHxREx2qNS3bF85o,23876 +fastapi/applications.py,sha256=Ix-o9pQAWhEDf9J0Q1hZ0nBB1uP72c-Y3oiYzvrwqiM,176316 +fastapi/background.py,sha256=rouLirxUANrcYC824MSMypXL_Qb2HYg2YZqaiEqbEKI,1768 +fastapi/cli.py,sha256=OYhZb0NR_deuT5ofyPF2NoNBzZDNOP8Salef2nk-HqA,418 +fastapi/concurrency.py,sha256=AYLnS4judDUmXsNRICtoKSP0prfYDcS8ehBtYW9JhQQ,1403 +fastapi/datastructures.py,sha256=b2PEz77XGq-u3Ur1Inwk0AGjOsQZO49yF9C7IPJ15cY,5766 +fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +fastapi/dependencies/__pycache__/__init__.cpython-310.pyc,, +fastapi/dependencies/__pycache__/models.cpython-310.pyc,, +fastapi/dependencies/__pycache__/utils.cpython-310.pyc,, +fastapi/dependencies/models.py,sha256=Pjl6vx-4nZ5Tta9kJa3-RfQKkXtCpS09-FhMgs9eWNs,1507 +fastapi/dependencies/utils.py,sha256=EnZ_n4CEK3fTqylgr9m3skxmzvFUflleoT1ESCH865k,35172 +fastapi/encoders.py,sha256=LvwYmFeOz4tVwvgBoC5rvZnbr7hZr73KGrU8O7zSptU,11068 +fastapi/exception_handlers.py,sha256=MBrIOA-ugjJDivIi4rSsUJBdTsjuzN76q4yh0q1COKw,1332 +fastapi/exceptions.py,sha256=taNixuFEXb67lI1bnX1ubq8y8TseJ4yoPlWjyP0fTzk,4969 +fastapi/logger.py,sha256=I9NNi3ov8AcqbsbC9wl1X-hdItKgYt2XTrx1f99Zpl4,54 +fastapi/middleware/__init__.py,sha256=oQDxiFVcc1fYJUOIFvphnK7pTT5kktmfL32QXpBFvvo,58 +fastapi/middleware/__pycache__/__init__.cpython-310.pyc,, +fastapi/middleware/__pycache__/cors.cpython-310.pyc,, +fastapi/middleware/__pycache__/gzip.cpython-310.pyc,, +fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc,, +fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc,, +fastapi/middleware/__pycache__/wsgi.cpython-310.pyc,, +fastapi/middleware/cors.py,sha256=ynwjWQZoc_vbhzZ3_ZXceoaSrslHFHPdoM52rXr0WUU,79 +fastapi/middleware/gzip.py,sha256=xM5PcsH8QlAimZw4VDvcmTnqQamslThsfe3CVN2voa0,79 +fastapi/middleware/httpsredirect.py,sha256=rL8eXMnmLijwVkH7_400zHri1AekfeBd6D6qs8ix950,115 +fastapi/middleware/trustedhost.py,sha256=eE5XGRxGa7c5zPnMJDGp3BxaL25k5iVQlhnv-Pk0Pss,109 +fastapi/middleware/wsgi.py,sha256=Z3Ue-7wni4lUZMvH3G9ek__acgYdJstbnpZX_HQAboY,79 +fastapi/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +fastapi/openapi/__pycache__/__init__.cpython-310.pyc,, +fastapi/openapi/__pycache__/constants.cpython-310.pyc,, +fastapi/openapi/__pycache__/docs.cpython-310.pyc,, +fastapi/openapi/__pycache__/models.cpython-310.pyc,, +fastapi/openapi/__pycache__/utils.cpython-310.pyc,, +fastapi/openapi/constants.py,sha256=adGzmis1L1HJRTE3kJ5fmHS_Noq6tIY6pWv_SFzoFDU,153 +fastapi/openapi/docs.py,sha256=XcQq-ZbQdC5sI0gIGu5MoHK1q-OFaqws7-ORTo6sjY4,10348 +fastapi/openapi/models.py,sha256=PqkxQiqcEgjKuhfUIWPZPQcyTcubtUCB3vcObLsB7VE,15397 +fastapi/openapi/utils.py,sha256=vpbAzWpuNaJL_ocBxt4jp0GUUwrDKNB1anyoAx69fhA,23177 +fastapi/param_functions.py,sha256=uQzNlihlhM80u4Xbstz__D3L3yxpTqLmsC-Hra1WfqE,64018 +fastapi/params.py,sha256=XC025dCSObp7fXhOPYo-jwXQRGZ9CwlfNRq2cLh_dRk,28186 +fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +fastapi/requests.py,sha256=zayepKFcienBllv3snmWI20Gk0oHNVLU4DDhqXBb4LU,142 +fastapi/responses.py,sha256=QNQQlwpKhQoIPZTTWkpc9d_QGeGZ_aVQPaDV3nQ8m7c,1761 +fastapi/routing.py,sha256=LnYhRsafzHporfz4aDUmEk8qDU2tarLZNjHaKy3RB7w,176148 +fastapi/security/__init__.py,sha256=bO8pNmxqVRXUjfl2mOKiVZLn0FpBQ61VUYVjmppnbJw,881 +fastapi/security/__pycache__/__init__.cpython-310.pyc,, +fastapi/security/__pycache__/api_key.cpython-310.pyc,, +fastapi/security/__pycache__/base.cpython-310.pyc,, +fastapi/security/__pycache__/http.cpython-310.pyc,, +fastapi/security/__pycache__/oauth2.cpython-310.pyc,, +fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc,, +fastapi/security/__pycache__/utils.cpython-310.pyc,, +fastapi/security/api_key.py,sha256=_OqUUjEHG5_MT1IPAhXIGJRCPldTBdSww_DegFy_W8Y,9368 +fastapi/security/base.py,sha256=dl4pvbC-RxjfbWgPtCWd8MVU-7CB2SZ22rJDXVCXO6c,141 +fastapi/security/http.py,sha256=sXw3jvaMPxDmMaGlf5e2ES5TuGXDKXFOigntzUfSqIg,13506 +fastapi/security/oauth2.py,sha256=lWemX4CLAvanR6-jiQxFtOyHjHbzEnNbpytA_WXgZcw,21583 +fastapi/security/open_id_connect_url.py,sha256=8vizZ2tGqEp1ur8SwtVgyHJhGAJ5AqahgcvSpaIioDI,2722 +fastapi/security/utils.py,sha256=bd8T0YM7UQD5ATKucr1bNtAvz_Y3__dVNAv5UebiPvc,293 +fastapi/staticfiles.py,sha256=iirGIt3sdY2QZXd36ijs3Cj-T0FuGFda3cd90kM9Ikw,69 +fastapi/templating.py,sha256=4zsuTWgcjcEainMJFAlW6-gnslm6AgOS1SiiDWfmQxk,76 +fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66 +fastapi/types.py,sha256=nFb36sK3DSoqoyo7Miwy3meKK5UdFBgkAgLSzQlUVyI,383 +fastapi/utils.py,sha256=y8Bj5ttMaI9tS4D60OUgXqKnktBr99NdYUnHHV9LgoY,7948 +fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222 diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/REQUESTED b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/WHEEL b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/WHEEL new file mode 100644 index 00000000..06893bee --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: pdm-backend (2.3.3) +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/entry_points.txt b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/entry_points.txt new file mode 100644 index 00000000..e490e5fb --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +fastapi = fastapi.cli:main + diff --git a/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/licenses/LICENSE b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/licenses/LICENSE new file mode 100644 index 00000000..3e92463e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi-0.115.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2018 Sebastián Ramírez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/ocr/.venv/Lib/site-packages/fastapi/__init__.py b/ocr/.venv/Lib/site-packages/fastapi/__init__.py new file mode 100644 index 00000000..7dd74c28 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/__init__.py @@ -0,0 +1,25 @@ +"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" + +__version__ = "0.115.0" + +from starlette import status as status + +from .applications import FastAPI as FastAPI +from .background import BackgroundTasks as BackgroundTasks +from .datastructures import UploadFile as UploadFile +from .exceptions import HTTPException as HTTPException +from .exceptions import WebSocketException as WebSocketException +from .param_functions import Body as Body +from .param_functions import Cookie as Cookie +from .param_functions import Depends as Depends +from .param_functions import File as File +from .param_functions import Form as Form +from .param_functions import Header as Header +from .param_functions import Path as Path +from .param_functions import Query as Query +from .param_functions import Security as Security +from .requests import Request as Request +from .responses import Response as Response +from .routing import APIRouter as APIRouter +from .websockets import WebSocket as WebSocket +from .websockets import WebSocketDisconnect as WebSocketDisconnect diff --git a/ocr/.venv/Lib/site-packages/fastapi/__main__.py b/ocr/.venv/Lib/site-packages/fastapi/__main__.py new file mode 100644 index 00000000..fc36465f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/__main__.py @@ -0,0 +1,3 @@ +from fastapi.cli import main + +main() diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3257326b41350a84bbbfe6a7616a38a02e73c22 GIT binary patch literal 1067 zcmaiz$!^;)5Qb$(wk+>^mS)j4fa@lQ9$FMdvouJ6qD`{`gaCmSX-6?7sw9=vd62$C zU&+^=@(M){9WrToHQ*L%8Lk7jQQL3>xPv-|o4{SvHQWO3p`PJ3a3A#zci3XQgq93<*>b#s zRt)#pi+B~S8t${Tcpa@9UIgAi8^BAa*5>lv#Q~OT=lIAQ3mns1E~W$TDwW`S*RkO+&Npr?d{jYt$S#(wV9h2 zrNSzc_qhktd3-EH8oM~0P6W>qa)#wpf~$OdfG1U((Sj z52sW;_u9Lh%ph9a<9r(Fjm|zzX+m^H`!Sb&05$1Fhw#!==*TfvSMXo>no*(mmriMz ziAZU7PUyFcN~PT=RHi(UIo!3EZc*fk@}c*pFn$lZ1xq^QJdKqAwhs#Xo_G|K_Y!7Q5B~ti$bjHlmd>fH7}2zx+4mDO`Tu`?HADJOi(F`W)=O{ z9w{7fh>~8~NHGjG7-xx@i4?95>2E_+v{bd!wA8gUv^2G}K;|X!P`eauZMyI4ym%^pes literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8ec88a5c454db949bef87fce5b3a5d957c9bfe9 GIT binary patch literal 226 zcmd1j<>g`k0C^PEKk`yrXAKesWQaURi2hS&UC+QcQ7XNvdu^Vsdt3 pdTMbD)O`K;c#xIx@p=W7w>WHa^HWN5QtcRlHWjk~2_6P6CIEL+IG6wc literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f47740365becfc89ef9fd2b3e113583c1130a19 GIT binary patch literal 18414 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 ZHzfu#o7_#Qfu2oq;Ma{$pWV0F`rpnzac%$r literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/applications.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/applications.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75177d7e39f307e43a4b3e434d2b58514717ea61 GIT binary patch literal 68370 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/background.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/background.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc54ef2f5211da86f65fbcdbf6268e49745b6f5a GIT binary patch literal 2158 zcmcIlO^@3|7`7cJak9H@DGMqUhmk9xSlUhQ5sMmHs1{Yrs#{da1Ua*wan`%G$IMK+ z->0qA8%KUX#if7AS2(~GIB@{p89RyDii!)9crufDKc9Er$82q_YryD!e>?uUWf(uI zO?}v~xet$c3==VknHZ_*o2lhnrrKLcBengeUN@3f+V6Y!?#I$&+wdIz@p(|=d6o*Gs&Sn{Tip7!e8bxQ6 zWlUm8Nzr)7!lJW_IZpR-8W!ems0`JIQ*Fc-u%L!-62rHM={JZ)ZQ7(Q+K#Lb4C;`^ zm8n+5rme#cfs?~7X_0p1yfh+{IHdDp)n9pO*oMCfA$Pfg13zj2U9mh$6_9+S>LrM^iB;^PrPDRc#LD2yga7;68QqW8y$v_hnk{EXV zu0D7|F+nNg6ybd~lPHF7ro{B=*Pmk{N4wjIuu!0gakRt`X%N5Z9Y~pr;b0JfD9+=) zjBz$)3G0U}9mttvJjTgjnZu^eVc=B(+`ET9JHct5&@!OOWRjoC16IZzah9UWGK$lj zaajvNN3emaAWMCm=V)vGSI_H~{}LLZV;)NyK)vHA4zU8aM^hXpLnI{MKq(ahPwAHH zdPAMOD#dXu4-m^~)^ig!?aLGCf+Qm#cI=C{E~7OKFBIlM3`L6uEVu8pU(1 zbvZ=mmDfvm;Zi9tjrMiay~^4=o%@hwKW9Sr+yRu9Y}P#tD(kMNZDMhng-8LQB>z4C zWrYG=q2YC)Yp`6G?PEf;R_{%aH_B{k01K8}ZySXRrPNsxto+?!P+Htp)v{nx|?V)f$WDiG_Al-BG1EAKMa? zGSzsh*QT=sb2I^TCri7~CLl3c0KYuyzY$PjV?Gr{>*%=rE%V966h{9q zWz4Gp{N5C^obtk%Up>z*Y(bNVcK{)-UO#*Vrq^cC34$=eLIlBU7!U=*5r!)wPZV&*S%o4R;4T5iHIH^wBK>(~91iT6M zIJ_GSu3kV~ndk6Mt>vhF7i(3TAx#ocyRAg@bW5$?Rg=0!3LfFY#b#IS2ywhshK8pt!` z0n+7_woSz=q)Eo7i$ukYW~}-DJY$!ab0Erptm~f$@H-h#DI;TtB)ledmr0P=K#L=W za0+ILgX-PBKu9dvhyetsN!=KV&!yE+qSKYd|9|g zRTR^P{7q8~W(l9jG_vyYY_OH*i%z@eQu4CbWp$&+341r^yf(4xznhq-TXo>Q_4KiY zR)tVqs9)gI!v4J7+Y%pw@2ncu zRIglBUs0nVW?(mI^oG0jX*a2LNay0nF(b}#>Mxn^k#|_~(dw*hoXSY1anC8*EgiPb j`Z$F=MfpT6riAQGYvrU-+vygePl~}B_F0DP?+X715w41Q literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec89e357d81254eacfbe77174d24d967b4cdff5b GIT binary patch literal 1020 zcmZWoK~EGh6z=PEW@l!X1ymFg;>pXJ2zO$PWHm~HcmP2slT3!0g0swYCY>&@xEK`U z&8zV*_?LS1#9!dx`nqi58r$^s_4U2i*Y9h~nHis8^S|H9KG=l(GK=Zfz{OJ>^;Z-r zNg*c%1OP^-IW4TfDpkZVKK@$kK zQ}+^r7Kha1jJK9Z>T`>?QtN;&kpq@C)7BS;9y6)6O*%7ISPSWZz8%*CktC&1{8SaO zh!45!Sh~G#%rCg$GFGM3?e2}os~Zp9*cnuOH#bh!$B{YIaWN% zM5NwJ9;a1V=D0C0`{F<2qA~V`%JS$SleLPHvZ!*dxTevLrb(e4$yHy91WeVF#&B-p z=u(9C2P&VaLU1qP9L|~whNMR?VFN*aNp=a4Jt7`5qO8FhkaG&;?7m{k?m4{%db-LR zqW6%dWC$t!X5YkNE^BDjt3&!3_Q*TTbxuE`&-O$+ffMpK2U3Q8I^Ix(U|U;Prtl5~ zjeG);FCDZ<7lrnsh$H+minRCqG~t!XN}<_4BBt$F46;&ts+`~$xCSgkj&?EbG*cMH z6tdA_(!haFz!)b7X+RLmqn||H!@cXb-L>#d&1D_-db|{e;WJ(zsj>=RS6uAHIf5Ro zZ-iwc!FAtKdh0=N67FIzKuFOh-(#B*(yGnq%S2G$zY`#=;eQ((7znd;@R~B z6!gONDcprNP;g)l{1F>5n?ZZzUeIgDYr)(|E}>(mt^G;HJlmH@G0_g*G82c=!i6;K zOZ;s_&KqIS3>L65iC0j3WvV)9{@)mB=^4#@*6|r*NT$RhZfN&$QKtQzKQWBe%P3mp U4!E=hH{E5_GPTo@Pv?IB0U`AZt^fc4 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..820f2f06eaa73b172d3de76dbad643eeafc53da4 GIT binary patch literal 6519 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 QKlT0;{uahdg`k0T3QuE4Ud@_?_ wiZe@6bqf-cvlG)(i({ac>O)M|E2zB1VUwGmQks)$#|X5im<331Fz_(}04F&>I{*Lx literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09845da5afcf33dca8e0f63fd38dab1e268fe8cc GIT binary patch literal 23535 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/params.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/params.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9401233d931bb0a37a4d41f4decdd80623adb1f3 GIT binary patch literal 15236 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/requests.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/requests.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..416aa97e4692564b7a750efc91b75b79f5d74a1f GIT binary patch literal 265 zcmd1j<>g`k0XkaJ;o)qIJ+djAjZESH7`6d2WUvV zqi0Nha#4(4S!!Ncj8A4#OmSvOs%}AIa&}^RYH>_jBG9&iOnsP5dIgoYIBatBQ%ZAE Q?HGZU6oYKyVGv*h0D@~p-2eap literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/responses.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/responses.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..876332988ba6f157c4f6aca43b2a1d5c9f36d331 GIT binary patch literal 1942 zcmds2&u`l{6c+W%zvR?y)9$p57>1z+68kz7MbRuvwsff-*vX1$9t1^X5~Y%;kyJJt zJFUI;y7P9-|FXY8w_&H9d)Tl`_nsUV&d?ls9c4a!@A2W0{Pd9)?RL|E*8KTa{JU!y zf1tD6>fk(ru6_f<3`PR?$*!JxT+khS4sjvgs_1y})fNOrO!ZpBk zzh2=w;D+BI#>|DPjil)}pBh=qHh62gK@5CY!*3oM8To#Z&=>))*Vzl|NxeMwgVPzD{$6E3*jkA+Qa1h}#mYWUEBj~R_0>cfTFvB+) z@hxU@n_1jBwwcYG7q;&*7dBEW+Xu^QoBh?K&@e>h<$h?PU{0z}IX#U}PS5aV|%0#3nOhGpbrA0~?+okIid0nG(BGxFfzD5NUkm}oer&{Oge!qVVWx_n}={U?z zL?U{TNc$l>#|5)~RMlKxY_8w!Rg;&sNMxF4x^yMih0G!o7+f^ONbM$c^)VO?8ZL;c zKL%AlCqEHwoRJ?1Gnw_${KaJUuLQ_-2D7y}K`Bg1k2vfWmX;)(Au)yG^a}ags2rZD zLh>L~Q5?^lLLaYx+OvgQwA5cvK|CknDQVfn?aBYRwRhMAo#8blgp7>5WtrX z0*UOF&e2qJCGP^RHnL>yV5|k^J?O9CrZMV4Q9Pda;}y4Rq8?BuE=#PvaSuNB35=_ zM!z%M+YbiAK``DQ1z&9)j{Vyh8E=htHg6NrF z8;^r@(4aPD4GpeFHqhJvQ?_=}Tu8korI3KAx(CKHJkx{C UEgrM->co6)+89IBu~*yw0_xlVG5`Po literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/routing.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/routing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e883dc08e625efa2e3214973e719b8755eda52f7 GIT binary patch literal 57649 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..007d1c03ea8b512a728309c1e27d54fdaf997a0e GIT binary patch literal 235 zcmYjKy~+YH5KPWS4g?Wj;tJ1RMEq+6(LzO#g^zf*N;FZpo%L_-{Rv0|L5geNNHsmge!a-OS#7pmmt&cnJrRq=`vC}aYOOo6SU10u5@5g)-5 zATo#Yd(59g3MJ%F9S|fsf(yohd>_ALFhQNc7@5N4aTSclkI{;u@0p}mWLEseiplwm zdUm2WYL@x$rwQhTjnZX0NkAG98f@}_0>SfP zD}{D#W5T(ZJ%rEJ;DmF=jDm`-GrZarbuJW~iNVLMc04)N&B@na#7skC!2RX%oBG;< zvGvUj^m<({z}~uks4oW4pRo_%z8sy_ePinR9q7CIL%XbP>)_QOnp?33Td#z5VrXCQ h{%Jm7|K6%zZaO%`+d}LZk&}wPpj9-DD*Bwhqz^_jnL_{o literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/__pycache__/utils.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0da0c8e6755a2b1faf8b0cf8f8bc3b9a4ed28d0 GIT binary patch literal 5559 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 jlXF1vDk;?I%fG str: + a = self.field_info.alias + return a if a is not None else self.name + + @property + def required(self) -> bool: + return self.field_info.is_required() + + @property + def default(self) -> Any: + return self.get_default() + + @property + def type_(self) -> Any: + return self.field_info.annotation + + def __post_init__(self) -> None: + self._type_adapter: TypeAdapter[Any] = TypeAdapter( + Annotated[self.field_info.annotation, self.field_info] + ) + + def get_default(self) -> Any: + if self.field_info.is_required(): + return Undefined + return self.field_info.get_default(call_default_factory=True) + + def validate( + self, + value: Any, + values: Dict[str, Any] = {}, # noqa: B006 + *, + loc: Tuple[Union[int, str], ...] = (), + ) -> Tuple[Any, Union[List[Dict[str, Any]], None]]: + try: + return ( + self._type_adapter.validate_python(value, from_attributes=True), + None, + ) + except ValidationError as exc: + return None, _regenerate_error_with_loc( + errors=exc.errors(include_url=False), loc_prefix=loc + ) + + def serialize( + self, + value: Any, + *, + mode: Literal["json", "python"] = "json", + include: Union[IncEx, None] = None, + exclude: Union[IncEx, None] = None, + by_alias: bool = True, + exclude_unset: bool = False, + exclude_defaults: bool = False, + exclude_none: bool = False, + ) -> Any: + # What calls this code passes a value that already called + # self._type_adapter.validate_python(value) + return self._type_adapter.dump_python( + value, + mode=mode, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + + def __hash__(self) -> int: + # Each ModelField is unique for our purposes, to allow making a dict from + # ModelField to its JSON Schema. + return id(self) + + def get_annotation_from_field_info( + annotation: Any, field_info: FieldInfo, field_name: str + ) -> Any: + return annotation + + def _normalize_errors(errors: Sequence[Any]) -> List[Dict[str, Any]]: + return errors # type: ignore[return-value] + + def _model_rebuild(model: Type[BaseModel]) -> None: + model.model_rebuild() + + def _model_dump( + model: BaseModel, mode: Literal["json", "python"] = "json", **kwargs: Any + ) -> Any: + return model.model_dump(mode=mode, **kwargs) + + def _get_model_config(model: BaseModel) -> Any: + return model.model_config + + def get_schema_from_model_field( + *, + field: ModelField, + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + field_mapping: Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + separate_input_output_schemas: bool = True, + ) -> Dict[str, Any]: + override_mode: Union[Literal["validation"], None] = ( + None if separate_input_output_schemas else "validation" + ) + # This expects that GenerateJsonSchema was already used to generate the definitions + json_schema = field_mapping[(field, override_mode or field.mode)] + if "$ref" not in json_schema: + # TODO remove when deprecating Pydantic v1 + # Ref: https://github.com/pydantic/pydantic/blob/d61792cc42c80b13b23e3ffa74bc37ec7c77f7d1/pydantic/schema.py#L207 + json_schema["title"] = ( + field.field_info.title or field.alias.title().replace("_", " ") + ) + return json_schema + + def get_compat_model_name_map(fields: List[ModelField]) -> ModelNameMap: + return {} + + def get_definitions( + *, + fields: List[ModelField], + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + separate_input_output_schemas: bool = True, + ) -> Tuple[ + Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + Dict[str, Dict[str, Any]], + ]: + override_mode: Union[Literal["validation"], None] = ( + None if separate_input_output_schemas else "validation" + ) + inputs = [ + (field, override_mode or field.mode, field._type_adapter.core_schema) + for field in fields + ] + field_mapping, definitions = schema_generator.generate_definitions( + inputs=inputs + ) + return field_mapping, definitions # type: ignore[return-value] + + def is_scalar_field(field: ModelField) -> bool: + from fastapi import params + + return field_annotation_is_scalar( + field.field_info.annotation + ) and not isinstance(field.field_info, params.Body) + + def is_sequence_field(field: ModelField) -> bool: + return field_annotation_is_sequence(field.field_info.annotation) + + def is_scalar_sequence_field(field: ModelField) -> bool: + return field_annotation_is_scalar_sequence(field.field_info.annotation) + + def is_bytes_field(field: ModelField) -> bool: + return is_bytes_or_nonable_bytes_annotation(field.type_) + + def is_bytes_sequence_field(field: ModelField) -> bool: + return is_bytes_sequence_annotation(field.type_) + + def copy_field_info(*, field_info: FieldInfo, annotation: Any) -> FieldInfo: + cls = type(field_info) + merged_field_info = cls.from_annotation(annotation) + new_field_info = copy(field_info) + new_field_info.metadata = merged_field_info.metadata + new_field_info.annotation = merged_field_info.annotation + return new_field_info + + def serialize_sequence_value(*, field: ModelField, value: Any) -> Sequence[Any]: + origin_type = ( + get_origin(field.field_info.annotation) or field.field_info.annotation + ) + assert issubclass(origin_type, sequence_types) # type: ignore[arg-type] + return sequence_annotation_to_type[origin_type](value) # type: ignore[no-any-return] + + def get_missing_field_error(loc: Tuple[str, ...]) -> Dict[str, Any]: + error = ValidationError.from_exception_data( + "Field required", [{"type": "missing", "loc": loc, "input": {}}] + ).errors(include_url=False)[0] + error["input"] = None + return error # type: ignore[return-value] + + def create_body_model( + *, fields: Sequence[ModelField], model_name: str + ) -> Type[BaseModel]: + field_params = {f.name: (f.field_info.annotation, f.field_info) for f in fields} + BodyModel: Type[BaseModel] = create_model(model_name, **field_params) # type: ignore[call-overload] + return BodyModel + + def get_model_fields(model: Type[BaseModel]) -> List[ModelField]: + return [ + ModelField(field_info=field_info, name=name) + for name, field_info in model.model_fields.items() + ] + +else: + from fastapi.openapi.constants import REF_PREFIX as REF_PREFIX + from pydantic import AnyUrl as Url # noqa: F401 + from pydantic import ( # type: ignore[assignment] + BaseConfig as BaseConfig, # noqa: F401 + ) + from pydantic import ValidationError as ValidationError # noqa: F401 + from pydantic.class_validators import ( # type: ignore[no-redef] + Validator as Validator, # noqa: F401 + ) + from pydantic.error_wrappers import ( # type: ignore[no-redef] + ErrorWrapper as ErrorWrapper, # noqa: F401 + ) + from pydantic.errors import MissingError + from pydantic.fields import ( # type: ignore[attr-defined] + SHAPE_FROZENSET, + SHAPE_LIST, + SHAPE_SEQUENCE, + SHAPE_SET, + SHAPE_SINGLETON, + SHAPE_TUPLE, + SHAPE_TUPLE_ELLIPSIS, + ) + from pydantic.fields import FieldInfo as FieldInfo + from pydantic.fields import ( # type: ignore[no-redef,attr-defined] + ModelField as ModelField, # noqa: F401 + ) + from pydantic.fields import ( # type: ignore[no-redef,attr-defined] + Required as Required, # noqa: F401 + ) + from pydantic.fields import ( # type: ignore[no-redef,attr-defined] + Undefined as Undefined, + ) + from pydantic.fields import ( # type: ignore[no-redef, attr-defined] + UndefinedType as UndefinedType, # noqa: F401 + ) + from pydantic.schema import ( + field_schema, + get_flat_models_from_fields, + get_model_name_map, + model_process_schema, + ) + from pydantic.schema import ( # type: ignore[no-redef] # noqa: F401 + get_annotation_from_field_info as get_annotation_from_field_info, + ) + from pydantic.typing import ( # type: ignore[no-redef] + evaluate_forwardref as evaluate_forwardref, # noqa: F401 + ) + from pydantic.utils import ( # type: ignore[no-redef] + lenient_issubclass as lenient_issubclass, # noqa: F401 + ) + + GetJsonSchemaHandler = Any # type: ignore[assignment,misc] + JsonSchemaValue = Dict[str, Any] # type: ignore[misc] + CoreSchema = Any # type: ignore[assignment,misc] + + sequence_shapes = { + SHAPE_LIST, + SHAPE_SET, + SHAPE_FROZENSET, + SHAPE_TUPLE, + SHAPE_SEQUENCE, + SHAPE_TUPLE_ELLIPSIS, + } + sequence_shape_to_type = { + SHAPE_LIST: list, + SHAPE_SET: set, + SHAPE_TUPLE: tuple, + SHAPE_SEQUENCE: list, + SHAPE_TUPLE_ELLIPSIS: list, + } + + @dataclass + class GenerateJsonSchema: # type: ignore[no-redef] + ref_template: str + + class PydanticSchemaGenerationError(Exception): # type: ignore[no-redef] + pass + + def with_info_plain_validator_function( # type: ignore[misc] + function: Callable[..., Any], + *, + ref: Union[str, None] = None, + metadata: Any = None, + serialization: Any = None, + ) -> Any: + return {} + + def get_model_definitions( + *, + flat_models: Set[Union[Type[BaseModel], Type[Enum]]], + model_name_map: Dict[Union[Type[BaseModel], Type[Enum]], str], + ) -> Dict[str, Any]: + definitions: Dict[str, Dict[str, Any]] = {} + for model in flat_models: + m_schema, m_definitions, m_nested_models = model_process_schema( + model, model_name_map=model_name_map, ref_prefix=REF_PREFIX + ) + definitions.update(m_definitions) + model_name = model_name_map[model] + if "description" in m_schema: + m_schema["description"] = m_schema["description"].split("\f")[0] + definitions[model_name] = m_schema + return definitions + + def is_pv1_scalar_field(field: ModelField) -> bool: + from fastapi import params + + field_info = field.field_info + if not ( + field.shape == SHAPE_SINGLETON # type: ignore[attr-defined] + and not lenient_issubclass(field.type_, BaseModel) + and not lenient_issubclass(field.type_, dict) + and not field_annotation_is_sequence(field.type_) + and not is_dataclass(field.type_) + and not isinstance(field_info, params.Body) + ): + return False + if field.sub_fields: # type: ignore[attr-defined] + if not all( + is_pv1_scalar_field(f) + for f in field.sub_fields # type: ignore[attr-defined] + ): + return False + return True + + def is_pv1_scalar_sequence_field(field: ModelField) -> bool: + if (field.shape in sequence_shapes) and not lenient_issubclass( # type: ignore[attr-defined] + field.type_, BaseModel + ): + if field.sub_fields is not None: # type: ignore[attr-defined] + for sub_field in field.sub_fields: # type: ignore[attr-defined] + if not is_pv1_scalar_field(sub_field): + return False + return True + if _annotation_is_sequence(field.type_): + return True + return False + + def _normalize_errors(errors: Sequence[Any]) -> List[Dict[str, Any]]: + use_errors: List[Any] = [] + for error in errors: + if isinstance(error, ErrorWrapper): + new_errors = ValidationError( # type: ignore[call-arg] + errors=[error], model=RequestErrorModel + ).errors() + use_errors.extend(new_errors) + elif isinstance(error, list): + use_errors.extend(_normalize_errors(error)) + else: + use_errors.append(error) + return use_errors + + def _model_rebuild(model: Type[BaseModel]) -> None: + model.update_forward_refs() + + def _model_dump( + model: BaseModel, mode: Literal["json", "python"] = "json", **kwargs: Any + ) -> Any: + return model.dict(**kwargs) + + def _get_model_config(model: BaseModel) -> Any: + return model.__config__ # type: ignore[attr-defined] + + def get_schema_from_model_field( + *, + field: ModelField, + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + field_mapping: Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + separate_input_output_schemas: bool = True, + ) -> Dict[str, Any]: + # This expects that GenerateJsonSchema was already used to generate the definitions + return field_schema( # type: ignore[no-any-return] + field, model_name_map=model_name_map, ref_prefix=REF_PREFIX + )[0] + + def get_compat_model_name_map(fields: List[ModelField]) -> ModelNameMap: + models = get_flat_models_from_fields(fields, known_models=set()) + return get_model_name_map(models) # type: ignore[no-any-return] + + def get_definitions( + *, + fields: List[ModelField], + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + separate_input_output_schemas: bool = True, + ) -> Tuple[ + Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + Dict[str, Dict[str, Any]], + ]: + models = get_flat_models_from_fields(fields, known_models=set()) + return {}, get_model_definitions( + flat_models=models, model_name_map=model_name_map + ) + + def is_scalar_field(field: ModelField) -> bool: + return is_pv1_scalar_field(field) + + def is_sequence_field(field: ModelField) -> bool: + return field.shape in sequence_shapes or _annotation_is_sequence(field.type_) # type: ignore[attr-defined] + + def is_scalar_sequence_field(field: ModelField) -> bool: + return is_pv1_scalar_sequence_field(field) + + def is_bytes_field(field: ModelField) -> bool: + return lenient_issubclass(field.type_, bytes) + + def is_bytes_sequence_field(field: ModelField) -> bool: + return field.shape in sequence_shapes and lenient_issubclass(field.type_, bytes) # type: ignore[attr-defined] + + def copy_field_info(*, field_info: FieldInfo, annotation: Any) -> FieldInfo: + return copy(field_info) + + def serialize_sequence_value(*, field: ModelField, value: Any) -> Sequence[Any]: + return sequence_shape_to_type[field.shape](value) # type: ignore[no-any-return,attr-defined] + + def get_missing_field_error(loc: Tuple[str, ...]) -> Dict[str, Any]: + missing_field_error = ErrorWrapper(MissingError(), loc=loc) # type: ignore[call-arg] + new_error = ValidationError([missing_field_error], RequestErrorModel) + return new_error.errors()[0] # type: ignore[return-value] + + def create_body_model( + *, fields: Sequence[ModelField], model_name: str + ) -> Type[BaseModel]: + BodyModel = create_model(model_name) + for f in fields: + BodyModel.__fields__[f.name] = f # type: ignore[index] + return BodyModel + + def get_model_fields(model: Type[BaseModel]) -> List[ModelField]: + return list(model.__fields__.values()) # type: ignore[attr-defined] + + +def _regenerate_error_with_loc( + *, errors: Sequence[Any], loc_prefix: Tuple[Union[str, int], ...] +) -> List[Dict[str, Any]]: + updated_loc_errors: List[Any] = [ + {**err, "loc": loc_prefix + err.get("loc", ())} + for err in _normalize_errors(errors) + ] + + return updated_loc_errors + + +def _annotation_is_sequence(annotation: Union[Type[Any], None]) -> bool: + if lenient_issubclass(annotation, (str, bytes)): + return False + return lenient_issubclass(annotation, sequence_types) + + +def field_annotation_is_sequence(annotation: Union[Type[Any], None]) -> bool: + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + for arg in get_args(annotation): + if field_annotation_is_sequence(arg): + return True + return False + return _annotation_is_sequence(annotation) or _annotation_is_sequence( + get_origin(annotation) + ) + + +def value_is_sequence(value: Any) -> bool: + return isinstance(value, sequence_types) and not isinstance(value, (str, bytes)) # type: ignore[arg-type] + + +def _annotation_is_complex(annotation: Union[Type[Any], None]) -> bool: + return ( + lenient_issubclass(annotation, (BaseModel, Mapping, UploadFile)) + or _annotation_is_sequence(annotation) + or is_dataclass(annotation) + ) + + +def field_annotation_is_complex(annotation: Union[Type[Any], None]) -> bool: + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + return any(field_annotation_is_complex(arg) for arg in get_args(annotation)) + + return ( + _annotation_is_complex(annotation) + or _annotation_is_complex(origin) + or hasattr(origin, "__pydantic_core_schema__") + or hasattr(origin, "__get_pydantic_core_schema__") + ) + + +def field_annotation_is_scalar(annotation: Any) -> bool: + # handle Ellipsis here to make tuple[int, ...] work nicely + return annotation is Ellipsis or not field_annotation_is_complex(annotation) + + +def field_annotation_is_scalar_sequence(annotation: Union[Type[Any], None]) -> bool: + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + at_least_one_scalar_sequence = False + for arg in get_args(annotation): + if field_annotation_is_scalar_sequence(arg): + at_least_one_scalar_sequence = True + continue + elif not field_annotation_is_scalar(arg): + return False + return at_least_one_scalar_sequence + return field_annotation_is_sequence(annotation) and all( + field_annotation_is_scalar(sub_annotation) + for sub_annotation in get_args(annotation) + ) + + +def is_bytes_or_nonable_bytes_annotation(annotation: Any) -> bool: + if lenient_issubclass(annotation, bytes): + return True + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + for arg in get_args(annotation): + if lenient_issubclass(arg, bytes): + return True + return False + + +def is_uploadfile_or_nonable_uploadfile_annotation(annotation: Any) -> bool: + if lenient_issubclass(annotation, UploadFile): + return True + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + for arg in get_args(annotation): + if lenient_issubclass(arg, UploadFile): + return True + return False + + +def is_bytes_sequence_annotation(annotation: Any) -> bool: + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + at_least_one = False + for arg in get_args(annotation): + if is_bytes_sequence_annotation(arg): + at_least_one = True + continue + return at_least_one + return field_annotation_is_sequence(annotation) and all( + is_bytes_or_nonable_bytes_annotation(sub_annotation) + for sub_annotation in get_args(annotation) + ) + + +def is_uploadfile_sequence_annotation(annotation: Any) -> bool: + origin = get_origin(annotation) + if origin is Union or origin is UnionType: + at_least_one = False + for arg in get_args(annotation): + if is_uploadfile_sequence_annotation(arg): + at_least_one = True + continue + return at_least_one + return field_annotation_is_sequence(annotation) and all( + is_uploadfile_or_nonable_uploadfile_annotation(sub_annotation) + for sub_annotation in get_args(annotation) + ) + + +@lru_cache +def get_cached_model_fields(model: Type[BaseModel]) -> List[ModelField]: + return get_model_fields(model) diff --git a/ocr/.venv/Lib/site-packages/fastapi/applications.py b/ocr/.venv/Lib/site-packages/fastapi/applications.py new file mode 100644 index 00000000..6d427cdc --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/applications.py @@ -0,0 +1,4585 @@ +from enum import Enum +from typing import ( + Any, + Awaitable, + Callable, + Coroutine, + Dict, + List, + Optional, + Sequence, + Type, + TypeVar, + Union, +) + +from fastapi import routing +from fastapi.datastructures import Default, DefaultPlaceholder +from fastapi.exception_handlers import ( + http_exception_handler, + request_validation_exception_handler, + websocket_request_validation_exception_handler, +) +from fastapi.exceptions import RequestValidationError, WebSocketRequestValidationError +from fastapi.logger import logger +from fastapi.openapi.docs import ( + get_redoc_html, + get_swagger_ui_html, + get_swagger_ui_oauth2_redirect_html, +) +from fastapi.openapi.utils import get_openapi +from fastapi.params import Depends +from fastapi.types import DecoratedCallable, IncEx +from fastapi.utils import generate_unique_id +from starlette.applications import Starlette +from starlette.datastructures import State +from starlette.exceptions import HTTPException +from starlette.middleware import Middleware +from starlette.middleware.base import BaseHTTPMiddleware +from starlette.requests import Request +from starlette.responses import HTMLResponse, JSONResponse, Response +from starlette.routing import BaseRoute +from starlette.types import ASGIApp, Lifespan, Receive, Scope, Send +from typing_extensions import Annotated, Doc, deprecated + +AppType = TypeVar("AppType", bound="FastAPI") + + +class FastAPI(Starlette): + """ + `FastAPI` app class, the main entrypoint to use FastAPI. + + Read more in the + [FastAPI docs for First Steps](https://fastapi.tiangolo.com/tutorial/first-steps/). + + ## Example + + ```python + from fastapi import FastAPI + + app = FastAPI() + ``` + """ + + def __init__( + self: AppType, + *, + debug: Annotated[ + bool, + Doc( + """ + Boolean indicating if debug tracebacks should be returned on server + errors. + + Read more in the + [Starlette docs for Applications](https://www.starlette.io/applications/#instantiating-the-application). + """ + ), + ] = False, + routes: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + **Note**: you probably shouldn't use this parameter, it is inherited + from Starlette and supported for compatibility. + + --- + + A list of routes to serve incoming HTTP and WebSocket requests. + """ + ), + deprecated( + """ + You normally wouldn't use this parameter with FastAPI, it is inherited + from Starlette and supported for compatibility. + + In FastAPI, you normally would use the *path operation methods*, + like `app.get()`, `app.post()`, etc. + """ + ), + ] = None, + title: Annotated[ + str, + Doc( + """ + The title of the API. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(title="ChimichangApp") + ``` + """ + ), + ] = "FastAPI", + summary: Annotated[ + Optional[str], + Doc( + """ + A short summary of the API. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(summary="Deadpond's favorite app. Nuff said.") + ``` + """ + ), + ] = None, + description: Annotated[ + str, + Doc( + ''' + A description of the API. Supports Markdown (using + [CommonMark syntax](https://commonmark.org/)). + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI( + description=""" + ChimichangApp API helps you do awesome stuff. 🚀 + + ## Items + + You can **read items**. + + ## Users + + You will be able to: + + * **Create users** (_not implemented_). + * **Read users** (_not implemented_). + + """ + ) + ``` + ''' + ), + ] = "", + version: Annotated[ + str, + Doc( + """ + The version of the API. + + **Note** This is the version of your application, not the version of + the OpenAPI specification nor the version of FastAPI being used. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(version="0.0.1") + ``` + """ + ), + ] = "0.1.0", + openapi_url: Annotated[ + Optional[str], + Doc( + """ + The URL where the OpenAPI schema will be served from. + + If you set it to `None`, no OpenAPI schema will be served publicly, and + the default automatic endpoints `/docs` and `/redoc` will also be + disabled. + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#openapi-url). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(openapi_url="/api/v1/openapi.json") + ``` + """ + ), + ] = "/openapi.json", + openapi_tags: Annotated[ + Optional[List[Dict[str, Any]]], + Doc( + """ + A list of tags used by OpenAPI, these are the same `tags` you can set + in the *path operations*, like: + + * `@app.get("/users/", tags=["users"])` + * `@app.get("/items/", tags=["items"])` + + The order of the tags can be used to specify the order shown in + tools like Swagger UI, used in the automatic path `/docs`. + + It's not required to specify all the tags used. + + The tags that are not declared MAY be organized randomly or based + on the tools' logic. Each tag name in the list MUST be unique. + + The value of each item is a `dict` containing: + + * `name`: The name of the tag. + * `description`: A short description of the tag. + [CommonMark syntax](https://commonmark.org/) MAY be used for rich + text representation. + * `externalDocs`: Additional external documentation for this tag. If + provided, it would contain a `dict` with: + * `description`: A short description of the target documentation. + [CommonMark syntax](https://commonmark.org/) MAY be used for + rich text representation. + * `url`: The URL for the target documentation. Value MUST be in + the form of a URL. + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-tags). + + **Example** + + ```python + from fastapi import FastAPI + + tags_metadata = [ + { + "name": "users", + "description": "Operations with users. The **login** logic is also here.", + }, + { + "name": "items", + "description": "Manage items. So _fancy_ they have their own docs.", + "externalDocs": { + "description": "Items external docs", + "url": "https://fastapi.tiangolo.com/", + }, + }, + ] + + app = FastAPI(openapi_tags=tags_metadata) + ``` + """ + ), + ] = None, + servers: Annotated[ + Optional[List[Dict[str, Union[str, Any]]]], + Doc( + """ + A `list` of `dict`s with connectivity information to a target server. + + You would use it, for example, if your application is served from + different domains and you want to use the same Swagger UI in the + browser to interact with each of them (instead of having multiple + browser tabs open). Or if you want to leave fixed the possible URLs. + + If the servers `list` is not provided, or is an empty `list`, the + default value would be a `dict` with a `url` value of `/`. + + Each item in the `list` is a `dict` containing: + + * `url`: A URL to the target host. This URL supports Server Variables + and MAY be relative, to indicate that the host location is relative + to the location where the OpenAPI document is being served. Variable + substitutions will be made when a variable is named in `{`brackets`}`. + * `description`: An optional string describing the host designated by + the URL. [CommonMark syntax](https://commonmark.org/) MAY be used for + rich text representation. + * `variables`: A `dict` between a variable name and its value. The value + is used for substitution in the server's URL template. + + Read more in the + [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/#additional-servers). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI( + servers=[ + {"url": "https://stag.example.com", "description": "Staging environment"}, + {"url": "https://prod.example.com", "description": "Production environment"}, + ] + ) + ``` + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of global dependencies, they will be applied to each + *path operation*, including in sub-routers. + + Read more about it in the + [FastAPI docs for Global Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/global-dependencies/). + + **Example** + + ```python + from fastapi import Depends, FastAPI + + from .dependencies import func_dep_1, func_dep_2 + + app = FastAPI(dependencies=[Depends(func_dep_1), Depends(func_dep_2)]) + ``` + """ + ), + ] = None, + default_response_class: Annotated[ + Type[Response], + Doc( + """ + The default response class to be used. + + Read more in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). + + **Example** + + ```python + from fastapi import FastAPI + from fastapi.responses import ORJSONResponse + + app = FastAPI(default_response_class=ORJSONResponse) + ``` + """ + ), + ] = Default(JSONResponse), + redirect_slashes: Annotated[ + bool, + Doc( + """ + Whether to detect and redirect slashes in URLs when the client doesn't + use the same format. + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(redirect_slashes=True) # the default + + @app.get("/items/") + async def read_items(): + return [{"item_id": "Foo"}] + ``` + + With this app, if a client goes to `/items` (without a trailing slash), + they will be automatically redirected with an HTTP status code of 307 + to `/items/`. + """ + ), + ] = True, + docs_url: Annotated[ + Optional[str], + Doc( + """ + The path to the automatic interactive API documentation. + It is handled in the browser by Swagger UI. + + The default URL is `/docs`. You can disable it by setting it to `None`. + + If `openapi_url` is set to `None`, this will be automatically disabled. + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(docs_url="/documentation", redoc_url=None) + ``` + """ + ), + ] = "/docs", + redoc_url: Annotated[ + Optional[str], + Doc( + """ + The path to the alternative automatic interactive API documentation + provided by ReDoc. + + The default URL is `/redoc`. You can disable it by setting it to `None`. + + If `openapi_url` is set to `None`, this will be automatically disabled. + + Read more in the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(docs_url="/documentation", redoc_url="redocumentation") + ``` + """ + ), + ] = "/redoc", + swagger_ui_oauth2_redirect_url: Annotated[ + Optional[str], + Doc( + """ + The OAuth2 redirect endpoint for the Swagger UI. + + By default it is `/docs/oauth2-redirect`. + + This is only used if you use OAuth2 (with the "Authorize" button) + with Swagger UI. + """ + ), + ] = "/docs/oauth2-redirect", + swagger_ui_init_oauth: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + OAuth2 configuration for the Swagger UI, by default shown at `/docs`. + + Read more about the available configuration options in the + [Swagger UI docs](https://swagger.io/docs/open-source-tools/swagger-ui/usage/oauth2/). + """ + ), + ] = None, + middleware: Annotated[ + Optional[Sequence[Middleware]], + Doc( + """ + List of middleware to be added when creating the application. + + In FastAPI you would normally do this with `app.add_middleware()` + instead. + + Read more in the + [FastAPI docs for Middleware](https://fastapi.tiangolo.com/tutorial/middleware/). + """ + ), + ] = None, + exception_handlers: Annotated[ + Optional[ + Dict[ + Union[int, Type[Exception]], + Callable[[Request, Any], Coroutine[Any, Any, Response]], + ] + ], + Doc( + """ + A dictionary with handlers for exceptions. + + In FastAPI, you would normally use the decorator + `@app.exception_handler()`. + + Read more in the + [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). + """ + ), + ] = None, + on_startup: Annotated[ + Optional[Sequence[Callable[[], Any]]], + Doc( + """ + A list of startup event handler functions. + + You should instead use the `lifespan` handlers. + + Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + on_shutdown: Annotated[ + Optional[Sequence[Callable[[], Any]]], + Doc( + """ + A list of shutdown event handler functions. + + You should instead use the `lifespan` handlers. + + Read more in the + [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + lifespan: Annotated[ + Optional[Lifespan[AppType]], + Doc( + """ + A `Lifespan` context manager handler. This replaces `startup` and + `shutdown` functions with a single context manager. + + Read more in the + [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + terms_of_service: Annotated[ + Optional[str], + Doc( + """ + A URL to the Terms of Service for your API. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more at the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + app = FastAPI(terms_of_service="http://example.com/terms/") + ``` + """ + ), + ] = None, + contact: Annotated[ + Optional[Dict[str, Union[str, Any]]], + Doc( + """ + A dictionary with the contact information for the exposed API. + + It can contain several fields. + + * `name`: (`str`) The name of the contact person/organization. + * `url`: (`str`) A URL pointing to the contact information. MUST be in + the format of a URL. + * `email`: (`str`) The email address of the contact person/organization. + MUST be in the format of an email address. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more at the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + app = FastAPI( + contact={ + "name": "Deadpoolio the Amazing", + "url": "http://x-force.example.com/contact/", + "email": "dp@x-force.example.com", + } + ) + ``` + """ + ), + ] = None, + license_info: Annotated[ + Optional[Dict[str, Union[str, Any]]], + Doc( + """ + A dictionary with the license information for the exposed API. + + It can contain several fields. + + * `name`: (`str`) **REQUIRED** (if a `license_info` is set). The + license name used for the API. + * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression + for the API. The `identifier` field is mutually exclusive of the `url` + field. Available since OpenAPI 3.1.0, FastAPI 0.99.0. + * `url`: (`str`) A URL to the license used for the API. This MUST be + the format of a URL. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more at the + [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). + + **Example** + + ```python + app = FastAPI( + license_info={ + "name": "Apache 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.html", + } + ) + ``` + """ + ), + ] = None, + openapi_prefix: Annotated[ + str, + Doc( + """ + A URL prefix for the OpenAPI URL. + """ + ), + deprecated( + """ + "openapi_prefix" has been deprecated in favor of "root_path", which + follows more closely the ASGI standard, is simpler, and more + automatic. + """ + ), + ] = "", + root_path: Annotated[ + str, + Doc( + """ + A path prefix handled by a proxy that is not seen by the application + but is seen by external clients, which affects things like Swagger UI. + + Read more about it at the + [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(root_path="/api/v1") + ``` + """ + ), + ] = "", + root_path_in_servers: Annotated[ + bool, + Doc( + """ + To disable automatically generating the URLs in the `servers` field + in the autogenerated OpenAPI using the `root_path`. + + Read more about it in the + [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/#disable-automatic-server-from-root_path). + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI(root_path_in_servers=False) + ``` + """ + ), + ] = True, + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses to be shown in OpenAPI. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). + + And in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + OpenAPI callbacks that should apply to all *path operations*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + webhooks: Annotated[ + Optional[routing.APIRouter], + Doc( + """ + Add OpenAPI webhooks. This is similar to `callbacks` but it doesn't + depend on specific *path operations*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + **Note**: This is available since OpenAPI 3.1.0, FastAPI 0.99.0. + + Read more about it in the + [FastAPI docs for OpenAPI Webhooks](https://fastapi.tiangolo.com/advanced/openapi-webhooks/). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark all *path operations* as deprecated. You probably don't need it, + but it's available. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) all the *path operations* in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + swagger_ui_parameters: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Parameters to configure Swagger UI, the autogenerated interactive API + documentation (by default at `/docs`). + + Read more about it in the + [FastAPI docs about how to Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + separate_input_output_schemas: Annotated[ + bool, + Doc( + """ + Whether to generate separate OpenAPI schemas for request body and + response body when the results would be more precise. + + This is particularly useful when automatically generating clients. + + For example, if you have a model like: + + ```python + from pydantic import BaseModel + + class Item(BaseModel): + name: str + tags: list[str] = [] + ``` + + When `Item` is used for input, a request body, `tags` is not required, + the client doesn't have to provide it. + + But when using `Item` for output, for a response body, `tags` is always + available because it has a default value, even if it's just an empty + list. So, the client should be able to always expect it. + + In this case, there would be two different schemas, one for input and + another one for output. + """ + ), + ] = True, + **extra: Annotated[ + Any, + Doc( + """ + Extra keyword arguments to be stored in the app, not used by FastAPI + anywhere. + """ + ), + ], + ) -> None: + self.debug = debug + self.title = title + self.summary = summary + self.description = description + self.version = version + self.terms_of_service = terms_of_service + self.contact = contact + self.license_info = license_info + self.openapi_url = openapi_url + self.openapi_tags = openapi_tags + self.root_path_in_servers = root_path_in_servers + self.docs_url = docs_url + self.redoc_url = redoc_url + self.swagger_ui_oauth2_redirect_url = swagger_ui_oauth2_redirect_url + self.swagger_ui_init_oauth = swagger_ui_init_oauth + self.swagger_ui_parameters = swagger_ui_parameters + self.servers = servers or [] + self.separate_input_output_schemas = separate_input_output_schemas + self.extra = extra + self.openapi_version: Annotated[ + str, + Doc( + """ + The version string of OpenAPI. + + FastAPI will generate OpenAPI version 3.1.0, and will output that as + the OpenAPI version. But some tools, even though they might be + compatible with OpenAPI 3.1.0, might not recognize it as a valid. + + So you could override this value to trick those tools into using + the generated OpenAPI. Have in mind that this is a hack. But if you + avoid using features added in OpenAPI 3.1.0, it might work for your + use case. + + This is not passed as a parameter to the `FastAPI` class to avoid + giving the false idea that FastAPI would generate a different OpenAPI + schema. It is only available as an attribute. + + **Example** + + ```python + from fastapi import FastAPI + + app = FastAPI() + + app.openapi_version = "3.0.2" + ``` + """ + ), + ] = "3.1.0" + self.openapi_schema: Optional[Dict[str, Any]] = None + if self.openapi_url: + assert self.title, "A title must be provided for OpenAPI, e.g.: 'My API'" + assert self.version, "A version must be provided for OpenAPI, e.g.: '2.1.0'" + # TODO: remove when discarding the openapi_prefix parameter + if openapi_prefix: + logger.warning( + '"openapi_prefix" has been deprecated in favor of "root_path", which ' + "follows more closely the ASGI standard, is simpler, and more " + "automatic. Check the docs at " + "https://fastapi.tiangolo.com/advanced/sub-applications/" + ) + self.webhooks: Annotated[ + routing.APIRouter, + Doc( + """ + The `app.webhooks` attribute is an `APIRouter` with the *path + operations* that will be used just for documentation of webhooks. + + Read more about it in the + [FastAPI docs for OpenAPI Webhooks](https://fastapi.tiangolo.com/advanced/openapi-webhooks/). + """ + ), + ] = webhooks or routing.APIRouter() + self.root_path = root_path or openapi_prefix + self.state: Annotated[ + State, + Doc( + """ + A state object for the application. This is the same object for the + entire application, it doesn't change from request to request. + + You normally wouldn't use this in FastAPI, for most of the cases you + would instead use FastAPI dependencies. + + This is simply inherited from Starlette. + + Read more about it in the + [Starlette docs for Applications](https://www.starlette.io/applications/#storing-state-on-the-app-instance). + """ + ), + ] = State() + self.dependency_overrides: Annotated[ + Dict[Callable[..., Any], Callable[..., Any]], + Doc( + """ + A dictionary with overrides for the dependencies. + + Each key is the original dependency callable, and the value is the + actual dependency that should be called. + + This is for testing, to replace expensive dependencies with testing + versions. + + Read more about it in the + [FastAPI docs for Testing Dependencies with Overrides](https://fastapi.tiangolo.com/advanced/testing-dependencies/). + """ + ), + ] = {} + self.router: routing.APIRouter = routing.APIRouter( + routes=routes, + redirect_slashes=redirect_slashes, + dependency_overrides_provider=self, + on_startup=on_startup, + on_shutdown=on_shutdown, + lifespan=lifespan, + default_response_class=default_response_class, + dependencies=dependencies, + callbacks=callbacks, + deprecated=deprecated, + include_in_schema=include_in_schema, + responses=responses, + generate_unique_id_function=generate_unique_id_function, + ) + self.exception_handlers: Dict[ + Any, Callable[[Request, Any], Union[Response, Awaitable[Response]]] + ] = {} if exception_handlers is None else dict(exception_handlers) + self.exception_handlers.setdefault(HTTPException, http_exception_handler) + self.exception_handlers.setdefault( + RequestValidationError, request_validation_exception_handler + ) + self.exception_handlers.setdefault( + WebSocketRequestValidationError, + # Starlette still has incorrect type specification for the handlers + websocket_request_validation_exception_handler, # type: ignore + ) + + self.user_middleware: List[Middleware] = ( + [] if middleware is None else list(middleware) + ) + self.middleware_stack: Union[ASGIApp, None] = None + self.setup() + + def openapi(self) -> Dict[str, Any]: + """ + Generate the OpenAPI schema of the application. This is called by FastAPI + internally. + + The first time it is called it stores the result in the attribute + `app.openapi_schema`, and next times it is called, it just returns that same + result. To avoid the cost of generating the schema every time. + + If you need to modify the generated OpenAPI schema, you could modify it. + + Read more in the + [FastAPI docs for OpenAPI](https://fastapi.tiangolo.com/how-to/extending-openapi/). + """ + if not self.openapi_schema: + self.openapi_schema = get_openapi( + title=self.title, + version=self.version, + openapi_version=self.openapi_version, + summary=self.summary, + description=self.description, + terms_of_service=self.terms_of_service, + contact=self.contact, + license_info=self.license_info, + routes=self.routes, + webhooks=self.webhooks.routes, + tags=self.openapi_tags, + servers=self.servers, + separate_input_output_schemas=self.separate_input_output_schemas, + ) + return self.openapi_schema + + def setup(self) -> None: + if self.openapi_url: + urls = (server_data.get("url") for server_data in self.servers) + server_urls = {url for url in urls if url} + + async def openapi(req: Request) -> JSONResponse: + root_path = req.scope.get("root_path", "").rstrip("/") + if root_path not in server_urls: + if root_path and self.root_path_in_servers: + self.servers.insert(0, {"url": root_path}) + server_urls.add(root_path) + return JSONResponse(self.openapi()) + + self.add_route(self.openapi_url, openapi, include_in_schema=False) + if self.openapi_url and self.docs_url: + + async def swagger_ui_html(req: Request) -> HTMLResponse: + root_path = req.scope.get("root_path", "").rstrip("/") + openapi_url = root_path + self.openapi_url + oauth2_redirect_url = self.swagger_ui_oauth2_redirect_url + if oauth2_redirect_url: + oauth2_redirect_url = root_path + oauth2_redirect_url + return get_swagger_ui_html( + openapi_url=openapi_url, + title=f"{self.title} - Swagger UI", + oauth2_redirect_url=oauth2_redirect_url, + init_oauth=self.swagger_ui_init_oauth, + swagger_ui_parameters=self.swagger_ui_parameters, + ) + + self.add_route(self.docs_url, swagger_ui_html, include_in_schema=False) + + if self.swagger_ui_oauth2_redirect_url: + + async def swagger_ui_redirect(req: Request) -> HTMLResponse: + return get_swagger_ui_oauth2_redirect_html() + + self.add_route( + self.swagger_ui_oauth2_redirect_url, + swagger_ui_redirect, + include_in_schema=False, + ) + if self.openapi_url and self.redoc_url: + + async def redoc_html(req: Request) -> HTMLResponse: + root_path = req.scope.get("root_path", "").rstrip("/") + openapi_url = root_path + self.openapi_url + return get_redoc_html( + openapi_url=openapi_url, title=f"{self.title} - ReDoc" + ) + + self.add_route(self.redoc_url, redoc_html, include_in_schema=False) + + async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: + if self.root_path: + scope["root_path"] = self.root_path + await super().__call__(scope, receive, send) + + def add_api_route( + self, + path: str, + endpoint: Callable[..., Any], + *, + response_model: Any = Default(None), + status_code: Optional[int] = None, + tags: Optional[List[Union[str, Enum]]] = None, + dependencies: Optional[Sequence[Depends]] = None, + summary: Optional[str] = None, + description: Optional[str] = None, + response_description: str = "Successful Response", + responses: Optional[Dict[Union[int, str], Dict[str, Any]]] = None, + deprecated: Optional[bool] = None, + methods: Optional[List[str]] = None, + operation_id: Optional[str] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + include_in_schema: bool = True, + response_class: Union[Type[Response], DefaultPlaceholder] = Default( + JSONResponse + ), + name: Optional[str] = None, + openapi_extra: Optional[Dict[str, Any]] = None, + generate_unique_id_function: Callable[[routing.APIRoute], str] = Default( + generate_unique_id + ), + ) -> None: + self.router.add_api_route( + path, + endpoint=endpoint, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=methods, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def api_route( + self, + path: str, + *, + response_model: Any = Default(None), + status_code: Optional[int] = None, + tags: Optional[List[Union[str, Enum]]] = None, + dependencies: Optional[Sequence[Depends]] = None, + summary: Optional[str] = None, + description: Optional[str] = None, + response_description: str = "Successful Response", + responses: Optional[Dict[Union[int, str], Dict[str, Any]]] = None, + deprecated: Optional[bool] = None, + methods: Optional[List[str]] = None, + operation_id: Optional[str] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + include_in_schema: bool = True, + response_class: Type[Response] = Default(JSONResponse), + name: Optional[str] = None, + openapi_extra: Optional[Dict[str, Any]] = None, + generate_unique_id_function: Callable[[routing.APIRoute], str] = Default( + generate_unique_id + ), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.router.add_api_route( + path, + func, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=methods, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + return func + + return decorator + + def add_api_websocket_route( + self, + path: str, + endpoint: Callable[..., Any], + name: Optional[str] = None, + *, + dependencies: Optional[Sequence[Depends]] = None, + ) -> None: + self.router.add_api_websocket_route( + path, + endpoint, + name=name, + dependencies=dependencies, + ) + + def websocket( + self, + path: Annotated[ + str, + Doc( + """ + WebSocket path. + """ + ), + ], + name: Annotated[ + Optional[str], + Doc( + """ + A name for the WebSocket. Only used internally. + """ + ), + ] = None, + *, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be used for this + WebSocket. + + Read more about it in the + [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). + """ + ), + ] = None, + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Decorate a WebSocket function. + + Read more about it in the + [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). + + **Example** + + ```python + from fastapi import FastAPI, WebSocket + + app = FastAPI() + + @app.websocket("/ws") + async def websocket_endpoint(websocket: WebSocket): + await websocket.accept() + while True: + data = await websocket.receive_text() + await websocket.send_text(f"Message text was: {data}") + ``` + """ + + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_api_websocket_route( + path, + func, + name=name, + dependencies=dependencies, + ) + return func + + return decorator + + def include_router( + self, + router: Annotated[routing.APIRouter, Doc("The `APIRouter` to include.")], + *, + prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to all the *path operations* in this + router. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to all the + *path operations* in this router. + + Read more about it in the + [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + + **Example** + + ```python + from fastapi import Depends, FastAPI + + from .dependencies import get_token_header + from .internal import admin + + app = FastAPI() + + app.include_router( + admin.router, + dependencies=[Depends(get_token_header)], + ) + ``` + """ + ), + ] = None, + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses to be shown in OpenAPI. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). + + And in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark all the *path operations* in this router as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + **Example** + + ```python + from fastapi import FastAPI + + from .internal import old_api + + app = FastAPI() + + app.include_router( + old_api.router, + deprecated=True, + ) + ``` + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include (or not) all the *path operations* in this router in the + generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + **Example** + + ```python + from fastapi import FastAPI + + from .internal import old_api + + app = FastAPI() + + app.include_router( + old_api.router, + include_in_schema=False, + ) + ``` + """ + ), + ] = True, + default_response_class: Annotated[ + Type[Response], + Doc( + """ + Default response class to be used for the *path operations* in this + router. + + Read more in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). + + **Example** + + ```python + from fastapi import FastAPI + from fastapi.responses import ORJSONResponse + + from .internal import old_api + + app = FastAPI() + + app.include_router( + old_api.router, + default_response_class=ORJSONResponse, + ) + ``` + """ + ), + ] = Default(JSONResponse), + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> None: + """ + Include an `APIRouter` in the same app. + + Read more about it in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/). + + ## Example + + ```python + from fastapi import FastAPI + + from .users import users_router + + app = FastAPI() + + app.include_router(users_router) + ``` + """ + self.router.include_router( + router, + prefix=prefix, + tags=tags, + dependencies=dependencies, + responses=responses, + deprecated=deprecated, + include_in_schema=include_in_schema, + default_response_class=default_response_class, + callbacks=callbacks, + generate_unique_id_function=generate_unique_id_function, + ) + + def get( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP GET operation. + + ## Example + + ```python + from fastapi import FastAPI + + app = FastAPI() + + @app.get("/items/") + def read_items(): + return [{"name": "Empanada"}, {"name": "Arepa"}] + ``` + """ + return self.router.get( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def put( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP PUT operation. + + ## Example + + ```python + from fastapi import FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + + @app.put("/items/{item_id}") + def replace_item(item_id: str, item: Item): + return {"message": "Item replaced", "id": item_id} + ``` + """ + return self.router.put( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def post( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP POST operation. + + ## Example + + ```python + from fastapi import FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + + @app.post("/items/") + def create_item(item: Item): + return {"message": "Item created"} + ``` + """ + return self.router.post( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def delete( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP DELETE operation. + + ## Example + + ```python + from fastapi import FastAPI + + app = FastAPI() + + @app.delete("/items/{item_id}") + def delete_item(item_id: str): + return {"message": "Item deleted"} + ``` + """ + return self.router.delete( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def options( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP OPTIONS operation. + + ## Example + + ```python + from fastapi import FastAPI + + app = FastAPI() + + @app.options("/items/") + def get_item_options(): + return {"additions": ["Aji", "Guacamole"]} + ``` + """ + return self.router.options( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def head( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP HEAD operation. + + ## Example + + ```python + from fastapi import FastAPI, Response + + app = FastAPI() + + @app.head("/items/", status_code=204) + def get_items_headers(response: Response): + response.headers["X-Cat-Dog"] = "Alone in the world" + ``` + """ + return self.router.head( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def patch( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP PATCH operation. + + ## Example + + ```python + from fastapi import FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + + @app.patch("/items/") + def update_item(item: Item): + return {"message": "Item updated in place"} + ``` + """ + return self.router.patch( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def trace( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[routing.APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP TRACE operation. + + ## Example + + ```python + from fastapi import FastAPI + + app = FastAPI() + + @app.put("/items/{item_id}") + def trace_item(item_id: str): + return None + ``` + """ + return self.router.trace( + path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def websocket_route( + self, path: str, name: Union[str, None] = None + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.router.add_websocket_route(path, func, name=name) + return func + + return decorator + + @deprecated( + """ + on_event is deprecated, use lifespan event handlers instead. + + Read more about it in the + [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/). + """ + ) + def on_event( + self, + event_type: Annotated[ + str, + Doc( + """ + The type of event. `startup` or `shutdown`. + """ + ), + ], + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add an event handler for the application. + + `on_event` is deprecated, use `lifespan` event handlers instead. + + Read more about it in the + [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/#alternative-events-deprecated). + """ + return self.router.on_event(event_type) + + def middleware( + self, + middleware_type: Annotated[ + str, + Doc( + """ + The type of middleware. Currently only supports `http`. + """ + ), + ], + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a middleware to the application. + + Read more about it in the + [FastAPI docs for Middleware](https://fastapi.tiangolo.com/tutorial/middleware/). + + ## Example + + ```python + import time + + from fastapi import FastAPI, Request + + app = FastAPI() + + + @app.middleware("http") + async def add_process_time_header(request: Request, call_next): + start_time = time.time() + response = await call_next(request) + process_time = time.time() - start_time + response.headers["X-Process-Time"] = str(process_time) + return response + ``` + """ + + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_middleware(BaseHTTPMiddleware, dispatch=func) + return func + + return decorator + + def exception_handler( + self, + exc_class_or_status_code: Annotated[ + Union[int, Type[Exception]], + Doc( + """ + The Exception class this would handle, or a status code. + """ + ), + ], + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add an exception handler to the app. + + Read more about it in the + [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). + + ## Example + + ```python + from fastapi import FastAPI, Request + from fastapi.responses import JSONResponse + + + class UnicornException(Exception): + def __init__(self, name: str): + self.name = name + + + app = FastAPI() + + + @app.exception_handler(UnicornException) + async def unicorn_exception_handler(request: Request, exc: UnicornException): + return JSONResponse( + status_code=418, + content={"message": f"Oops! {exc.name} did something. There goes a rainbow..."}, + ) + ``` + """ + + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_exception_handler(exc_class_or_status_code, func) + return func + + return decorator diff --git a/ocr/.venv/Lib/site-packages/fastapi/background.py b/ocr/.venv/Lib/site-packages/fastapi/background.py new file mode 100644 index 00000000..203578a4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/background.py @@ -0,0 +1,59 @@ +from typing import Any, Callable + +from starlette.background import BackgroundTasks as StarletteBackgroundTasks +from typing_extensions import Annotated, Doc, ParamSpec + +P = ParamSpec("P") + + +class BackgroundTasks(StarletteBackgroundTasks): + """ + A collection of background tasks that will be called after a response has been + sent to the client. + + Read more about it in the + [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/). + + ## Example + + ```python + from fastapi import BackgroundTasks, FastAPI + + app = FastAPI() + + + def write_notification(email: str, message=""): + with open("log.txt", mode="w") as email_file: + content = f"notification for {email}: {message}" + email_file.write(content) + + + @app.post("/send-notification/{email}") + async def send_notification(email: str, background_tasks: BackgroundTasks): + background_tasks.add_task(write_notification, email, message="some notification") + return {"message": "Notification sent in the background"} + ``` + """ + + def add_task( + self, + func: Annotated[ + Callable[P, Any], + Doc( + """ + The function to call after the response is sent. + + It can be a regular `def` function or an `async def` function. + """ + ), + ], + *args: P.args, + **kwargs: P.kwargs, + ) -> None: + """ + Add a function to be called in the background after the response is sent. + + Read more about it in the + [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/). + """ + return super().add_task(func, *args, **kwargs) diff --git a/ocr/.venv/Lib/site-packages/fastapi/cli.py b/ocr/.venv/Lib/site-packages/fastapi/cli.py new file mode 100644 index 00000000..8d3301e9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/cli.py @@ -0,0 +1,13 @@ +try: + from fastapi_cli.cli import main as cli_main + +except ImportError: # pragma: no cover + cli_main = None # type: ignore + + +def main() -> None: + if not cli_main: # type: ignore[truthy-function] + message = 'To use the fastapi command, please install "fastapi[standard]":\n\n\tpip install "fastapi[standard]"\n' + print(message) + raise RuntimeError(message) # noqa: B904 + cli_main() diff --git a/ocr/.venv/Lib/site-packages/fastapi/concurrency.py b/ocr/.venv/Lib/site-packages/fastapi/concurrency.py new file mode 100644 index 00000000..894bd3ed --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/concurrency.py @@ -0,0 +1,39 @@ +from contextlib import asynccontextmanager as asynccontextmanager +from typing import AsyncGenerator, ContextManager, TypeVar + +import anyio +from anyio import CapacityLimiter +from starlette.concurrency import iterate_in_threadpool as iterate_in_threadpool # noqa +from starlette.concurrency import run_in_threadpool as run_in_threadpool # noqa +from starlette.concurrency import ( # noqa + run_until_first_complete as run_until_first_complete, +) + +_T = TypeVar("_T") + + +@asynccontextmanager +async def contextmanager_in_threadpool( + cm: ContextManager[_T], +) -> AsyncGenerator[_T, None]: + # blocking __exit__ from running waiting on a free thread + # can create race conditions/deadlocks if the context manager itself + # has its own internal pool (e.g. a database connection pool) + # to avoid this we let __exit__ run without a capacity limit + # since we're creating a new limiter for each call, any non-zero limit + # works (1 is arbitrary) + exit_limiter = CapacityLimiter(1) + try: + yield await run_in_threadpool(cm.__enter__) + except Exception as e: + ok = bool( + await anyio.to_thread.run_sync( + cm.__exit__, type(e), e, None, limiter=exit_limiter + ) + ) + if not ok: + raise e + else: + await anyio.to_thread.run_sync( + cm.__exit__, None, None, None, limiter=exit_limiter + ) diff --git a/ocr/.venv/Lib/site-packages/fastapi/datastructures.py b/ocr/.venv/Lib/site-packages/fastapi/datastructures.py new file mode 100644 index 00000000..cf8406b0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/datastructures.py @@ -0,0 +1,204 @@ +from typing import ( + Any, + BinaryIO, + Callable, + Dict, + Iterable, + Optional, + Type, + TypeVar, + cast, +) + +from fastapi._compat import ( + PYDANTIC_V2, + CoreSchema, + GetJsonSchemaHandler, + JsonSchemaValue, + with_info_plain_validator_function, +) +from starlette.datastructures import URL as URL # noqa: F401 +from starlette.datastructures import Address as Address # noqa: F401 +from starlette.datastructures import FormData as FormData # noqa: F401 +from starlette.datastructures import Headers as Headers # noqa: F401 +from starlette.datastructures import QueryParams as QueryParams # noqa: F401 +from starlette.datastructures import State as State # noqa: F401 +from starlette.datastructures import UploadFile as StarletteUploadFile +from typing_extensions import Annotated, Doc + + +class UploadFile(StarletteUploadFile): + """ + A file uploaded in a request. + + Define it as a *path operation function* (or dependency) parameter. + + If you are using a regular `def` function, you can use the `upload_file.file` + attribute to access the raw standard Python file (blocking, not async), useful and + needed for non-async code. + + Read more about it in the + [FastAPI docs for Request Files](https://fastapi.tiangolo.com/tutorial/request-files/). + + ## Example + + ```python + from typing import Annotated + + from fastapi import FastAPI, File, UploadFile + + app = FastAPI() + + + @app.post("/files/") + async def create_file(file: Annotated[bytes, File()]): + return {"file_size": len(file)} + + + @app.post("/uploadfile/") + async def create_upload_file(file: UploadFile): + return {"filename": file.filename} + ``` + """ + + file: Annotated[ + BinaryIO, + Doc("The standard Python file object (non-async)."), + ] + filename: Annotated[Optional[str], Doc("The original file name.")] + size: Annotated[Optional[int], Doc("The size of the file in bytes.")] + headers: Annotated[Headers, Doc("The headers of the request.")] + content_type: Annotated[ + Optional[str], Doc("The content type of the request, from the headers.") + ] + + async def write( + self, + data: Annotated[ + bytes, + Doc( + """ + The bytes to write to the file. + """ + ), + ], + ) -> None: + """ + Write some bytes to the file. + + You normally wouldn't use this from a file you read in a request. + + To be awaitable, compatible with async, this is run in threadpool. + """ + return await super().write(data) + + async def read( + self, + size: Annotated[ + int, + Doc( + """ + The number of bytes to read from the file. + """ + ), + ] = -1, + ) -> bytes: + """ + Read some bytes from the file. + + To be awaitable, compatible with async, this is run in threadpool. + """ + return await super().read(size) + + async def seek( + self, + offset: Annotated[ + int, + Doc( + """ + The position in bytes to seek to in the file. + """ + ), + ], + ) -> None: + """ + Move to a position in the file. + + Any next read or write will be done from that position. + + To be awaitable, compatible with async, this is run in threadpool. + """ + return await super().seek(offset) + + async def close(self) -> None: + """ + Close the file. + + To be awaitable, compatible with async, this is run in threadpool. + """ + return await super().close() + + @classmethod + def __get_validators__(cls: Type["UploadFile"]) -> Iterable[Callable[..., Any]]: + yield cls.validate + + @classmethod + def validate(cls: Type["UploadFile"], v: Any) -> Any: + if not isinstance(v, StarletteUploadFile): + raise ValueError(f"Expected UploadFile, received: {type(v)}") + return v + + @classmethod + def _validate(cls, __input_value: Any, _: Any) -> "UploadFile": + if not isinstance(__input_value, StarletteUploadFile): + raise ValueError(f"Expected UploadFile, received: {type(__input_value)}") + return cast(UploadFile, __input_value) + + if not PYDANTIC_V2: + + @classmethod + def __modify_schema__(cls, field_schema: Dict[str, Any]) -> None: + field_schema.update({"type": "string", "format": "binary"}) + + @classmethod + def __get_pydantic_json_schema__( + cls, core_schema: CoreSchema, handler: GetJsonSchemaHandler + ) -> JsonSchemaValue: + return {"type": "string", "format": "binary"} + + @classmethod + def __get_pydantic_core_schema__( + cls, source: Type[Any], handler: Callable[[Any], CoreSchema] + ) -> CoreSchema: + return with_info_plain_validator_function(cls._validate) + + +class DefaultPlaceholder: + """ + You shouldn't use this class directly. + + It's used internally to recognize when a default value has been overwritten, even + if the overridden default value was truthy. + """ + + def __init__(self, value: Any): + self.value = value + + def __bool__(self) -> bool: + return bool(self.value) + + def __eq__(self, o: object) -> bool: + return isinstance(o, DefaultPlaceholder) and o.value == self.value + + +DefaultType = TypeVar("DefaultType") + + +def Default(value: DefaultType) -> DefaultType: + """ + You shouldn't use this function directly. + + It's used internally to recognize when a default value has been overwritten, even + if the overridden default value was truthy. + """ + return DefaultPlaceholder(value) # type: ignore diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/__init__.py b/ocr/.venv/Lib/site-packages/fastapi/dependencies/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2f35d5384c4c58fb08e013d6c165f30fede44e6 GIT binary patch literal 191 zcmd1j<>g`k0Gw;(Y& zJ25@AI3_KzxFoS4Q$HmYs3j#eFF7-{SU)~KGcU6wK3=b&@)n0pZhlH>PO2Tq?qVh& H!NLFlMXE9u literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9352d69c7f28e77f3d26a7d04145a65570bc8d2 GIT binary patch literal 2028 zcmZuy%Wm676y;D9MZGNf{dR1pFSV%Bbzu}q9i%9bIzXJD03m>-I9E1pzA`gPp&~nH z+ilTb=r7GStNub)y?1ESEK(9Ynsa7GbLVjGW!~?1EWA2@ti&Ihmi2*1{c?~z#zz(i z+~O>;Qs%SN_H9PoP8zA>J89EzrmpX%Ex(m|zL&QBw&`yqowVzBP1{L&Y2WWN3)l}9 zZ*up&#oZhGhWSfIX>kt~&nN@lKDS1lzj0M-Wa~B$RTw3ql)5>KA>kueH=bk*?VW~6 z5>6A)&huC*?Y$^eoM&O8y>oaohb#i!d^Il;7%|=XDd&(pGxM45okKJiv08i|N{DEo z`qe=47$5m10$4udmT$kdpaBkNC%AFH2`;q2+qSkX)EcB=$c|pU``?!sKrA4IO!)&` z!YmfZ=n|zf?aC-GK#tnl3xX_6AqaFQ2-2L-6KeN@;LSWt${x|hDD)r*!Ys>GNL!Ra zAo{3^7J*0o4XMOmmRKc$;GbVkzn#36Amrrg3i9k?@)YE?%8SX10+k~PWEM&l7V#qvIEAC1F~~<4BqVZNEJP2Np|z!p(6Kyw ziy7@BKk;yte*Vcm_VagEx`|GD+&;N=8PzsO+N)HzruM<* z^xiz)s;Nsjc3@Nw-)7q%!ZNHF-Z6X?`5N!S`ph+v4J3hz?v z^x*7moW0L?`QCfSKQ;+>pxaN)iw-k|2{Yg@3+IUnW?`gqvC!QjRF^>!iZGSBhxsKI zcdUO2AqP>>D9^8BxTD=^&a0ul`eD-RRceU)gpp_3p`$<6PK4)FuTURIRsNsJ7rpi? zOl2Nj;~_Q?mFmu=QbiEuSq2g1Nxg4XfGjX|Zo?`k>`w8lUx<93@j!+0TGnUmRKb<$ zTJNjpG^O$@-JauLM(WHJ56ge77;RV4bC`lXPnEkd{9f9$G#*A$76^=L?Jrqm$D+UBZ0xFi;Nw5Hm zP2yAx1btYllw}if6^x<*(nVcgJo##gCJz k{-sY8^Z#u|dne_W<2yP^lHSVDI%GY&$Lz+C+08ZfFREzsJ^%m! literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d4c4e35f3bc4a726aa5e244de2f4be83370646f GIT binary patch literal 21512 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 O_srQYWWH_4uKyReh)mo7 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/models.py b/ocr/.venv/Lib/site-packages/fastapi/dependencies/models.py new file mode 100644 index 00000000..418c1172 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/dependencies/models.py @@ -0,0 +1,37 @@ +from dataclasses import dataclass, field +from typing import Any, Callable, List, Optional, Sequence, Tuple + +from fastapi._compat import ModelField +from fastapi.security.base import SecurityBase + + +@dataclass +class SecurityRequirement: + security_scheme: SecurityBase + scopes: Optional[Sequence[str]] = None + + +@dataclass +class Dependant: + path_params: List[ModelField] = field(default_factory=list) + query_params: List[ModelField] = field(default_factory=list) + header_params: List[ModelField] = field(default_factory=list) + cookie_params: List[ModelField] = field(default_factory=list) + body_params: List[ModelField] = field(default_factory=list) + dependencies: List["Dependant"] = field(default_factory=list) + security_requirements: List[SecurityRequirement] = field(default_factory=list) + name: Optional[str] = None + call: Optional[Callable[..., Any]] = None + request_param_name: Optional[str] = None + websocket_param_name: Optional[str] = None + http_connection_param_name: Optional[str] = None + response_param_name: Optional[str] = None + background_tasks_param_name: Optional[str] = None + security_scopes_param_name: Optional[str] = None + security_scopes: Optional[List[str]] = None + use_cache: bool = True + path: Optional[str] = None + cache_key: Tuple[Optional[Callable[..., Any]], Tuple[str, ...]] = field(init=False) + + def __post_init__(self) -> None: + self.cache_key = (self.call, tuple(sorted(set(self.security_scopes or [])))) diff --git a/ocr/.venv/Lib/site-packages/fastapi/dependencies/utils.py b/ocr/.venv/Lib/site-packages/fastapi/dependencies/utils.py new file mode 100644 index 00000000..5cebbf00 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/dependencies/utils.py @@ -0,0 +1,962 @@ +import inspect +from contextlib import AsyncExitStack, contextmanager +from copy import copy, deepcopy +from dataclasses import dataclass +from typing import ( + Any, + Callable, + Coroutine, + Dict, + ForwardRef, + List, + Mapping, + Optional, + Sequence, + Tuple, + Type, + Union, + cast, +) + +import anyio +from fastapi import params +from fastapi._compat import ( + PYDANTIC_V2, + ErrorWrapper, + ModelField, + Required, + Undefined, + _regenerate_error_with_loc, + copy_field_info, + create_body_model, + evaluate_forwardref, + field_annotation_is_scalar, + get_annotation_from_field_info, + get_cached_model_fields, + get_missing_field_error, + is_bytes_field, + is_bytes_sequence_field, + is_scalar_field, + is_scalar_sequence_field, + is_sequence_field, + is_uploadfile_or_nonable_uploadfile_annotation, + is_uploadfile_sequence_annotation, + lenient_issubclass, + sequence_types, + serialize_sequence_value, + value_is_sequence, +) +from fastapi.background import BackgroundTasks +from fastapi.concurrency import ( + asynccontextmanager, + contextmanager_in_threadpool, +) +from fastapi.dependencies.models import Dependant, SecurityRequirement +from fastapi.logger import logger +from fastapi.security.base import SecurityBase +from fastapi.security.oauth2 import OAuth2, SecurityScopes +from fastapi.security.open_id_connect_url import OpenIdConnect +from fastapi.utils import create_model_field, get_path_param_names +from pydantic import BaseModel +from pydantic.fields import FieldInfo +from starlette.background import BackgroundTasks as StarletteBackgroundTasks +from starlette.concurrency import run_in_threadpool +from starlette.datastructures import ( + FormData, + Headers, + ImmutableMultiDict, + QueryParams, + UploadFile, +) +from starlette.requests import HTTPConnection, Request +from starlette.responses import Response +from starlette.websockets import WebSocket +from typing_extensions import Annotated, get_args, get_origin + +multipart_not_installed_error = ( + 'Form data requires "python-multipart" to be installed. \n' + 'You can install "python-multipart" with: \n\n' + "pip install python-multipart\n" +) +multipart_incorrect_install_error = ( + 'Form data requires "python-multipart" to be installed. ' + 'It seems you installed "multipart" instead. \n' + 'You can remove "multipart" with: \n\n' + "pip uninstall multipart\n\n" + 'And then install "python-multipart" with: \n\n' + "pip install python-multipart\n" +) + + +def ensure_multipart_is_installed() -> None: + try: + # __version__ is available in both multiparts, and can be mocked + from multipart import __version__ # type: ignore + + assert __version__ + try: + # parse_options_header is only available in the right multipart + from multipart.multipart import parse_options_header # type: ignore + + assert parse_options_header + except ImportError: + logger.error(multipart_incorrect_install_error) + raise RuntimeError(multipart_incorrect_install_error) from None + except ImportError: + logger.error(multipart_not_installed_error) + raise RuntimeError(multipart_not_installed_error) from None + + +def get_param_sub_dependant( + *, + param_name: str, + depends: params.Depends, + path: str, + security_scopes: Optional[List[str]] = None, +) -> Dependant: + assert depends.dependency + return get_sub_dependant( + depends=depends, + dependency=depends.dependency, + path=path, + name=param_name, + security_scopes=security_scopes, + ) + + +def get_parameterless_sub_dependant(*, depends: params.Depends, path: str) -> Dependant: + assert callable( + depends.dependency + ), "A parameter-less dependency must have a callable dependency" + return get_sub_dependant(depends=depends, dependency=depends.dependency, path=path) + + +def get_sub_dependant( + *, + depends: params.Depends, + dependency: Callable[..., Any], + path: str, + name: Optional[str] = None, + security_scopes: Optional[List[str]] = None, +) -> Dependant: + security_requirement = None + security_scopes = security_scopes or [] + if isinstance(depends, params.Security): + dependency_scopes = depends.scopes + security_scopes.extend(dependency_scopes) + if isinstance(dependency, SecurityBase): + use_scopes: List[str] = [] + if isinstance(dependency, (OAuth2, OpenIdConnect)): + use_scopes = security_scopes + security_requirement = SecurityRequirement( + security_scheme=dependency, scopes=use_scopes + ) + sub_dependant = get_dependant( + path=path, + call=dependency, + name=name, + security_scopes=security_scopes, + use_cache=depends.use_cache, + ) + if security_requirement: + sub_dependant.security_requirements.append(security_requirement) + return sub_dependant + + +CacheKey = Tuple[Optional[Callable[..., Any]], Tuple[str, ...]] + + +def get_flat_dependant( + dependant: Dependant, + *, + skip_repeats: bool = False, + visited: Optional[List[CacheKey]] = None, +) -> Dependant: + if visited is None: + visited = [] + visited.append(dependant.cache_key) + + flat_dependant = Dependant( + path_params=dependant.path_params.copy(), + query_params=dependant.query_params.copy(), + header_params=dependant.header_params.copy(), + cookie_params=dependant.cookie_params.copy(), + body_params=dependant.body_params.copy(), + security_requirements=dependant.security_requirements.copy(), + use_cache=dependant.use_cache, + path=dependant.path, + ) + for sub_dependant in dependant.dependencies: + if skip_repeats and sub_dependant.cache_key in visited: + continue + flat_sub = get_flat_dependant( + sub_dependant, skip_repeats=skip_repeats, visited=visited + ) + flat_dependant.path_params.extend(flat_sub.path_params) + flat_dependant.query_params.extend(flat_sub.query_params) + flat_dependant.header_params.extend(flat_sub.header_params) + flat_dependant.cookie_params.extend(flat_sub.cookie_params) + flat_dependant.body_params.extend(flat_sub.body_params) + flat_dependant.security_requirements.extend(flat_sub.security_requirements) + return flat_dependant + + +def _get_flat_fields_from_params(fields: List[ModelField]) -> List[ModelField]: + if not fields: + return fields + first_field = fields[0] + if len(fields) == 1 and lenient_issubclass(first_field.type_, BaseModel): + fields_to_extract = get_cached_model_fields(first_field.type_) + return fields_to_extract + return fields + + +def get_flat_params(dependant: Dependant) -> List[ModelField]: + flat_dependant = get_flat_dependant(dependant, skip_repeats=True) + path_params = _get_flat_fields_from_params(flat_dependant.path_params) + query_params = _get_flat_fields_from_params(flat_dependant.query_params) + header_params = _get_flat_fields_from_params(flat_dependant.header_params) + cookie_params = _get_flat_fields_from_params(flat_dependant.cookie_params) + return path_params + query_params + header_params + cookie_params + + +def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature: + signature = inspect.signature(call) + globalns = getattr(call, "__globals__", {}) + typed_params = [ + inspect.Parameter( + name=param.name, + kind=param.kind, + default=param.default, + annotation=get_typed_annotation(param.annotation, globalns), + ) + for param in signature.parameters.values() + ] + typed_signature = inspect.Signature(typed_params) + return typed_signature + + +def get_typed_annotation(annotation: Any, globalns: Dict[str, Any]) -> Any: + if isinstance(annotation, str): + annotation = ForwardRef(annotation) + annotation = evaluate_forwardref(annotation, globalns, globalns) + return annotation + + +def get_typed_return_annotation(call: Callable[..., Any]) -> Any: + signature = inspect.signature(call) + annotation = signature.return_annotation + + if annotation is inspect.Signature.empty: + return None + + globalns = getattr(call, "__globals__", {}) + return get_typed_annotation(annotation, globalns) + + +def get_dependant( + *, + path: str, + call: Callable[..., Any], + name: Optional[str] = None, + security_scopes: Optional[List[str]] = None, + use_cache: bool = True, +) -> Dependant: + path_param_names = get_path_param_names(path) + endpoint_signature = get_typed_signature(call) + signature_params = endpoint_signature.parameters + dependant = Dependant( + call=call, + name=name, + path=path, + security_scopes=security_scopes, + use_cache=use_cache, + ) + for param_name, param in signature_params.items(): + is_path_param = param_name in path_param_names + param_details = analyze_param( + param_name=param_name, + annotation=param.annotation, + value=param.default, + is_path_param=is_path_param, + ) + if param_details.depends is not None: + sub_dependant = get_param_sub_dependant( + param_name=param_name, + depends=param_details.depends, + path=path, + security_scopes=security_scopes, + ) + dependant.dependencies.append(sub_dependant) + continue + if add_non_field_param_to_dependency( + param_name=param_name, + type_annotation=param_details.type_annotation, + dependant=dependant, + ): + assert ( + param_details.field is None + ), f"Cannot specify multiple FastAPI annotations for {param_name!r}" + continue + assert param_details.field is not None + if isinstance(param_details.field.field_info, params.Body): + dependant.body_params.append(param_details.field) + else: + add_param_to_fields(field=param_details.field, dependant=dependant) + return dependant + + +def add_non_field_param_to_dependency( + *, param_name: str, type_annotation: Any, dependant: Dependant +) -> Optional[bool]: + if lenient_issubclass(type_annotation, Request): + dependant.request_param_name = param_name + return True + elif lenient_issubclass(type_annotation, WebSocket): + dependant.websocket_param_name = param_name + return True + elif lenient_issubclass(type_annotation, HTTPConnection): + dependant.http_connection_param_name = param_name + return True + elif lenient_issubclass(type_annotation, Response): + dependant.response_param_name = param_name + return True + elif lenient_issubclass(type_annotation, StarletteBackgroundTasks): + dependant.background_tasks_param_name = param_name + return True + elif lenient_issubclass(type_annotation, SecurityScopes): + dependant.security_scopes_param_name = param_name + return True + return None + + +@dataclass +class ParamDetails: + type_annotation: Any + depends: Optional[params.Depends] + field: Optional[ModelField] + + +def analyze_param( + *, + param_name: str, + annotation: Any, + value: Any, + is_path_param: bool, +) -> ParamDetails: + field_info = None + depends = None + type_annotation: Any = Any + use_annotation: Any = Any + if annotation is not inspect.Signature.empty: + use_annotation = annotation + type_annotation = annotation + # Extract Annotated info + if get_origin(use_annotation) is Annotated: + annotated_args = get_args(annotation) + type_annotation = annotated_args[0] + fastapi_annotations = [ + arg + for arg in annotated_args[1:] + if isinstance(arg, (FieldInfo, params.Depends)) + ] + fastapi_specific_annotations = [ + arg + for arg in fastapi_annotations + if isinstance(arg, (params.Param, params.Body, params.Depends)) + ] + if fastapi_specific_annotations: + fastapi_annotation: Union[FieldInfo, params.Depends, None] = ( + fastapi_specific_annotations[-1] + ) + else: + fastapi_annotation = None + # Set default for Annotated FieldInfo + if isinstance(fastapi_annotation, FieldInfo): + # Copy `field_info` because we mutate `field_info.default` below. + field_info = copy_field_info( + field_info=fastapi_annotation, annotation=use_annotation + ) + assert field_info.default is Undefined or field_info.default is Required, ( + f"`{field_info.__class__.__name__}` default value cannot be set in" + f" `Annotated` for {param_name!r}. Set the default value with `=` instead." + ) + if value is not inspect.Signature.empty: + assert not is_path_param, "Path parameters cannot have default values" + field_info.default = value + else: + field_info.default = Required + # Get Annotated Depends + elif isinstance(fastapi_annotation, params.Depends): + depends = fastapi_annotation + # Get Depends from default value + if isinstance(value, params.Depends): + assert depends is None, ( + "Cannot specify `Depends` in `Annotated` and default value" + f" together for {param_name!r}" + ) + assert field_info is None, ( + "Cannot specify a FastAPI annotation in `Annotated` and `Depends` as a" + f" default value together for {param_name!r}" + ) + depends = value + # Get FieldInfo from default value + elif isinstance(value, FieldInfo): + assert field_info is None, ( + "Cannot specify FastAPI annotations in `Annotated` and default value" + f" together for {param_name!r}" + ) + field_info = value + if PYDANTIC_V2: + field_info.annotation = type_annotation + + # Get Depends from type annotation + if depends is not None and depends.dependency is None: + # Copy `depends` before mutating it + depends = copy(depends) + depends.dependency = type_annotation + + # Handle non-param type annotations like Request + if lenient_issubclass( + type_annotation, + ( + Request, + WebSocket, + HTTPConnection, + Response, + StarletteBackgroundTasks, + SecurityScopes, + ), + ): + assert depends is None, f"Cannot specify `Depends` for type {type_annotation!r}" + assert ( + field_info is None + ), f"Cannot specify FastAPI annotation for type {type_annotation!r}" + # Handle default assignations, neither field_info nor depends was not found in Annotated nor default value + elif field_info is None and depends is None: + default_value = value if value is not inspect.Signature.empty else Required + if is_path_param: + # We might check here that `default_value is Required`, but the fact is that the same + # parameter might sometimes be a path parameter and sometimes not. See + # `tests/test_infer_param_optionality.py` for an example. + field_info = params.Path(annotation=use_annotation) + elif is_uploadfile_or_nonable_uploadfile_annotation( + type_annotation + ) or is_uploadfile_sequence_annotation(type_annotation): + field_info = params.File(annotation=use_annotation, default=default_value) + elif not field_annotation_is_scalar(annotation=type_annotation): + field_info = params.Body(annotation=use_annotation, default=default_value) + else: + field_info = params.Query(annotation=use_annotation, default=default_value) + + field = None + # It's a field_info, not a dependency + if field_info is not None: + # Handle field_info.in_ + if is_path_param: + assert isinstance(field_info, params.Path), ( + f"Cannot use `{field_info.__class__.__name__}` for path param" + f" {param_name!r}" + ) + elif ( + isinstance(field_info, params.Param) + and getattr(field_info, "in_", None) is None + ): + field_info.in_ = params.ParamTypes.query + use_annotation_from_field_info = get_annotation_from_field_info( + use_annotation, + field_info, + param_name, + ) + if isinstance(field_info, params.Form): + ensure_multipart_is_installed() + if not field_info.alias and getattr(field_info, "convert_underscores", None): + alias = param_name.replace("_", "-") + else: + alias = field_info.alias or param_name + field_info.alias = alias + field = create_model_field( + name=param_name, + type_=use_annotation_from_field_info, + default=field_info.default, + alias=alias, + required=field_info.default in (Required, Undefined), + field_info=field_info, + ) + if is_path_param: + assert is_scalar_field( + field=field + ), "Path params must be of one of the supported types" + elif isinstance(field_info, params.Query): + assert ( + is_scalar_field(field) + or is_scalar_sequence_field(field) + or ( + lenient_issubclass(field.type_, BaseModel) + # For Pydantic v1 + and getattr(field, "shape", 1) == 1 + ) + ) + + return ParamDetails(type_annotation=type_annotation, depends=depends, field=field) + + +def add_param_to_fields(*, field: ModelField, dependant: Dependant) -> None: + field_info = field.field_info + field_info_in = getattr(field_info, "in_", None) + if field_info_in == params.ParamTypes.path: + dependant.path_params.append(field) + elif field_info_in == params.ParamTypes.query: + dependant.query_params.append(field) + elif field_info_in == params.ParamTypes.header: + dependant.header_params.append(field) + else: + assert ( + field_info_in == params.ParamTypes.cookie + ), f"non-body parameters must be in path, query, header or cookie: {field.name}" + dependant.cookie_params.append(field) + + +def is_coroutine_callable(call: Callable[..., Any]) -> bool: + if inspect.isroutine(call): + return inspect.iscoroutinefunction(call) + if inspect.isclass(call): + return False + dunder_call = getattr(call, "__call__", None) # noqa: B004 + return inspect.iscoroutinefunction(dunder_call) + + +def is_async_gen_callable(call: Callable[..., Any]) -> bool: + if inspect.isasyncgenfunction(call): + return True + dunder_call = getattr(call, "__call__", None) # noqa: B004 + return inspect.isasyncgenfunction(dunder_call) + + +def is_gen_callable(call: Callable[..., Any]) -> bool: + if inspect.isgeneratorfunction(call): + return True + dunder_call = getattr(call, "__call__", None) # noqa: B004 + return inspect.isgeneratorfunction(dunder_call) + + +async def solve_generator( + *, call: Callable[..., Any], stack: AsyncExitStack, sub_values: Dict[str, Any] +) -> Any: + if is_gen_callable(call): + cm = contextmanager_in_threadpool(contextmanager(call)(**sub_values)) + elif is_async_gen_callable(call): + cm = asynccontextmanager(call)(**sub_values) + return await stack.enter_async_context(cm) + + +@dataclass +class SolvedDependency: + values: Dict[str, Any] + errors: List[Any] + background_tasks: Optional[StarletteBackgroundTasks] + response: Response + dependency_cache: Dict[Tuple[Callable[..., Any], Tuple[str]], Any] + + +async def solve_dependencies( + *, + request: Union[Request, WebSocket], + dependant: Dependant, + body: Optional[Union[Dict[str, Any], FormData]] = None, + background_tasks: Optional[StarletteBackgroundTasks] = None, + response: Optional[Response] = None, + dependency_overrides_provider: Optional[Any] = None, + dependency_cache: Optional[Dict[Tuple[Callable[..., Any], Tuple[str]], Any]] = None, + async_exit_stack: AsyncExitStack, + embed_body_fields: bool, +) -> SolvedDependency: + values: Dict[str, Any] = {} + errors: List[Any] = [] + if response is None: + response = Response() + del response.headers["content-length"] + response.status_code = None # type: ignore + dependency_cache = dependency_cache or {} + sub_dependant: Dependant + for sub_dependant in dependant.dependencies: + sub_dependant.call = cast(Callable[..., Any], sub_dependant.call) + sub_dependant.cache_key = cast( + Tuple[Callable[..., Any], Tuple[str]], sub_dependant.cache_key + ) + call = sub_dependant.call + use_sub_dependant = sub_dependant + if ( + dependency_overrides_provider + and dependency_overrides_provider.dependency_overrides + ): + original_call = sub_dependant.call + call = getattr( + dependency_overrides_provider, "dependency_overrides", {} + ).get(original_call, original_call) + use_path: str = sub_dependant.path # type: ignore + use_sub_dependant = get_dependant( + path=use_path, + call=call, + name=sub_dependant.name, + security_scopes=sub_dependant.security_scopes, + ) + + solved_result = await solve_dependencies( + request=request, + dependant=use_sub_dependant, + body=body, + background_tasks=background_tasks, + response=response, + dependency_overrides_provider=dependency_overrides_provider, + dependency_cache=dependency_cache, + async_exit_stack=async_exit_stack, + embed_body_fields=embed_body_fields, + ) + background_tasks = solved_result.background_tasks + dependency_cache.update(solved_result.dependency_cache) + if solved_result.errors: + errors.extend(solved_result.errors) + continue + if sub_dependant.use_cache and sub_dependant.cache_key in dependency_cache: + solved = dependency_cache[sub_dependant.cache_key] + elif is_gen_callable(call) or is_async_gen_callable(call): + solved = await solve_generator( + call=call, stack=async_exit_stack, sub_values=solved_result.values + ) + elif is_coroutine_callable(call): + solved = await call(**solved_result.values) + else: + solved = await run_in_threadpool(call, **solved_result.values) + if sub_dependant.name is not None: + values[sub_dependant.name] = solved + if sub_dependant.cache_key not in dependency_cache: + dependency_cache[sub_dependant.cache_key] = solved + path_values, path_errors = request_params_to_args( + dependant.path_params, request.path_params + ) + query_values, query_errors = request_params_to_args( + dependant.query_params, request.query_params + ) + header_values, header_errors = request_params_to_args( + dependant.header_params, request.headers + ) + cookie_values, cookie_errors = request_params_to_args( + dependant.cookie_params, request.cookies + ) + values.update(path_values) + values.update(query_values) + values.update(header_values) + values.update(cookie_values) + errors += path_errors + query_errors + header_errors + cookie_errors + if dependant.body_params: + ( + body_values, + body_errors, + ) = await request_body_to_args( # body_params checked above + body_fields=dependant.body_params, + received_body=body, + embed_body_fields=embed_body_fields, + ) + values.update(body_values) + errors.extend(body_errors) + if dependant.http_connection_param_name: + values[dependant.http_connection_param_name] = request + if dependant.request_param_name and isinstance(request, Request): + values[dependant.request_param_name] = request + elif dependant.websocket_param_name and isinstance(request, WebSocket): + values[dependant.websocket_param_name] = request + if dependant.background_tasks_param_name: + if background_tasks is None: + background_tasks = BackgroundTasks() + values[dependant.background_tasks_param_name] = background_tasks + if dependant.response_param_name: + values[dependant.response_param_name] = response + if dependant.security_scopes_param_name: + values[dependant.security_scopes_param_name] = SecurityScopes( + scopes=dependant.security_scopes + ) + return SolvedDependency( + values=values, + errors=errors, + background_tasks=background_tasks, + response=response, + dependency_cache=dependency_cache, + ) + + +def _validate_value_with_model_field( + *, field: ModelField, value: Any, values: Dict[str, Any], loc: Tuple[str, ...] +) -> Tuple[Any, List[Any]]: + if value is None: + if field.required: + return None, [get_missing_field_error(loc=loc)] + else: + return deepcopy(field.default), [] + v_, errors_ = field.validate(value, values, loc=loc) + if isinstance(errors_, ErrorWrapper): + return None, [errors_] + elif isinstance(errors_, list): + new_errors = _regenerate_error_with_loc(errors=errors_, loc_prefix=()) + return None, new_errors + else: + return v_, [] + + +def _get_multidict_value( + field: ModelField, values: Mapping[str, Any], alias: Union[str, None] = None +) -> Any: + alias = alias or field.alias + if is_sequence_field(field) and isinstance(values, (ImmutableMultiDict, Headers)): + value = values.getlist(alias) + else: + value = values.get(alias, None) + if ( + value is None + or ( + isinstance(field.field_info, params.Form) + and isinstance(value, str) # For type checks + and value == "" + ) + or (is_sequence_field(field) and len(value) == 0) + ): + if field.required: + return + else: + return deepcopy(field.default) + return value + + +def request_params_to_args( + fields: Sequence[ModelField], + received_params: Union[Mapping[str, Any], QueryParams, Headers], +) -> Tuple[Dict[str, Any], List[Any]]: + values: Dict[str, Any] = {} + errors: List[Dict[str, Any]] = [] + + if not fields: + return values, errors + + first_field = fields[0] + fields_to_extract = fields + single_not_embedded_field = False + if len(fields) == 1 and lenient_issubclass(first_field.type_, BaseModel): + fields_to_extract = get_cached_model_fields(first_field.type_) + single_not_embedded_field = True + + params_to_process: Dict[str, Any] = {} + + processed_keys = set() + + for field in fields_to_extract: + alias = None + if isinstance(received_params, Headers): + # Handle fields extracted from a Pydantic Model for a header, each field + # doesn't have a FieldInfo of type Header with the default convert_underscores=True + convert_underscores = getattr(field.field_info, "convert_underscores", True) + if convert_underscores: + alias = ( + field.alias + if field.alias != field.name + else field.name.replace("_", "-") + ) + value = _get_multidict_value(field, received_params, alias=alias) + if value is not None: + params_to_process[field.name] = value + processed_keys.add(alias or field.alias) + processed_keys.add(field.name) + + for key, value in received_params.items(): + if key not in processed_keys: + params_to_process[key] = value + + if single_not_embedded_field: + field_info = first_field.field_info + assert isinstance( + field_info, params.Param + ), "Params must be subclasses of Param" + loc: Tuple[str, ...] = (field_info.in_.value,) + v_, errors_ = _validate_value_with_model_field( + field=first_field, value=params_to_process, values=values, loc=loc + ) + return {first_field.name: v_}, errors_ + + for field in fields: + value = _get_multidict_value(field, received_params) + field_info = field.field_info + assert isinstance( + field_info, params.Param + ), "Params must be subclasses of Param" + loc = (field_info.in_.value, field.alias) + v_, errors_ = _validate_value_with_model_field( + field=field, value=value, values=values, loc=loc + ) + if errors_: + errors.extend(errors_) + else: + values[field.name] = v_ + return values, errors + + +def _should_embed_body_fields(fields: List[ModelField]) -> bool: + if not fields: + return False + # More than one dependency could have the same field, it would show up as multiple + # fields but it's the same one, so count them by name + body_param_names_set = {field.name for field in fields} + # A top level field has to be a single field, not multiple + if len(body_param_names_set) > 1: + return True + first_field = fields[0] + # If it explicitly specifies it is embedded, it has to be embedded + if getattr(first_field.field_info, "embed", None): + return True + # If it's a Form (or File) field, it has to be a BaseModel to be top level + # otherwise it has to be embedded, so that the key value pair can be extracted + if isinstance(first_field.field_info, params.Form) and not lenient_issubclass( + first_field.type_, BaseModel + ): + return True + return False + + +async def _extract_form_body( + body_fields: List[ModelField], + received_body: FormData, +) -> Dict[str, Any]: + values = {} + first_field = body_fields[0] + first_field_info = first_field.field_info + + for field in body_fields: + value = _get_multidict_value(field, received_body) + if ( + isinstance(first_field_info, params.File) + and is_bytes_field(field) + and isinstance(value, UploadFile) + ): + value = await value.read() + elif ( + is_bytes_sequence_field(field) + and isinstance(first_field_info, params.File) + and value_is_sequence(value) + ): + # For types + assert isinstance(value, sequence_types) # type: ignore[arg-type] + results: List[Union[bytes, str]] = [] + + async def process_fn( + fn: Callable[[], Coroutine[Any, Any, Any]], + ) -> None: + result = await fn() + results.append(result) # noqa: B023 + + async with anyio.create_task_group() as tg: + for sub_value in value: + tg.start_soon(process_fn, sub_value.read) + value = serialize_sequence_value(field=field, value=results) + if value is not None: + values[field.alias] = value + for key, value in received_body.items(): + if key not in values: + values[key] = value + return values + + +async def request_body_to_args( + body_fields: List[ModelField], + received_body: Optional[Union[Dict[str, Any], FormData]], + embed_body_fields: bool, +) -> Tuple[Dict[str, Any], List[Dict[str, Any]]]: + values: Dict[str, Any] = {} + errors: List[Dict[str, Any]] = [] + assert body_fields, "request_body_to_args() should be called with fields" + single_not_embedded_field = len(body_fields) == 1 and not embed_body_fields + first_field = body_fields[0] + body_to_process = received_body + + fields_to_extract: List[ModelField] = body_fields + + if single_not_embedded_field and lenient_issubclass(first_field.type_, BaseModel): + fields_to_extract = get_cached_model_fields(first_field.type_) + + if isinstance(received_body, FormData): + body_to_process = await _extract_form_body(fields_to_extract, received_body) + + if single_not_embedded_field: + loc: Tuple[str, ...] = ("body",) + v_, errors_ = _validate_value_with_model_field( + field=first_field, value=body_to_process, values=values, loc=loc + ) + return {first_field.name: v_}, errors_ + for field in body_fields: + loc = ("body", field.alias) + value: Optional[Any] = None + if body_to_process is not None: + try: + value = body_to_process.get(field.alias) + # If the received body is a list, not a dict + except AttributeError: + errors.append(get_missing_field_error(loc)) + continue + v_, errors_ = _validate_value_with_model_field( + field=field, value=value, values=values, loc=loc + ) + if errors_: + errors.extend(errors_) + else: + values[field.name] = v_ + return values, errors + + +def get_body_field( + *, flat_dependant: Dependant, name: str, embed_body_fields: bool +) -> Optional[ModelField]: + """ + Get a ModelField representing the request body for a path operation, combining + all body parameters into a single field if necessary. + + Used to check if it's form data (with `isinstance(body_field, params.Form)`) + or JSON and to generate the JSON Schema for a request body. + + This is **not** used to validate/parse the request body, that's done with each + individual body parameter. + """ + if not flat_dependant.body_params: + return None + first_param = flat_dependant.body_params[0] + if not embed_body_fields: + return first_param + model_name = "Body_" + name + BodyModel = create_body_model( + fields=flat_dependant.body_params, model_name=model_name + ) + required = any(True for f in flat_dependant.body_params if f.required) + BodyFieldInfo_kwargs: Dict[str, Any] = { + "annotation": BodyModel, + "alias": "body", + } + if not required: + BodyFieldInfo_kwargs["default"] = None + if any(isinstance(f.field_info, params.File) for f in flat_dependant.body_params): + BodyFieldInfo: Type[params.Body] = params.File + elif any(isinstance(f.field_info, params.Form) for f in flat_dependant.body_params): + BodyFieldInfo = params.Form + else: + BodyFieldInfo = params.Body + + body_param_media_types = [ + f.field_info.media_type + for f in flat_dependant.body_params + if isinstance(f.field_info, params.Body) + ] + if len(set(body_param_media_types)) == 1: + BodyFieldInfo_kwargs["media_type"] = body_param_media_types[0] + final_field = create_model_field( + name="body", + type_=BodyModel, + required=required, + alias="body", + field_info=BodyFieldInfo(**BodyFieldInfo_kwargs), + ) + return final_field diff --git a/ocr/.venv/Lib/site-packages/fastapi/encoders.py b/ocr/.venv/Lib/site-packages/fastapi/encoders.py new file mode 100644 index 00000000..451ea076 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/encoders.py @@ -0,0 +1,343 @@ +import dataclasses +import datetime +from collections import defaultdict, deque +from decimal import Decimal +from enum import Enum +from ipaddress import ( + IPv4Address, + IPv4Interface, + IPv4Network, + IPv6Address, + IPv6Interface, + IPv6Network, +) +from pathlib import Path, PurePath +from re import Pattern +from types import GeneratorType +from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union +from uuid import UUID + +from fastapi.types import IncEx +from pydantic import BaseModel +from pydantic.color import Color +from pydantic.networks import AnyUrl, NameEmail +from pydantic.types import SecretBytes, SecretStr +from typing_extensions import Annotated, Doc + +from ._compat import PYDANTIC_V2, UndefinedType, Url, _model_dump + + +# Taken from Pydantic v1 as is +def isoformat(o: Union[datetime.date, datetime.time]) -> str: + return o.isoformat() + + +# Taken from Pydantic v1 as is +# TODO: pv2 should this return strings instead? +def decimal_encoder(dec_value: Decimal) -> Union[int, float]: + """ + Encodes a Decimal as int of there's no exponent, otherwise float + + This is useful when we use ConstrainedDecimal to represent Numeric(x,0) + where a integer (but not int typed) is used. Encoding this as a float + results in failed round-tripping between encode and parse. + Our Id type is a prime example of this. + + >>> decimal_encoder(Decimal("1.0")) + 1.0 + + >>> decimal_encoder(Decimal("1")) + 1 + """ + if dec_value.as_tuple().exponent >= 0: # type: ignore[operator] + return int(dec_value) + else: + return float(dec_value) + + +ENCODERS_BY_TYPE: Dict[Type[Any], Callable[[Any], Any]] = { + bytes: lambda o: o.decode(), + Color: str, + datetime.date: isoformat, + datetime.datetime: isoformat, + datetime.time: isoformat, + datetime.timedelta: lambda td: td.total_seconds(), + Decimal: decimal_encoder, + Enum: lambda o: o.value, + frozenset: list, + deque: list, + GeneratorType: list, + IPv4Address: str, + IPv4Interface: str, + IPv4Network: str, + IPv6Address: str, + IPv6Interface: str, + IPv6Network: str, + NameEmail: str, + Path: str, + Pattern: lambda o: o.pattern, + SecretBytes: str, + SecretStr: str, + set: list, + UUID: str, + Url: str, + AnyUrl: str, +} + + +def generate_encoders_by_class_tuples( + type_encoder_map: Dict[Any, Callable[[Any], Any]], +) -> Dict[Callable[[Any], Any], Tuple[Any, ...]]: + encoders_by_class_tuples: Dict[Callable[[Any], Any], Tuple[Any, ...]] = defaultdict( + tuple + ) + for type_, encoder in type_encoder_map.items(): + encoders_by_class_tuples[encoder] += (type_,) + return encoders_by_class_tuples + + +encoders_by_class_tuples = generate_encoders_by_class_tuples(ENCODERS_BY_TYPE) + + +def jsonable_encoder( + obj: Annotated[ + Any, + Doc( + """ + The input object to convert to JSON. + """ + ), + ], + include: Annotated[ + Optional[IncEx], + Doc( + """ + Pydantic's `include` parameter, passed to Pydantic models to set the + fields to include. + """ + ), + ] = None, + exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Pydantic's `exclude` parameter, passed to Pydantic models to set the + fields to exclude. + """ + ), + ] = None, + by_alias: Annotated[ + bool, + Doc( + """ + Pydantic's `by_alias` parameter, passed to Pydantic models to define if + the output should use the alias names (when provided) or the Python + attribute names. In an API, if you set an alias, it's probably because you + want to use it in the result, so you probably want to leave this set to + `True`. + """ + ), + ] = True, + exclude_unset: Annotated[ + bool, + Doc( + """ + Pydantic's `exclude_unset` parameter, passed to Pydantic models to define + if it should exclude from the output the fields that were not explicitly + set (and that only had their default values). + """ + ), + ] = False, + exclude_defaults: Annotated[ + bool, + Doc( + """ + Pydantic's `exclude_defaults` parameter, passed to Pydantic models to define + if it should exclude from the output the fields that had the same default + value, even when they were explicitly set. + """ + ), + ] = False, + exclude_none: Annotated[ + bool, + Doc( + """ + Pydantic's `exclude_none` parameter, passed to Pydantic models to define + if it should exclude from the output any fields that have a `None` value. + """ + ), + ] = False, + custom_encoder: Annotated[ + Optional[Dict[Any, Callable[[Any], Any]]], + Doc( + """ + Pydantic's `custom_encoder` parameter, passed to Pydantic models to define + a custom encoder. + """ + ), + ] = None, + sqlalchemy_safe: Annotated[ + bool, + Doc( + """ + Exclude from the output any fields that start with the name `_sa`. + + This is mainly a hack for compatibility with SQLAlchemy objects, they + store internal SQLAlchemy-specific state in attributes named with `_sa`, + and those objects can't (and shouldn't be) serialized to JSON. + """ + ), + ] = True, +) -> Any: + """ + Convert any object to something that can be encoded in JSON. + + This is used internally by FastAPI to make sure anything you return can be + encoded as JSON before it is sent to the client. + + You can also use it yourself, for example to convert objects before saving them + in a database that supports only JSON. + + Read more about it in the + [FastAPI docs for JSON Compatible Encoder](https://fastapi.tiangolo.com/tutorial/encoder/). + """ + custom_encoder = custom_encoder or {} + if custom_encoder: + if type(obj) in custom_encoder: + return custom_encoder[type(obj)](obj) + else: + for encoder_type, encoder_instance in custom_encoder.items(): + if isinstance(obj, encoder_type): + return encoder_instance(obj) + if include is not None and not isinstance(include, (set, dict)): + include = set(include) + if exclude is not None and not isinstance(exclude, (set, dict)): + exclude = set(exclude) + if isinstance(obj, BaseModel): + # TODO: remove when deprecating Pydantic v1 + encoders: Dict[Any, Any] = {} + if not PYDANTIC_V2: + encoders = getattr(obj.__config__, "json_encoders", {}) # type: ignore[attr-defined] + if custom_encoder: + encoders.update(custom_encoder) + obj_dict = _model_dump( + obj, + mode="json", + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_none=exclude_none, + exclude_defaults=exclude_defaults, + ) + if "__root__" in obj_dict: + obj_dict = obj_dict["__root__"] + return jsonable_encoder( + obj_dict, + exclude_none=exclude_none, + exclude_defaults=exclude_defaults, + # TODO: remove when deprecating Pydantic v1 + custom_encoder=encoders, + sqlalchemy_safe=sqlalchemy_safe, + ) + if dataclasses.is_dataclass(obj): + obj_dict = dataclasses.asdict(obj) + return jsonable_encoder( + obj_dict, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + custom_encoder=custom_encoder, + sqlalchemy_safe=sqlalchemy_safe, + ) + if isinstance(obj, Enum): + return obj.value + if isinstance(obj, PurePath): + return str(obj) + if isinstance(obj, (str, int, float, type(None))): + return obj + if isinstance(obj, UndefinedType): + return None + if isinstance(obj, dict): + encoded_dict = {} + allowed_keys = set(obj.keys()) + if include is not None: + allowed_keys &= set(include) + if exclude is not None: + allowed_keys -= set(exclude) + for key, value in obj.items(): + if ( + ( + not sqlalchemy_safe + or (not isinstance(key, str)) + or (not key.startswith("_sa")) + ) + and (value is not None or not exclude_none) + and key in allowed_keys + ): + encoded_key = jsonable_encoder( + key, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_none=exclude_none, + custom_encoder=custom_encoder, + sqlalchemy_safe=sqlalchemy_safe, + ) + encoded_value = jsonable_encoder( + value, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_none=exclude_none, + custom_encoder=custom_encoder, + sqlalchemy_safe=sqlalchemy_safe, + ) + encoded_dict[encoded_key] = encoded_value + return encoded_dict + if isinstance(obj, (list, set, frozenset, GeneratorType, tuple, deque)): + encoded_list = [] + for item in obj: + encoded_list.append( + jsonable_encoder( + item, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + custom_encoder=custom_encoder, + sqlalchemy_safe=sqlalchemy_safe, + ) + ) + return encoded_list + + if type(obj) in ENCODERS_BY_TYPE: + return ENCODERS_BY_TYPE[type(obj)](obj) + for encoder, classes_tuple in encoders_by_class_tuples.items(): + if isinstance(obj, classes_tuple): + return encoder(obj) + + try: + data = dict(obj) + except Exception as e: + errors: List[Exception] = [] + errors.append(e) + try: + data = vars(obj) + except Exception as e: + errors.append(e) + raise ValueError(errors) from e + return jsonable_encoder( + data, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + custom_encoder=custom_encoder, + sqlalchemy_safe=sqlalchemy_safe, + ) diff --git a/ocr/.venv/Lib/site-packages/fastapi/exception_handlers.py b/ocr/.venv/Lib/site-packages/fastapi/exception_handlers.py new file mode 100644 index 00000000..6c2ba7fe --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/exception_handlers.py @@ -0,0 +1,34 @@ +from fastapi.encoders import jsonable_encoder +from fastapi.exceptions import RequestValidationError, WebSocketRequestValidationError +from fastapi.utils import is_body_allowed_for_status_code +from fastapi.websockets import WebSocket +from starlette.exceptions import HTTPException +from starlette.requests import Request +from starlette.responses import JSONResponse, Response +from starlette.status import HTTP_422_UNPROCESSABLE_ENTITY, WS_1008_POLICY_VIOLATION + + +async def http_exception_handler(request: Request, exc: HTTPException) -> Response: + headers = getattr(exc, "headers", None) + if not is_body_allowed_for_status_code(exc.status_code): + return Response(status_code=exc.status_code, headers=headers) + return JSONResponse( + {"detail": exc.detail}, status_code=exc.status_code, headers=headers + ) + + +async def request_validation_exception_handler( + request: Request, exc: RequestValidationError +) -> JSONResponse: + return JSONResponse( + status_code=HTTP_422_UNPROCESSABLE_ENTITY, + content={"detail": jsonable_encoder(exc.errors())}, + ) + + +async def websocket_request_validation_exception_handler( + websocket: WebSocket, exc: WebSocketRequestValidationError +) -> None: + await websocket.close( + code=WS_1008_POLICY_VIOLATION, reason=jsonable_encoder(exc.errors()) + ) diff --git a/ocr/.venv/Lib/site-packages/fastapi/exceptions.py b/ocr/.venv/Lib/site-packages/fastapi/exceptions.py new file mode 100644 index 00000000..44d4ada8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/exceptions.py @@ -0,0 +1,176 @@ +from typing import Any, Dict, Optional, Sequence, Type, Union + +from pydantic import BaseModel, create_model +from starlette.exceptions import HTTPException as StarletteHTTPException +from starlette.exceptions import WebSocketException as StarletteWebSocketException +from typing_extensions import Annotated, Doc + + +class HTTPException(StarletteHTTPException): + """ + An HTTP exception you can raise in your own code to show errors to the client. + + This is for client errors, invalid authentication, invalid data, etc. Not for server + errors in your code. + + Read more about it in the + [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). + + ## Example + + ```python + from fastapi import FastAPI, HTTPException + + app = FastAPI() + + items = {"foo": "The Foo Wrestlers"} + + + @app.get("/items/{item_id}") + async def read_item(item_id: str): + if item_id not in items: + raise HTTPException(status_code=404, detail="Item not found") + return {"item": items[item_id]} + ``` + """ + + def __init__( + self, + status_code: Annotated[ + int, + Doc( + """ + HTTP status code to send to the client. + """ + ), + ], + detail: Annotated[ + Any, + Doc( + """ + Any data to be sent to the client in the `detail` key of the JSON + response. + """ + ), + ] = None, + headers: Annotated[ + Optional[Dict[str, str]], + Doc( + """ + Any headers to send to the client in the response. + """ + ), + ] = None, + ) -> None: + super().__init__(status_code=status_code, detail=detail, headers=headers) + + +class WebSocketException(StarletteWebSocketException): + """ + A WebSocket exception you can raise in your own code to show errors to the client. + + This is for client errors, invalid authentication, invalid data, etc. Not for server + errors in your code. + + Read more about it in the + [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). + + ## Example + + ```python + from typing import Annotated + + from fastapi import ( + Cookie, + FastAPI, + WebSocket, + WebSocketException, + status, + ) + + app = FastAPI() + + @app.websocket("/items/{item_id}/ws") + async def websocket_endpoint( + *, + websocket: WebSocket, + session: Annotated[str | None, Cookie()] = None, + item_id: str, + ): + if session is None: + raise WebSocketException(code=status.WS_1008_POLICY_VIOLATION) + await websocket.accept() + while True: + data = await websocket.receive_text() + await websocket.send_text(f"Session cookie is: {session}") + await websocket.send_text(f"Message text was: {data}, for item ID: {item_id}") + ``` + """ + + def __init__( + self, + code: Annotated[ + int, + Doc( + """ + A closing code from the + [valid codes defined in the specification](https://datatracker.ietf.org/doc/html/rfc6455#section-7.4.1). + """ + ), + ], + reason: Annotated[ + Union[str, None], + Doc( + """ + The reason to close the WebSocket connection. + + It is UTF-8-encoded data. The interpretation of the reason is up to the + application, it is not specified by the WebSocket specification. + + It could contain text that could be human-readable or interpretable + by the client code, etc. + """ + ), + ] = None, + ) -> None: + super().__init__(code=code, reason=reason) + + +RequestErrorModel: Type[BaseModel] = create_model("Request") +WebSocketErrorModel: Type[BaseModel] = create_model("WebSocket") + + +class FastAPIError(RuntimeError): + """ + A generic, FastAPI-specific error. + """ + + +class ValidationException(Exception): + def __init__(self, errors: Sequence[Any]) -> None: + self._errors = errors + + def errors(self) -> Sequence[Any]: + return self._errors + + +class RequestValidationError(ValidationException): + def __init__(self, errors: Sequence[Any], *, body: Any = None) -> None: + super().__init__(errors) + self.body = body + + +class WebSocketRequestValidationError(ValidationException): + pass + + +class ResponseValidationError(ValidationException): + def __init__(self, errors: Sequence[Any], *, body: Any = None) -> None: + super().__init__(errors) + self.body = body + + def __str__(self) -> str: + message = f"{len(self._errors)} validation errors:\n" + for err in self._errors: + message += f" {err}\n" + return message diff --git a/ocr/.venv/Lib/site-packages/fastapi/logger.py b/ocr/.venv/Lib/site-packages/fastapi/logger.py new file mode 100644 index 00000000..5b2c4ad5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/logger.py @@ -0,0 +1,3 @@ +import logging + +logger = logging.getLogger("fastapi") diff --git a/ocr/.venv/Lib/site-packages/fastapi/middleware/__init__.py b/ocr/.venv/Lib/site-packages/fastapi/middleware/__init__.py new file mode 100644 index 00000000..620296d5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/middleware/__init__.py @@ -0,0 +1 @@ +from starlette.middleware import Middleware as Middleware diff --git a/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..96c25237973a02f3cae5f46b04fcc719e230a5d4 GIT binary patch literal 244 zcmd1j<>g`k0(44TX@fuanW zjJLRaGgDG>Qp*#IQvEcUqC|>I5{q(DOG;Apa^Vt1AhT976fpxSF!3wF*(xTqIJKxa zCMzp7KQBGTCAB!aB)=fWzaTX)JTV7oLcF7AOn!1vj9yu4URjJ!W>QRXW=X1UL1J=t xVtQ(EOj;t)s)9^?gf;r{@tJvg`k0(44TX@fuanW zjJNol{eyyiGgDG>Qp*#IQvEcUq9lt;5{q(DOG;Apa^Vts$@xXaMIb|0G88cbDKPOX z#@Q++v^ce>I3_DAH9s#s#wE2lyClCL#=jsnFFY{^XiU7LXH0%_QH)+$YF=54Pi9g~ zab`)XZb4#lc4B&JaZFkw(7u99eS}^5AiMMmDsOSvg`k0(44TX@fuanW zjJNpQqcRJ8GgDG>Qp*#IQvEcUq9lt;5{q(DOG;Apa^Vts=~bBpMIb|0G88cbDKPOX z#@Q++v^ce>I3_DAH9s#s#wE2lyClCL#=jsnFFY{^XiU7LXH0%_QH)+$YF=54Pi9g~ zab`)XZb4#lc4B&JaZFkw(7u99eS}^5AiMMmDsOSv AUH||9 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a9c19f398475f116253802e4e29da1ff299d3721 GIT binary patch literal 276 zcmd1j<>g`k0(44TX@fuanW zjJL!+LP7$9gHls6i&B$Id^1y0a#G6^i&FhGnWB`6OA?E6QcFrw^>X17dKo1p1;s^B z4MiYpRx%VZ11T`^E7jR5CbT%Us5mAoD>XkaJ;o)qIJ+djAjZESH7`6d2WVcrqi0Nh za#4(4S!!Ncj8A4#OmSvOs%}AIa&}^RYH>_jBGBT3Onro<`Y4v_6;$5hu*uC&Da}c> NV+7h<404440|3sfPksOZ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0dae39a6ad83f3ba1acb840499482cc1a4a48354 GIT binary patch literal 270 zcmd1j<>g`k0(44TX@fuanW zjJHHXib{)1Qd2zgi%WbnQ&MtL%M*)I{WO`P6pBj{i*iy+N>cT5;Szc!5ak&_XkaJ;o)qIJ+djAjZESH7`6d2WVQnqi0Nha#4(4 zS!!Ncj8A4#OmSvOs%}AIa&}^RYH>_jBGB4`Onrov`bbvl6;$5hu*uC&Da}c>V+7h; J403}20{}TiO}+pC literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e65133f988f4b17d30bead86162a2eb7b9854b45 GIT binary patch literal 249 zcmd1j<>g`k0(44TX@fuanW zjJNp0gWWxSGgDG>Qp*#IQvEcUq9lt;5{q(DOG;Apa^Vts<;CflMIb|0G88cbDKPOX z#@Q++v^ce>I3_DAH9s#s#wE2lyClCL#=jsnFFY{^XiU7LXH0%_QH)+$YF=54Pi9g~ zab`)XZb4#lc4B&JaZFkw(7u99eS}^5AiMMmDsOSvg`k0Gw;(Y& zJ25@AI3_KzxFoS4Q$HW514PHiXXa&=#K-FuRNmsS$<0qG%}KQbSzF8mBv=>#I8HDY literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..904e4e8940c372899b3920456c67ed63626cbee0 GIT binary patch literal 344 zcmZutO-sW-5Z!!OL$C)$Z{9rhU~?BK#%5~*sR?FFH7tfTS=+QpHe_SLiho1!?8(2h zSO0}4H=aB=FmL9)Vc_vtzi$Fr=G#I3F6UQA{+24qg=~H(VF@zup~N6lVkJ{!HPa$6 z&__La61od*M`+;;2|WxVBzg|?A%a4?f=KLyHX6IzqZ2D-Wz8yDwcO(Al9q&9+v9)b zmy%_)c)cEI@%|JdH*lh4?jbk144k{zyn&M>l;GXQd)&aCXq(s`W@&?m8(M9!pFd!pxAe3o>6$Dk$B%@!q|PlS fKf0N+N($2duznWCxitAy(2>$*)CFMxT``m&{vTpp literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a02c0bb1658fb7bedc41925478143497857bdf9 GIT binary patch literal 9578 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5cc3bef352a4a02702936023598fdf4091dc64c GIT binary patch literal 16739 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 IN&oNv1J=fRJpcdz literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/constants.py b/ocr/.venv/Lib/site-packages/fastapi/openapi/constants.py new file mode 100644 index 00000000..d724ee3c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/openapi/constants.py @@ -0,0 +1,3 @@ +METHODS_WITH_BODY = {"GET", "HEAD", "POST", "PUT", "DELETE", "PATCH"} +REF_PREFIX = "#/components/schemas/" +REF_TEMPLATE = "#/components/schemas/{model}" diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/docs.py b/ocr/.venv/Lib/site-packages/fastapi/openapi/docs.py new file mode 100644 index 00000000..c2ec358d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/openapi/docs.py @@ -0,0 +1,344 @@ +import json +from typing import Any, Dict, Optional + +from fastapi.encoders import jsonable_encoder +from starlette.responses import HTMLResponse +from typing_extensions import Annotated, Doc + +swagger_ui_default_parameters: Annotated[ + Dict[str, Any], + Doc( + """ + Default configurations for Swagger UI. + + You can use it as a template to add any other configurations needed. + """ + ), +] = { + "dom_id": "#swagger-ui", + "layout": "BaseLayout", + "deepLinking": True, + "showExtensions": True, + "showCommonExtensions": True, +} + + +def get_swagger_ui_html( + *, + openapi_url: Annotated[ + str, + Doc( + """ + The OpenAPI URL that Swagger UI should load and use. + + This is normally done automatically by FastAPI using the default URL + `/openapi.json`. + """ + ), + ], + title: Annotated[ + str, + Doc( + """ + The HTML `` content, normally shown in the browser tab. + """ + ), + ], + swagger_js_url: Annotated[ + str, + Doc( + """ + The URL to use to load the Swagger UI JavaScript. + + It is normally set to a CDN URL. + """ + ), + ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js", + swagger_css_url: Annotated[ + str, + Doc( + """ + The URL to use to load the Swagger UI CSS. + + It is normally set to a CDN URL. + """ + ), + ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css", + swagger_favicon_url: Annotated[ + str, + Doc( + """ + The URL of the favicon to use. It is normally shown in the browser tab. + """ + ), + ] = "https://fastapi.tiangolo.com/img/favicon.png", + oauth2_redirect_url: Annotated[ + Optional[str], + Doc( + """ + The OAuth2 redirect URL, it is normally automatically handled by FastAPI. + """ + ), + ] = None, + init_oauth: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + A dictionary with Swagger UI OAuth2 initialization configurations. + """ + ), + ] = None, + swagger_ui_parameters: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Configuration parameters for Swagger UI. + + It defaults to [swagger_ui_default_parameters][fastapi.openapi.docs.swagger_ui_default_parameters]. + """ + ), + ] = None, +) -> HTMLResponse: + """ + Generate and return the HTML that loads Swagger UI for the interactive + API docs (normally served at `/docs`). + + You would only call this function yourself if you needed to override some parts, + for example the URLs to use to load Swagger UI's JavaScript and CSS. + + Read more about it in the + [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/) + and the [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/). + """ + current_swagger_ui_parameters = swagger_ui_default_parameters.copy() + if swagger_ui_parameters: + current_swagger_ui_parameters.update(swagger_ui_parameters) + + html = f""" + <!DOCTYPE html> + <html> + <head> + <link type="text/css" rel="stylesheet" href="{swagger_css_url}"> + <link rel="shortcut icon" href="{swagger_favicon_url}"> + <title>{title} + + +

+
+ + + + + + """ + return HTMLResponse(html) + + +def get_redoc_html( + *, + openapi_url: Annotated[ + str, + Doc( + """ + The OpenAPI URL that ReDoc should load and use. + + This is normally done automatically by FastAPI using the default URL + `/openapi.json`. + """ + ), + ], + title: Annotated[ + str, + Doc( + """ + The HTML `` content, normally shown in the browser tab. + """ + ), + ], + redoc_js_url: Annotated[ + str, + Doc( + """ + The URL to use to load the ReDoc JavaScript. + + It is normally set to a CDN URL. + """ + ), + ] = "https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js", + redoc_favicon_url: Annotated[ + str, + Doc( + """ + The URL of the favicon to use. It is normally shown in the browser tab. + """ + ), + ] = "https://fastapi.tiangolo.com/img/favicon.png", + with_google_fonts: Annotated[ + bool, + Doc( + """ + Load and use Google Fonts. + """ + ), + ] = True, +) -> HTMLResponse: + """ + Generate and return the HTML response that loads ReDoc for the alternative + API docs (normally served at `/redoc`). + + You would only call this function yourself if you needed to override some parts, + for example the URLs to use to load ReDoc's JavaScript and CSS. + + Read more about it in the + [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/). + """ + html = f""" + <!DOCTYPE html> + <html> + <head> + <title>{title} + + + + """ + if with_google_fonts: + html += """ + + """ + html += f""" + + + + + + + + + + + """ + return HTMLResponse(html) + + +def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse: + """ + Generate the HTML response with the OAuth2 redirection for Swagger UI. + + You normally don't need to use or change this. + """ + # copied from https://github.com/swagger-api/swagger-ui/blob/v4.14.0/dist/oauth2-redirect.html + html = """ + + + + Swagger UI: OAuth2 Redirect + + + + + + """ + return HTMLResponse(content=html) diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/models.py b/ocr/.venv/Lib/site-packages/fastapi/openapi/models.py new file mode 100644 index 00000000..ed07b40f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/openapi/models.py @@ -0,0 +1,445 @@ +from enum import Enum +from typing import Any, Callable, Dict, Iterable, List, Optional, Set, Type, Union + +from fastapi._compat import ( + PYDANTIC_V2, + CoreSchema, + GetJsonSchemaHandler, + JsonSchemaValue, + _model_rebuild, + with_info_plain_validator_function, +) +from fastapi.logger import logger +from pydantic import AnyUrl, BaseModel, Field +from typing_extensions import Annotated, Literal, TypedDict +from typing_extensions import deprecated as typing_deprecated + +try: + import email_validator + + assert email_validator # make autoflake ignore the unused import + from pydantic import EmailStr +except ImportError: # pragma: no cover + + class EmailStr(str): # type: ignore + @classmethod + def __get_validators__(cls) -> Iterable[Callable[..., Any]]: + yield cls.validate + + @classmethod + def validate(cls, v: Any) -> str: + logger.warning( + "email-validator not installed, email fields will be treated as str.\n" + "To install, run: pip install email-validator" + ) + return str(v) + + @classmethod + def _validate(cls, __input_value: Any, _: Any) -> str: + logger.warning( + "email-validator not installed, email fields will be treated as str.\n" + "To install, run: pip install email-validator" + ) + return str(__input_value) + + @classmethod + def __get_pydantic_json_schema__( + cls, core_schema: CoreSchema, handler: GetJsonSchemaHandler + ) -> JsonSchemaValue: + return {"type": "string", "format": "email"} + + @classmethod + def __get_pydantic_core_schema__( + cls, source: Type[Any], handler: Callable[[Any], CoreSchema] + ) -> CoreSchema: + return with_info_plain_validator_function(cls._validate) + + +class BaseModelWithConfig(BaseModel): + if PYDANTIC_V2: + model_config = {"extra": "allow"} + + else: + + class Config: + extra = "allow" + + +class Contact(BaseModelWithConfig): + name: Optional[str] = None + url: Optional[AnyUrl] = None + email: Optional[EmailStr] = None + + +class License(BaseModelWithConfig): + name: str + identifier: Optional[str] = None + url: Optional[AnyUrl] = None + + +class Info(BaseModelWithConfig): + title: str + summary: Optional[str] = None + description: Optional[str] = None + termsOfService: Optional[str] = None + contact: Optional[Contact] = None + license: Optional[License] = None + version: str + + +class ServerVariable(BaseModelWithConfig): + enum: Annotated[Optional[List[str]], Field(min_length=1)] = None + default: str + description: Optional[str] = None + + +class Server(BaseModelWithConfig): + url: Union[AnyUrl, str] + description: Optional[str] = None + variables: Optional[Dict[str, ServerVariable]] = None + + +class Reference(BaseModel): + ref: str = Field(alias="$ref") + + +class Discriminator(BaseModel): + propertyName: str + mapping: Optional[Dict[str, str]] = None + + +class XML(BaseModelWithConfig): + name: Optional[str] = None + namespace: Optional[str] = None + prefix: Optional[str] = None + attribute: Optional[bool] = None + wrapped: Optional[bool] = None + + +class ExternalDocumentation(BaseModelWithConfig): + description: Optional[str] = None + url: AnyUrl + + +class Schema(BaseModelWithConfig): + # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-the-json-schema-core-vocabu + # Core Vocabulary + schema_: Optional[str] = Field(default=None, alias="$schema") + vocabulary: Optional[str] = Field(default=None, alias="$vocabulary") + id: Optional[str] = Field(default=None, alias="$id") + anchor: Optional[str] = Field(default=None, alias="$anchor") + dynamicAnchor: Optional[str] = Field(default=None, alias="$dynamicAnchor") + ref: Optional[str] = Field(default=None, alias="$ref") + dynamicRef: Optional[str] = Field(default=None, alias="$dynamicRef") + defs: Optional[Dict[str, "SchemaOrBool"]] = Field(default=None, alias="$defs") + comment: Optional[str] = Field(default=None, alias="$comment") + # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s + # A Vocabulary for Applying Subschemas + allOf: Optional[List["SchemaOrBool"]] = None + anyOf: Optional[List["SchemaOrBool"]] = None + oneOf: Optional[List["SchemaOrBool"]] = None + not_: Optional["SchemaOrBool"] = Field(default=None, alias="not") + if_: Optional["SchemaOrBool"] = Field(default=None, alias="if") + then: Optional["SchemaOrBool"] = None + else_: Optional["SchemaOrBool"] = Field(default=None, alias="else") + dependentSchemas: Optional[Dict[str, "SchemaOrBool"]] = None + prefixItems: Optional[List["SchemaOrBool"]] = None + # TODO: uncomment and remove below when deprecating Pydantic v1 + # It generales a list of schemas for tuples, before prefixItems was available + # items: Optional["SchemaOrBool"] = None + items: Optional[Union["SchemaOrBool", List["SchemaOrBool"]]] = None + contains: Optional["SchemaOrBool"] = None + properties: Optional[Dict[str, "SchemaOrBool"]] = None + patternProperties: Optional[Dict[str, "SchemaOrBool"]] = None + additionalProperties: Optional["SchemaOrBool"] = None + propertyNames: Optional["SchemaOrBool"] = None + unevaluatedItems: Optional["SchemaOrBool"] = None + unevaluatedProperties: Optional["SchemaOrBool"] = None + # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-structural + # A Vocabulary for Structural Validation + type: Optional[str] = None + enum: Optional[List[Any]] = None + const: Optional[Any] = None + multipleOf: Optional[float] = Field(default=None, gt=0) + maximum: Optional[float] = None + exclusiveMaximum: Optional[float] = None + minimum: Optional[float] = None + exclusiveMinimum: Optional[float] = None + maxLength: Optional[int] = Field(default=None, ge=0) + minLength: Optional[int] = Field(default=None, ge=0) + pattern: Optional[str] = None + maxItems: Optional[int] = Field(default=None, ge=0) + minItems: Optional[int] = Field(default=None, ge=0) + uniqueItems: Optional[bool] = None + maxContains: Optional[int] = Field(default=None, ge=0) + minContains: Optional[int] = Field(default=None, ge=0) + maxProperties: Optional[int] = Field(default=None, ge=0) + minProperties: Optional[int] = Field(default=None, ge=0) + required: Optional[List[str]] = None + dependentRequired: Optional[Dict[str, Set[str]]] = None + # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-vocabularies-for-semantic-c + # Vocabularies for Semantic Content With "format" + format: Optional[str] = None + # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-the-conten + # A Vocabulary for the Contents of String-Encoded Data + contentEncoding: Optional[str] = None + contentMediaType: Optional[str] = None + contentSchema: Optional["SchemaOrBool"] = None + # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-basic-meta + # A Vocabulary for Basic Meta-Data Annotations + title: Optional[str] = None + description: Optional[str] = None + default: Optional[Any] = None + deprecated: Optional[bool] = None + readOnly: Optional[bool] = None + writeOnly: Optional[bool] = None + examples: Optional[List[Any]] = None + # Ref: OpenAPI 3.1.0: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#schema-object + # Schema Object + discriminator: Optional[Discriminator] = None + xml: Optional[XML] = None + externalDocs: Optional[ExternalDocumentation] = None + example: Annotated[ + Optional[Any], + typing_deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = None + + +# Ref: https://json-schema.org/draft/2020-12/json-schema-core.html#name-json-schema-documents +# A JSON Schema MUST be an object or a boolean. +SchemaOrBool = Union[Schema, bool] + + +class Example(TypedDict, total=False): + summary: Optional[str] + description: Optional[str] + value: Optional[Any] + externalValue: Optional[AnyUrl] + + if PYDANTIC_V2: # type: ignore [misc] + __pydantic_config__ = {"extra": "allow"} + + else: + + class Config: + extra = "allow" + + +class ParameterInType(Enum): + query = "query" + header = "header" + path = "path" + cookie = "cookie" + + +class Encoding(BaseModelWithConfig): + contentType: Optional[str] = None + headers: Optional[Dict[str, Union["Header", Reference]]] = None + style: Optional[str] = None + explode: Optional[bool] = None + allowReserved: Optional[bool] = None + + +class MediaType(BaseModelWithConfig): + schema_: Optional[Union[Schema, Reference]] = Field(default=None, alias="schema") + example: Optional[Any] = None + examples: Optional[Dict[str, Union[Example, Reference]]] = None + encoding: Optional[Dict[str, Encoding]] = None + + +class ParameterBase(BaseModelWithConfig): + description: Optional[str] = None + required: Optional[bool] = None + deprecated: Optional[bool] = None + # Serialization rules for simple scenarios + style: Optional[str] = None + explode: Optional[bool] = None + allowReserved: Optional[bool] = None + schema_: Optional[Union[Schema, Reference]] = Field(default=None, alias="schema") + example: Optional[Any] = None + examples: Optional[Dict[str, Union[Example, Reference]]] = None + # Serialization rules for more complex scenarios + content: Optional[Dict[str, MediaType]] = None + + +class Parameter(ParameterBase): + name: str + in_: ParameterInType = Field(alias="in") + + +class Header(ParameterBase): + pass + + +class RequestBody(BaseModelWithConfig): + description: Optional[str] = None + content: Dict[str, MediaType] + required: Optional[bool] = None + + +class Link(BaseModelWithConfig): + operationRef: Optional[str] = None + operationId: Optional[str] = None + parameters: Optional[Dict[str, Union[Any, str]]] = None + requestBody: Optional[Union[Any, str]] = None + description: Optional[str] = None + server: Optional[Server] = None + + +class Response(BaseModelWithConfig): + description: str + headers: Optional[Dict[str, Union[Header, Reference]]] = None + content: Optional[Dict[str, MediaType]] = None + links: Optional[Dict[str, Union[Link, Reference]]] = None + + +class Operation(BaseModelWithConfig): + tags: Optional[List[str]] = None + summary: Optional[str] = None + description: Optional[str] = None + externalDocs: Optional[ExternalDocumentation] = None + operationId: Optional[str] = None + parameters: Optional[List[Union[Parameter, Reference]]] = None + requestBody: Optional[Union[RequestBody, Reference]] = None + # Using Any for Specification Extensions + responses: Optional[Dict[str, Union[Response, Any]]] = None + callbacks: Optional[Dict[str, Union[Dict[str, "PathItem"], Reference]]] = None + deprecated: Optional[bool] = None + security: Optional[List[Dict[str, List[str]]]] = None + servers: Optional[List[Server]] = None + + +class PathItem(BaseModelWithConfig): + ref: Optional[str] = Field(default=None, alias="$ref") + summary: Optional[str] = None + description: Optional[str] = None + get: Optional[Operation] = None + put: Optional[Operation] = None + post: Optional[Operation] = None + delete: Optional[Operation] = None + options: Optional[Operation] = None + head: Optional[Operation] = None + patch: Optional[Operation] = None + trace: Optional[Operation] = None + servers: Optional[List[Server]] = None + parameters: Optional[List[Union[Parameter, Reference]]] = None + + +class SecuritySchemeType(Enum): + apiKey = "apiKey" + http = "http" + oauth2 = "oauth2" + openIdConnect = "openIdConnect" + + +class SecurityBase(BaseModelWithConfig): + type_: SecuritySchemeType = Field(alias="type") + description: Optional[str] = None + + +class APIKeyIn(Enum): + query = "query" + header = "header" + cookie = "cookie" + + +class APIKey(SecurityBase): + type_: SecuritySchemeType = Field(default=SecuritySchemeType.apiKey, alias="type") + in_: APIKeyIn = Field(alias="in") + name: str + + +class HTTPBase(SecurityBase): + type_: SecuritySchemeType = Field(default=SecuritySchemeType.http, alias="type") + scheme: str + + +class HTTPBearer(HTTPBase): + scheme: Literal["bearer"] = "bearer" + bearerFormat: Optional[str] = None + + +class OAuthFlow(BaseModelWithConfig): + refreshUrl: Optional[str] = None + scopes: Dict[str, str] = {} + + +class OAuthFlowImplicit(OAuthFlow): + authorizationUrl: str + + +class OAuthFlowPassword(OAuthFlow): + tokenUrl: str + + +class OAuthFlowClientCredentials(OAuthFlow): + tokenUrl: str + + +class OAuthFlowAuthorizationCode(OAuthFlow): + authorizationUrl: str + tokenUrl: str + + +class OAuthFlows(BaseModelWithConfig): + implicit: Optional[OAuthFlowImplicit] = None + password: Optional[OAuthFlowPassword] = None + clientCredentials: Optional[OAuthFlowClientCredentials] = None + authorizationCode: Optional[OAuthFlowAuthorizationCode] = None + + +class OAuth2(SecurityBase): + type_: SecuritySchemeType = Field(default=SecuritySchemeType.oauth2, alias="type") + flows: OAuthFlows + + +class OpenIdConnect(SecurityBase): + type_: SecuritySchemeType = Field( + default=SecuritySchemeType.openIdConnect, alias="type" + ) + openIdConnectUrl: str + + +SecurityScheme = Union[APIKey, HTTPBase, OAuth2, OpenIdConnect, HTTPBearer] + + +class Components(BaseModelWithConfig): + schemas: Optional[Dict[str, Union[Schema, Reference]]] = None + responses: Optional[Dict[str, Union[Response, Reference]]] = None + parameters: Optional[Dict[str, Union[Parameter, Reference]]] = None + examples: Optional[Dict[str, Union[Example, Reference]]] = None + requestBodies: Optional[Dict[str, Union[RequestBody, Reference]]] = None + headers: Optional[Dict[str, Union[Header, Reference]]] = None + securitySchemes: Optional[Dict[str, Union[SecurityScheme, Reference]]] = None + links: Optional[Dict[str, Union[Link, Reference]]] = None + # Using Any for Specification Extensions + callbacks: Optional[Dict[str, Union[Dict[str, PathItem], Reference, Any]]] = None + pathItems: Optional[Dict[str, Union[PathItem, Reference]]] = None + + +class Tag(BaseModelWithConfig): + name: str + description: Optional[str] = None + externalDocs: Optional[ExternalDocumentation] = None + + +class OpenAPI(BaseModelWithConfig): + openapi: str + info: Info + jsonSchemaDialect: Optional[str] = None + servers: Optional[List[Server]] = None + # Using Any for Specification Extensions + paths: Optional[Dict[str, Union[PathItem, Any]]] = None + webhooks: Optional[Dict[str, Union[PathItem, Reference]]] = None + components: Optional[Components] = None + security: Optional[List[Dict[str, List[str]]]] = None + tags: Optional[List[Tag]] = None + externalDocs: Optional[ExternalDocumentation] = None + + +_model_rebuild(Schema) +_model_rebuild(Operation) +_model_rebuild(Encoding) diff --git a/ocr/.venv/Lib/site-packages/fastapi/openapi/utils.py b/ocr/.venv/Lib/site-packages/fastapi/openapi/utils.py new file mode 100644 index 00000000..947eca94 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/openapi/utils.py @@ -0,0 +1,548 @@ +import http.client +import inspect +import warnings +from typing import Any, Dict, List, Optional, Sequence, Set, Tuple, Type, Union, cast + +from fastapi import routing +from fastapi._compat import ( + GenerateJsonSchema, + JsonSchemaValue, + ModelField, + Undefined, + get_compat_model_name_map, + get_definitions, + get_schema_from_model_field, + lenient_issubclass, +) +from fastapi.datastructures import DefaultPlaceholder +from fastapi.dependencies.models import Dependant +from fastapi.dependencies.utils import ( + _get_flat_fields_from_params, + get_flat_dependant, + get_flat_params, +) +from fastapi.encoders import jsonable_encoder +from fastapi.openapi.constants import METHODS_WITH_BODY, REF_PREFIX, REF_TEMPLATE +from fastapi.openapi.models import OpenAPI +from fastapi.params import Body, ParamTypes +from fastapi.responses import Response +from fastapi.types import ModelNameMap +from fastapi.utils import ( + deep_dict_update, + generate_operation_id_for_path, + is_body_allowed_for_status_code, +) +from starlette.responses import JSONResponse +from starlette.routing import BaseRoute +from starlette.status import HTTP_422_UNPROCESSABLE_ENTITY +from typing_extensions import Literal + +validation_error_definition = { + "title": "ValidationError", + "type": "object", + "properties": { + "loc": { + "title": "Location", + "type": "array", + "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, + }, + "msg": {"title": "Message", "type": "string"}, + "type": {"title": "Error Type", "type": "string"}, + }, + "required": ["loc", "msg", "type"], +} + +validation_error_response_definition = { + "title": "HTTPValidationError", + "type": "object", + "properties": { + "detail": { + "title": "Detail", + "type": "array", + "items": {"$ref": REF_PREFIX + "ValidationError"}, + } + }, +} + +status_code_ranges: Dict[str, str] = { + "1XX": "Information", + "2XX": "Success", + "3XX": "Redirection", + "4XX": "Client Error", + "5XX": "Server Error", + "DEFAULT": "Default Response", +} + + +def get_openapi_security_definitions( + flat_dependant: Dependant, +) -> Tuple[Dict[str, Any], List[Dict[str, Any]]]: + security_definitions = {} + operation_security = [] + for security_requirement in flat_dependant.security_requirements: + security_definition = jsonable_encoder( + security_requirement.security_scheme.model, + by_alias=True, + exclude_none=True, + ) + security_name = security_requirement.security_scheme.scheme_name + security_definitions[security_name] = security_definition + operation_security.append({security_name: security_requirement.scopes}) + return security_definitions, operation_security + + +def _get_openapi_operation_parameters( + *, + dependant: Dependant, + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + field_mapping: Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + separate_input_output_schemas: bool = True, +) -> List[Dict[str, Any]]: + parameters = [] + flat_dependant = get_flat_dependant(dependant, skip_repeats=True) + path_params = _get_flat_fields_from_params(flat_dependant.path_params) + query_params = _get_flat_fields_from_params(flat_dependant.query_params) + header_params = _get_flat_fields_from_params(flat_dependant.header_params) + cookie_params = _get_flat_fields_from_params(flat_dependant.cookie_params) + parameter_groups = [ + (ParamTypes.path, path_params), + (ParamTypes.query, query_params), + (ParamTypes.header, header_params), + (ParamTypes.cookie, cookie_params), + ] + for param_type, param_group in parameter_groups: + for param in param_group: + field_info = param.field_info + # field_info = cast(Param, field_info) + if not getattr(field_info, "include_in_schema", True): + continue + param_schema = get_schema_from_model_field( + field=param, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + parameter = { + "name": param.alias, + "in": param_type.value, + "required": param.required, + "schema": param_schema, + } + if field_info.description: + parameter["description"] = field_info.description + openapi_examples = getattr(field_info, "openapi_examples", None) + example = getattr(field_info, "example", None) + if openapi_examples: + parameter["examples"] = jsonable_encoder(openapi_examples) + elif example != Undefined: + parameter["example"] = jsonable_encoder(example) + if getattr(field_info, "deprecated", None): + parameter["deprecated"] = True + parameters.append(parameter) + return parameters + + +def get_openapi_operation_request_body( + *, + body_field: Optional[ModelField], + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + field_mapping: Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + separate_input_output_schemas: bool = True, +) -> Optional[Dict[str, Any]]: + if not body_field: + return None + assert isinstance(body_field, ModelField) + body_schema = get_schema_from_model_field( + field=body_field, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + field_info = cast(Body, body_field.field_info) + request_media_type = field_info.media_type + required = body_field.required + request_body_oai: Dict[str, Any] = {} + if required: + request_body_oai["required"] = required + request_media_content: Dict[str, Any] = {"schema": body_schema} + if field_info.openapi_examples: + request_media_content["examples"] = jsonable_encoder( + field_info.openapi_examples + ) + elif field_info.example != Undefined: + request_media_content["example"] = jsonable_encoder(field_info.example) + request_body_oai["content"] = {request_media_type: request_media_content} + return request_body_oai + + +def generate_operation_id( + *, route: routing.APIRoute, method: str +) -> str: # pragma: nocover + warnings.warn( + "fastapi.openapi.utils.generate_operation_id() was deprecated, " + "it is not used internally, and will be removed soon", + DeprecationWarning, + stacklevel=2, + ) + if route.operation_id: + return route.operation_id + path: str = route.path_format + return generate_operation_id_for_path(name=route.name, path=path, method=method) + + +def generate_operation_summary(*, route: routing.APIRoute, method: str) -> str: + if route.summary: + return route.summary + return route.name.replace("_", " ").title() + + +def get_openapi_operation_metadata( + *, route: routing.APIRoute, method: str, operation_ids: Set[str] +) -> Dict[str, Any]: + operation: Dict[str, Any] = {} + if route.tags: + operation["tags"] = route.tags + operation["summary"] = generate_operation_summary(route=route, method=method) + if route.description: + operation["description"] = route.description + operation_id = route.operation_id or route.unique_id + if operation_id in operation_ids: + message = ( + f"Duplicate Operation ID {operation_id} for function " + + f"{route.endpoint.__name__}" + ) + file_name = getattr(route.endpoint, "__globals__", {}).get("__file__") + if file_name: + message += f" at {file_name}" + warnings.warn(message, stacklevel=1) + operation_ids.add(operation_id) + operation["operationId"] = operation_id + if route.deprecated: + operation["deprecated"] = route.deprecated + return operation + + +def get_openapi_path( + *, + route: routing.APIRoute, + operation_ids: Set[str], + schema_generator: GenerateJsonSchema, + model_name_map: ModelNameMap, + field_mapping: Dict[ + Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue + ], + separate_input_output_schemas: bool = True, +) -> Tuple[Dict[str, Any], Dict[str, Any], Dict[str, Any]]: + path = {} + security_schemes: Dict[str, Any] = {} + definitions: Dict[str, Any] = {} + assert route.methods is not None, "Methods must be a list" + if isinstance(route.response_class, DefaultPlaceholder): + current_response_class: Type[Response] = route.response_class.value + else: + current_response_class = route.response_class + assert current_response_class, "A response class is needed to generate OpenAPI" + route_response_media_type: Optional[str] = current_response_class.media_type + if route.include_in_schema: + for method in route.methods: + operation = get_openapi_operation_metadata( + route=route, method=method, operation_ids=operation_ids + ) + parameters: List[Dict[str, Any]] = [] + flat_dependant = get_flat_dependant(route.dependant, skip_repeats=True) + security_definitions, operation_security = get_openapi_security_definitions( + flat_dependant=flat_dependant + ) + if operation_security: + operation.setdefault("security", []).extend(operation_security) + if security_definitions: + security_schemes.update(security_definitions) + operation_parameters = _get_openapi_operation_parameters( + dependant=route.dependant, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + parameters.extend(operation_parameters) + if parameters: + all_parameters = { + (param["in"], param["name"]): param for param in parameters + } + required_parameters = { + (param["in"], param["name"]): param + for param in parameters + if param.get("required") + } + # Make sure required definitions of the same parameter take precedence + # over non-required definitions + all_parameters.update(required_parameters) + operation["parameters"] = list(all_parameters.values()) + if method in METHODS_WITH_BODY: + request_body_oai = get_openapi_operation_request_body( + body_field=route.body_field, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + if request_body_oai: + operation["requestBody"] = request_body_oai + if route.callbacks: + callbacks = {} + for callback in route.callbacks: + if isinstance(callback, routing.APIRoute): + ( + cb_path, + cb_security_schemes, + cb_definitions, + ) = get_openapi_path( + route=callback, + operation_ids=operation_ids, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + callbacks[callback.name] = {callback.path: cb_path} + operation["callbacks"] = callbacks + if route.status_code is not None: + status_code = str(route.status_code) + else: + # It would probably make more sense for all response classes to have an + # explicit default status_code, and to extract it from them, instead of + # doing this inspection tricks, that would probably be in the future + # TODO: probably make status_code a default class attribute for all + # responses in Starlette + response_signature = inspect.signature(current_response_class.__init__) + status_code_param = response_signature.parameters.get("status_code") + if status_code_param is not None: + if isinstance(status_code_param.default, int): + status_code = str(status_code_param.default) + operation.setdefault("responses", {}).setdefault(status_code, {})[ + "description" + ] = route.response_description + if route_response_media_type and is_body_allowed_for_status_code( + route.status_code + ): + response_schema = {"type": "string"} + if lenient_issubclass(current_response_class, JSONResponse): + if route.response_field: + response_schema = get_schema_from_model_field( + field=route.response_field, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + else: + response_schema = {} + operation.setdefault("responses", {}).setdefault( + status_code, {} + ).setdefault("content", {}).setdefault(route_response_media_type, {})[ + "schema" + ] = response_schema + if route.responses: + operation_responses = operation.setdefault("responses", {}) + for ( + additional_status_code, + additional_response, + ) in route.responses.items(): + process_response = additional_response.copy() + process_response.pop("model", None) + status_code_key = str(additional_status_code).upper() + if status_code_key == "DEFAULT": + status_code_key = "default" + openapi_response = operation_responses.setdefault( + status_code_key, {} + ) + assert isinstance( + process_response, dict + ), "An additional response must be a dict" + field = route.response_fields.get(additional_status_code) + additional_field_schema: Optional[Dict[str, Any]] = None + if field: + additional_field_schema = get_schema_from_model_field( + field=field, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + media_type = route_response_media_type or "application/json" + additional_schema = ( + process_response.setdefault("content", {}) + .setdefault(media_type, {}) + .setdefault("schema", {}) + ) + deep_dict_update(additional_schema, additional_field_schema) + status_text: Optional[str] = status_code_ranges.get( + str(additional_status_code).upper() + ) or http.client.responses.get(int(additional_status_code)) + description = ( + process_response.get("description") + or openapi_response.get("description") + or status_text + or "Additional Response" + ) + deep_dict_update(openapi_response, process_response) + openapi_response["description"] = description + http422 = str(HTTP_422_UNPROCESSABLE_ENTITY) + all_route_params = get_flat_params(route.dependant) + if (all_route_params or route.body_field) and not any( + status in operation["responses"] + for status in [http422, "4XX", "default"] + ): + operation["responses"][http422] = { + "description": "Validation Error", + "content": { + "application/json": { + "schema": {"$ref": REF_PREFIX + "HTTPValidationError"} + } + }, + } + if "ValidationError" not in definitions: + definitions.update( + { + "ValidationError": validation_error_definition, + "HTTPValidationError": validation_error_response_definition, + } + ) + if route.openapi_extra: + deep_dict_update(operation, route.openapi_extra) + path[method.lower()] = operation + return path, security_schemes, definitions + + +def get_fields_from_routes( + routes: Sequence[BaseRoute], +) -> List[ModelField]: + body_fields_from_routes: List[ModelField] = [] + responses_from_routes: List[ModelField] = [] + request_fields_from_routes: List[ModelField] = [] + callback_flat_models: List[ModelField] = [] + for route in routes: + if getattr(route, "include_in_schema", None) and isinstance( + route, routing.APIRoute + ): + if route.body_field: + assert isinstance( + route.body_field, ModelField + ), "A request body must be a Pydantic Field" + body_fields_from_routes.append(route.body_field) + if route.response_field: + responses_from_routes.append(route.response_field) + if route.response_fields: + responses_from_routes.extend(route.response_fields.values()) + if route.callbacks: + callback_flat_models.extend(get_fields_from_routes(route.callbacks)) + params = get_flat_params(route.dependant) + request_fields_from_routes.extend(params) + + flat_models = callback_flat_models + list( + body_fields_from_routes + responses_from_routes + request_fields_from_routes + ) + return flat_models + + +def get_openapi( + *, + title: str, + version: str, + openapi_version: str = "3.1.0", + summary: Optional[str] = None, + description: Optional[str] = None, + routes: Sequence[BaseRoute], + webhooks: Optional[Sequence[BaseRoute]] = None, + tags: Optional[List[Dict[str, Any]]] = None, + servers: Optional[List[Dict[str, Union[str, Any]]]] = None, + terms_of_service: Optional[str] = None, + contact: Optional[Dict[str, Union[str, Any]]] = None, + license_info: Optional[Dict[str, Union[str, Any]]] = None, + separate_input_output_schemas: bool = True, +) -> Dict[str, Any]: + info: Dict[str, Any] = {"title": title, "version": version} + if summary: + info["summary"] = summary + if description: + info["description"] = description + if terms_of_service: + info["termsOfService"] = terms_of_service + if contact: + info["contact"] = contact + if license_info: + info["license"] = license_info + output: Dict[str, Any] = {"openapi": openapi_version, "info": info} + if servers: + output["servers"] = servers + components: Dict[str, Dict[str, Any]] = {} + paths: Dict[str, Dict[str, Any]] = {} + webhook_paths: Dict[str, Dict[str, Any]] = {} + operation_ids: Set[str] = set() + all_fields = get_fields_from_routes(list(routes or []) + list(webhooks or [])) + model_name_map = get_compat_model_name_map(all_fields) + schema_generator = GenerateJsonSchema(ref_template=REF_TEMPLATE) + field_mapping, definitions = get_definitions( + fields=all_fields, + schema_generator=schema_generator, + model_name_map=model_name_map, + separate_input_output_schemas=separate_input_output_schemas, + ) + for route in routes or []: + if isinstance(route, routing.APIRoute): + result = get_openapi_path( + route=route, + operation_ids=operation_ids, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + if result: + path, security_schemes, path_definitions = result + if path: + paths.setdefault(route.path_format, {}).update(path) + if security_schemes: + components.setdefault("securitySchemes", {}).update( + security_schemes + ) + if path_definitions: + definitions.update(path_definitions) + for webhook in webhooks or []: + if isinstance(webhook, routing.APIRoute): + result = get_openapi_path( + route=webhook, + operation_ids=operation_ids, + schema_generator=schema_generator, + model_name_map=model_name_map, + field_mapping=field_mapping, + separate_input_output_schemas=separate_input_output_schemas, + ) + if result: + path, security_schemes, path_definitions = result + if path: + webhook_paths.setdefault(webhook.path_format, {}).update(path) + if security_schemes: + components.setdefault("securitySchemes", {}).update( + security_schemes + ) + if path_definitions: + definitions.update(path_definitions) + if definitions: + components["schemas"] = {k: definitions[k] for k in sorted(definitions)} + if components: + output["components"] = components + output["paths"] = paths + if webhook_paths: + output["webhooks"] = webhook_paths + if tags: + output["tags"] = tags + return jsonable_encoder(OpenAPI(**output), by_alias=True, exclude_none=True) # type: ignore diff --git a/ocr/.venv/Lib/site-packages/fastapi/param_functions.py b/ocr/.venv/Lib/site-packages/fastapi/param_functions.py new file mode 100644 index 00000000..7ddaace2 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/param_functions.py @@ -0,0 +1,2360 @@ +from typing import Any, Callable, Dict, List, Optional, Sequence, Union + +from fastapi import params +from fastapi._compat import Undefined +from fastapi.openapi.models import Example +from typing_extensions import Annotated, Doc, deprecated + +_Unset: Any = Undefined + + +def Path( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = ..., + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + """ + Declare a path parameter for a *path operation*. + + Read more about it in the + [FastAPI docs for Path Parameters and Numeric Validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/). + + ```python + from typing import Annotated + + from fastapi import FastAPI, Path + + app = FastAPI() + + + @app.get("/items/{item_id}") + async def read_items( + item_id: Annotated[int, Path(title="The ID of the item to get")], + ): + return {"item_id": item_id} + ``` + """ + return params.Path( + default=default, + default_factory=default_factory, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Query( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.Query( + default=default, + default_factory=default_factory, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Header( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + convert_underscores: Annotated[ + bool, + Doc( + """ + Automatically convert underscores to hyphens in the parameter field name. + + Read more about it in the + [FastAPI docs for Header Parameters](https://fastapi.tiangolo.com/tutorial/header-params/#automatic-conversion) + """ + ), + ] = True, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.Header( + default=default, + default_factory=default_factory, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + convert_underscores=convert_underscores, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Cookie( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.Cookie( + default=default, + default_factory=default_factory, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Body( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + embed: Annotated[ + Union[bool, None], + Doc( + """ + When `embed` is `True`, the parameter will be expected in a JSON body as a + key instead of being the JSON body itself. + + This happens automatically when more than one `Body` parameter is declared. + + Read more about it in the + [FastAPI docs for Body - Multiple Parameters](https://fastapi.tiangolo.com/tutorial/body-multiple-params/#embed-a-single-body-parameter). + """ + ), + ] = None, + media_type: Annotated[ + str, + Doc( + """ + The media type of this parameter field. Changing it would affect the + generated OpenAPI, but currently it doesn't affect the parsing of the data. + """ + ), + ] = "application/json", + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.Body( + default=default, + default_factory=default_factory, + embed=embed, + media_type=media_type, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Form( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + media_type: Annotated[ + str, + Doc( + """ + The media type of this parameter field. Changing it would affect the + generated OpenAPI, but currently it doesn't affect the parsing of the data. + """ + ), + ] = "application/x-www-form-urlencoded", + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.Form( + default=default, + default_factory=default_factory, + media_type=media_type, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def File( # noqa: N802 + default: Annotated[ + Any, + Doc( + """ + Default value if the parameter field is not set. + """ + ), + ] = Undefined, + *, + default_factory: Annotated[ + Union[Callable[[], Any], None], + Doc( + """ + A callable to generate the default value. + + This doesn't affect `Path` parameters as the value is always required. + The parameter is available only for compatibility. + """ + ), + ] = _Unset, + media_type: Annotated[ + str, + Doc( + """ + The media type of this parameter field. Changing it would affect the + generated OpenAPI, but currently it doesn't affect the parsing of the data. + """ + ), + ] = "multipart/form-data", + alias: Annotated[ + Optional[str], + Doc( + """ + An alternative name for the parameter field. + + This will be used to extract the data and for the generated OpenAPI. + It is particularly useful when you can't use the name you want because it + is a Python reserved keyword or similar. + """ + ), + ] = None, + alias_priority: Annotated[ + Union[int, None], + Doc( + """ + Priority of the alias. This affects whether an alias generator is used. + """ + ), + ] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Whitelist' validation step. The parameter field will be the single one + allowed by the alias or set of aliases defined. + """ + ), + ] = None, + serialization_alias: Annotated[ + Union[str, None], + Doc( + """ + 'Blacklist' validation step. The vanilla parameter field will be the + single one of the alias' or set of aliases' fields and all the other + fields will be ignored at serialization time. + """ + ), + ] = None, + title: Annotated[ + Optional[str], + Doc( + """ + Human-readable title. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Human-readable description. + """ + ), + ] = None, + gt: Annotated[ + Optional[float], + Doc( + """ + Greater than. If set, value must be greater than this. Only applicable to + numbers. + """ + ), + ] = None, + ge: Annotated[ + Optional[float], + Doc( + """ + Greater than or equal. If set, value must be greater than or equal to + this. Only applicable to numbers. + """ + ), + ] = None, + lt: Annotated[ + Optional[float], + Doc( + """ + Less than. If set, value must be less than this. Only applicable to numbers. + """ + ), + ] = None, + le: Annotated[ + Optional[float], + Doc( + """ + Less than or equal. If set, value must be less than or equal to this. + Only applicable to numbers. + """ + ), + ] = None, + min_length: Annotated[ + Optional[int], + Doc( + """ + Minimum length for strings. + """ + ), + ] = None, + max_length: Annotated[ + Optional[int], + Doc( + """ + Maximum length for strings. + """ + ), + ] = None, + pattern: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + ] = None, + regex: Annotated[ + Optional[str], + Doc( + """ + RegEx pattern for strings. + """ + ), + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Annotated[ + Union[str, None], + Doc( + """ + Parameter field name for discriminating the type in a tagged union. + """ + ), + ] = None, + strict: Annotated[ + Union[bool, None], + Doc( + """ + If `True`, strict validation is applied to the field. + """ + ), + ] = _Unset, + multiple_of: Annotated[ + Union[float, None], + Doc( + """ + Value must be a multiple of this. Only applicable to numbers. + """ + ), + ] = _Unset, + allow_inf_nan: Annotated[ + Union[bool, None], + Doc( + """ + Allow `inf`, `-inf`, `nan`. Only applicable to numbers. + """ + ), + ] = _Unset, + max_digits: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of allow digits for strings. + """ + ), + ] = _Unset, + decimal_places: Annotated[ + Union[int, None], + Doc( + """ + Maximum number of decimal places allowed for numbers. + """ + ), + ] = _Unset, + examples: Annotated[ + Optional[List[Any]], + Doc( + """ + Example values for this field. + """ + ), + ] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Annotated[ + Optional[Dict[str, Example]], + Doc( + """ + OpenAPI-specific examples. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Swagger UI (that provides the `/docs` interface) has better support for the + OpenAPI-specific examples than the JSON Schema `examples`, that's the main + use case for this. + + Read more about it in the + [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). + """ + ), + ] = None, + deprecated: Annotated[ + Union[deprecated, str, bool, None], + Doc( + """ + Mark this parameter field as deprecated. + + It will affect the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) this parameter field in the generated OpenAPI. + You probably don't need it, but it's available. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + json_schema_extra: Annotated[ + Union[Dict[str, Any], None], + Doc( + """ + Any additional JSON schema data. + """ + ), + ] = None, + **extra: Annotated[ + Any, + Doc( + """ + Include extra fields used by the JSON Schema. + """ + ), + deprecated( + """ + The `extra` kwargs is deprecated. Use `json_schema_extra` instead. + """ + ), + ], +) -> Any: + return params.File( + default=default, + default_factory=default_factory, + media_type=media_type, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + example=example, + examples=examples, + openapi_examples=openapi_examples, + deprecated=deprecated, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +def Depends( # noqa: N802 + dependency: Annotated[ + Optional[Callable[..., Any]], + Doc( + """ + A "dependable" callable (like a function). + + Don't call it directly, FastAPI will call it for you, just pass the object + directly. + """ + ), + ] = None, + *, + use_cache: Annotated[ + bool, + Doc( + """ + By default, after a dependency is called the first time in a request, if + the dependency is declared again for the rest of the request (for example + if the dependency is needed by several dependencies), the value will be + re-used for the rest of the request. + + Set `use_cache` to `False` to disable this behavior and ensure the + dependency is called again (if declared more than once) in the same request. + """ + ), + ] = True, +) -> Any: + """ + Declare a FastAPI dependency. + + It takes a single "dependable" callable (like a function). + + Don't call it directly, FastAPI will call it for you. + + Read more about it in the + [FastAPI docs for Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/). + + **Example** + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + + app = FastAPI() + + + async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100): + return {"q": q, "skip": skip, "limit": limit} + + + @app.get("/items/") + async def read_items(commons: Annotated[dict, Depends(common_parameters)]): + return commons + ``` + """ + return params.Depends(dependency=dependency, use_cache=use_cache) + + +def Security( # noqa: N802 + dependency: Annotated[ + Optional[Callable[..., Any]], + Doc( + """ + A "dependable" callable (like a function). + + Don't call it directly, FastAPI will call it for you, just pass the object + directly. + """ + ), + ] = None, + *, + scopes: Annotated[ + Optional[Sequence[str]], + Doc( + """ + OAuth2 scopes required for the *path operation* that uses this Security + dependency. + + The term "scope" comes from the OAuth2 specification, it seems to be + intentionaly vague and interpretable. It normally refers to permissions, + in cases to roles. + + These scopes are integrated with OpenAPI (and the API docs at `/docs`). + So they are visible in the OpenAPI specification. + ) + """ + ), + ] = None, + use_cache: Annotated[ + bool, + Doc( + """ + By default, after a dependency is called the first time in a request, if + the dependency is declared again for the rest of the request (for example + if the dependency is needed by several dependencies), the value will be + re-used for the rest of the request. + + Set `use_cache` to `False` to disable this behavior and ensure the + dependency is called again (if declared more than once) in the same request. + """ + ), + ] = True, +) -> Any: + """ + Declare a FastAPI Security dependency. + + The only difference with a regular dependency is that it can declare OAuth2 + scopes that will be integrated with OpenAPI and the automatic UI docs (by default + at `/docs`). + + It takes a single "dependable" callable (like a function). + + Don't call it directly, FastAPI will call it for you. + + Read more about it in the + [FastAPI docs for Security](https://fastapi.tiangolo.com/tutorial/security/) and + in the + [FastAPI docs for OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/). + + **Example** + + ```python + from typing import Annotated + + from fastapi import Security, FastAPI + + from .db import User + from .security import get_current_active_user + + app = FastAPI() + + @app.get("/users/me/items/") + async def read_own_items( + current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])] + ): + return [{"item_id": "Foo", "owner": current_user.username}] + ``` + """ + return params.Security(dependency=dependency, scopes=scopes, use_cache=use_cache) diff --git a/ocr/.venv/Lib/site-packages/fastapi/params.py b/ocr/.venv/Lib/site-packages/fastapi/params.py new file mode 100644 index 00000000..90ca7cb0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/params.py @@ -0,0 +1,782 @@ +import warnings +from enum import Enum +from typing import Any, Callable, Dict, List, Optional, Sequence, Union + +from fastapi.openapi.models import Example +from pydantic.fields import FieldInfo +from typing_extensions import Annotated, deprecated + +from ._compat import PYDANTIC_V2, PYDANTIC_VERSION, Undefined + +_Unset: Any = Undefined + + +class ParamTypes(Enum): + query = "query" + header = "header" + path = "path" + cookie = "cookie" + + +class Param(FieldInfo): + in_: ParamTypes + + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + if example is not _Unset: + warnings.warn( + "`example` has been deprecated, please use `examples` instead", + category=DeprecationWarning, + stacklevel=4, + ) + self.example = example + self.include_in_schema = include_in_schema + self.openapi_examples = openapi_examples + kwargs = dict( + default=default, + default_factory=default_factory, + alias=alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + discriminator=discriminator, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + **extra, + ) + if examples is not None: + kwargs["examples"] = examples + if regex is not None: + warnings.warn( + "`regex` has been deprecated, please use `pattern` instead", + category=DeprecationWarning, + stacklevel=4, + ) + current_json_schema_extra = json_schema_extra or extra + if PYDANTIC_VERSION < "2.7.0": + self.deprecated = deprecated + else: + kwargs["deprecated"] = deprecated + if PYDANTIC_V2: + kwargs.update( + { + "annotation": annotation, + "alias_priority": alias_priority, + "validation_alias": validation_alias, + "serialization_alias": serialization_alias, + "strict": strict, + "json_schema_extra": current_json_schema_extra, + } + ) + kwargs["pattern"] = pattern or regex + else: + kwargs["regex"] = pattern or regex + kwargs.update(**current_json_schema_extra) + use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset} + + super().__init__(**use_kwargs) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.default})" + + +class Path(Param): + in_ = ParamTypes.path + + def __init__( + self, + default: Any = ..., + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + assert default is ..., "Path parameters cannot have a default value" + self.in_ = self.in_ + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class Query(Param): + in_ = ParamTypes.query + + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class Header(Param): + in_ = ParamTypes.header + + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + convert_underscores: bool = True, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + self.convert_underscores = convert_underscores + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class Cookie(Param): + in_ = ParamTypes.cookie + + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class Body(FieldInfo): + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + embed: Union[bool, None] = None, + media_type: str = "application/json", + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + self.embed = embed + self.media_type = media_type + if example is not _Unset: + warnings.warn( + "`example` has been deprecated, please use `examples` instead", + category=DeprecationWarning, + stacklevel=4, + ) + self.example = example + self.include_in_schema = include_in_schema + self.openapi_examples = openapi_examples + kwargs = dict( + default=default, + default_factory=default_factory, + alias=alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + discriminator=discriminator, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + **extra, + ) + if examples is not None: + kwargs["examples"] = examples + if regex is not None: + warnings.warn( + "`regex` has been deprecated, please use `pattern` instead", + category=DeprecationWarning, + stacklevel=4, + ) + current_json_schema_extra = json_schema_extra or extra + if PYDANTIC_VERSION < "2.7.0": + self.deprecated = deprecated + else: + kwargs["deprecated"] = deprecated + if PYDANTIC_V2: + kwargs.update( + { + "annotation": annotation, + "alias_priority": alias_priority, + "validation_alias": validation_alias, + "serialization_alias": serialization_alias, + "strict": strict, + "json_schema_extra": current_json_schema_extra, + } + ) + kwargs["pattern"] = pattern or regex + else: + kwargs["regex"] = pattern or regex + kwargs.update(**current_json_schema_extra) + + use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset} + + super().__init__(**use_kwargs) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.default})" + + +class Form(Body): + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + media_type: str = "application/x-www-form-urlencoded", + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + media_type=media_type, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class File(Form): + def __init__( + self, + default: Any = Undefined, + *, + default_factory: Union[Callable[[], Any], None] = _Unset, + annotation: Optional[Any] = None, + media_type: str = "multipart/form-data", + alias: Optional[str] = None, + alias_priority: Union[int, None] = _Unset, + # TODO: update when deprecating Pydantic v1, import these types + # validation_alias: str | AliasPath | AliasChoices | None + validation_alias: Union[str, None] = None, + serialization_alias: Union[str, None] = None, + title: Optional[str] = None, + description: Optional[str] = None, + gt: Optional[float] = None, + ge: Optional[float] = None, + lt: Optional[float] = None, + le: Optional[float] = None, + min_length: Optional[int] = None, + max_length: Optional[int] = None, + pattern: Optional[str] = None, + regex: Annotated[ + Optional[str], + deprecated( + "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." + ), + ] = None, + discriminator: Union[str, None] = None, + strict: Union[bool, None] = _Unset, + multiple_of: Union[float, None] = _Unset, + allow_inf_nan: Union[bool, None] = _Unset, + max_digits: Union[int, None] = _Unset, + decimal_places: Union[int, None] = _Unset, + examples: Optional[List[Any]] = None, + example: Annotated[ + Optional[Any], + deprecated( + "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " + "although still supported. Use examples instead." + ), + ] = _Unset, + openapi_examples: Optional[Dict[str, Example]] = None, + deprecated: Union[deprecated, str, bool, None] = None, + include_in_schema: bool = True, + json_schema_extra: Union[Dict[str, Any], None] = None, + **extra: Any, + ): + super().__init__( + default=default, + default_factory=default_factory, + annotation=annotation, + media_type=media_type, + alias=alias, + alias_priority=alias_priority, + validation_alias=validation_alias, + serialization_alias=serialization_alias, + title=title, + description=description, + gt=gt, + ge=ge, + lt=lt, + le=le, + min_length=min_length, + max_length=max_length, + pattern=pattern, + regex=regex, + discriminator=discriminator, + strict=strict, + multiple_of=multiple_of, + allow_inf_nan=allow_inf_nan, + max_digits=max_digits, + decimal_places=decimal_places, + deprecated=deprecated, + example=example, + examples=examples, + openapi_examples=openapi_examples, + include_in_schema=include_in_schema, + json_schema_extra=json_schema_extra, + **extra, + ) + + +class Depends: + def __init__( + self, dependency: Optional[Callable[..., Any]] = None, *, use_cache: bool = True + ): + self.dependency = dependency + self.use_cache = use_cache + + def __repr__(self) -> str: + attr = getattr(self.dependency, "__name__", type(self.dependency).__name__) + cache = "" if self.use_cache else ", use_cache=False" + return f"{self.__class__.__name__}({attr}{cache})" + + +class Security(Depends): + def __init__( + self, + dependency: Optional[Callable[..., Any]] = None, + *, + scopes: Optional[Sequence[str]] = None, + use_cache: bool = True, + ): + super().__init__(dependency=dependency, use_cache=use_cache) + self.scopes = scopes or [] diff --git a/ocr/.venv/Lib/site-packages/fastapi/py.typed b/ocr/.venv/Lib/site-packages/fastapi/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/ocr/.venv/Lib/site-packages/fastapi/requests.py b/ocr/.venv/Lib/site-packages/fastapi/requests.py new file mode 100644 index 00000000..d16552c0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/requests.py @@ -0,0 +1,2 @@ +from starlette.requests import HTTPConnection as HTTPConnection # noqa: F401 +from starlette.requests import Request as Request # noqa: F401 diff --git a/ocr/.venv/Lib/site-packages/fastapi/responses.py b/ocr/.venv/Lib/site-packages/fastapi/responses.py new file mode 100644 index 00000000..6c8db6f3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/responses.py @@ -0,0 +1,48 @@ +from typing import Any + +from starlette.responses import FileResponse as FileResponse # noqa +from starlette.responses import HTMLResponse as HTMLResponse # noqa +from starlette.responses import JSONResponse as JSONResponse # noqa +from starlette.responses import PlainTextResponse as PlainTextResponse # noqa +from starlette.responses import RedirectResponse as RedirectResponse # noqa +from starlette.responses import Response as Response # noqa +from starlette.responses import StreamingResponse as StreamingResponse # noqa + +try: + import ujson +except ImportError: # pragma: nocover + ujson = None # type: ignore + + +try: + import orjson +except ImportError: # pragma: nocover + orjson = None # type: ignore + + +class UJSONResponse(JSONResponse): + """ + JSON response using the high-performance ujson library to serialize data to JSON. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/). + """ + + def render(self, content: Any) -> bytes: + assert ujson is not None, "ujson must be installed to use UJSONResponse" + return ujson.dumps(content, ensure_ascii=False).encode("utf-8") + + +class ORJSONResponse(JSONResponse): + """ + JSON response using the high-performance orjson library to serialize data to JSON. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/). + """ + + def render(self, content: Any) -> bytes: + assert orjson is not None, "orjson must be installed to use ORJSONResponse" + return orjson.dumps( + content, option=orjson.OPT_NON_STR_KEYS | orjson.OPT_SERIALIZE_NUMPY + ) diff --git a/ocr/.venv/Lib/site-packages/fastapi/routing.py b/ocr/.venv/Lib/site-packages/fastapi/routing.py new file mode 100644 index 00000000..86e30360 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/routing.py @@ -0,0 +1,4437 @@ +import asyncio +import dataclasses +import email.message +import inspect +import json +from contextlib import AsyncExitStack, asynccontextmanager +from enum import Enum, IntEnum +from typing import ( + Any, + AsyncIterator, + Callable, + Coroutine, + Dict, + List, + Mapping, + Optional, + Sequence, + Set, + Tuple, + Type, + Union, +) + +from fastapi import params +from fastapi._compat import ( + ModelField, + Undefined, + _get_model_config, + _model_dump, + _normalize_errors, + lenient_issubclass, +) +from fastapi.datastructures import Default, DefaultPlaceholder +from fastapi.dependencies.models import Dependant +from fastapi.dependencies.utils import ( + _should_embed_body_fields, + get_body_field, + get_dependant, + get_flat_dependant, + get_parameterless_sub_dependant, + get_typed_return_annotation, + solve_dependencies, +) +from fastapi.encoders import jsonable_encoder +from fastapi.exceptions import ( + FastAPIError, + RequestValidationError, + ResponseValidationError, + WebSocketRequestValidationError, +) +from fastapi.types import DecoratedCallable, IncEx +from fastapi.utils import ( + create_cloned_field, + create_model_field, + generate_unique_id, + get_value_or_default, + is_body_allowed_for_status_code, +) +from pydantic import BaseModel +from starlette import routing +from starlette.concurrency import run_in_threadpool +from starlette.exceptions import HTTPException +from starlette.requests import Request +from starlette.responses import JSONResponse, Response +from starlette.routing import ( + BaseRoute, + Match, + compile_path, + get_name, + request_response, + websocket_session, +) +from starlette.routing import Mount as Mount # noqa +from starlette.types import AppType, ASGIApp, Lifespan, Scope +from starlette.websockets import WebSocket +from typing_extensions import Annotated, Doc, deprecated + + +def _prepare_response_content( + res: Any, + *, + exclude_unset: bool, + exclude_defaults: bool = False, + exclude_none: bool = False, +) -> Any: + if isinstance(res, BaseModel): + read_with_orm_mode = getattr(_get_model_config(res), "read_with_orm_mode", None) + if read_with_orm_mode: + # Let from_orm extract the data from this model instead of converting + # it now to a dict. + # Otherwise, there's no way to extract lazy data that requires attribute + # access instead of dict iteration, e.g. lazy relationships. + return res + return _model_dump( + res, + by_alias=True, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + elif isinstance(res, list): + return [ + _prepare_response_content( + item, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + for item in res + ] + elif isinstance(res, dict): + return { + k: _prepare_response_content( + v, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + for k, v in res.items() + } + elif dataclasses.is_dataclass(res): + return dataclasses.asdict(res) + return res + + +def _merge_lifespan_context( + original_context: Lifespan[Any], nested_context: Lifespan[Any] +) -> Lifespan[Any]: + @asynccontextmanager + async def merged_lifespan( + app: AppType, + ) -> AsyncIterator[Optional[Mapping[str, Any]]]: + async with original_context(app) as maybe_original_state: + async with nested_context(app) as maybe_nested_state: + if maybe_nested_state is None and maybe_original_state is None: + yield None # old ASGI compatibility + else: + yield {**(maybe_nested_state or {}), **(maybe_original_state or {})} + + return merged_lifespan # type: ignore[return-value] + + +async def serialize_response( + *, + field: Optional[ModelField] = None, + response_content: Any, + include: Optional[IncEx] = None, + exclude: Optional[IncEx] = None, + by_alias: bool = True, + exclude_unset: bool = False, + exclude_defaults: bool = False, + exclude_none: bool = False, + is_coroutine: bool = True, +) -> Any: + if field: + errors = [] + if not hasattr(field, "serialize"): + # pydantic v1 + response_content = _prepare_response_content( + response_content, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + if is_coroutine: + value, errors_ = field.validate(response_content, {}, loc=("response",)) + else: + value, errors_ = await run_in_threadpool( + field.validate, response_content, {}, loc=("response",) + ) + if isinstance(errors_, list): + errors.extend(errors_) + elif errors_: + errors.append(errors_) + if errors: + raise ResponseValidationError( + errors=_normalize_errors(errors), body=response_content + ) + + if hasattr(field, "serialize"): + return field.serialize( + value, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + + return jsonable_encoder( + value, + include=include, + exclude=exclude, + by_alias=by_alias, + exclude_unset=exclude_unset, + exclude_defaults=exclude_defaults, + exclude_none=exclude_none, + ) + else: + return jsonable_encoder(response_content) + + +async def run_endpoint_function( + *, dependant: Dependant, values: Dict[str, Any], is_coroutine: bool +) -> Any: + # Only called by get_request_handler. Has been split into its own function to + # facilitate profiling endpoints, since inner functions are harder to profile. + assert dependant.call is not None, "dependant.call must be a function" + + if is_coroutine: + return await dependant.call(**values) + else: + return await run_in_threadpool(dependant.call, **values) + + +def get_request_handler( + dependant: Dependant, + body_field: Optional[ModelField] = None, + status_code: Optional[int] = None, + response_class: Union[Type[Response], DefaultPlaceholder] = Default(JSONResponse), + response_field: Optional[ModelField] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + dependency_overrides_provider: Optional[Any] = None, + embed_body_fields: bool = False, +) -> Callable[[Request], Coroutine[Any, Any, Response]]: + assert dependant.call is not None, "dependant.call must be a function" + is_coroutine = asyncio.iscoroutinefunction(dependant.call) + is_body_form = body_field and isinstance(body_field.field_info, params.Form) + if isinstance(response_class, DefaultPlaceholder): + actual_response_class: Type[Response] = response_class.value + else: + actual_response_class = response_class + + async def app(request: Request) -> Response: + response: Union[Response, None] = None + async with AsyncExitStack() as file_stack: + try: + body: Any = None + if body_field: + if is_body_form: + body = await request.form() + file_stack.push_async_callback(body.close) + else: + body_bytes = await request.body() + if body_bytes: + json_body: Any = Undefined + content_type_value = request.headers.get("content-type") + if not content_type_value: + json_body = await request.json() + else: + message = email.message.Message() + message["content-type"] = content_type_value + if message.get_content_maintype() == "application": + subtype = message.get_content_subtype() + if subtype == "json" or subtype.endswith("+json"): + json_body = await request.json() + if json_body != Undefined: + body = json_body + else: + body = body_bytes + except json.JSONDecodeError as e: + validation_error = RequestValidationError( + [ + { + "type": "json_invalid", + "loc": ("body", e.pos), + "msg": "JSON decode error", + "input": {}, + "ctx": {"error": e.msg}, + } + ], + body=e.doc, + ) + raise validation_error from e + except HTTPException: + # If a middleware raises an HTTPException, it should be raised again + raise + except Exception as e: + http_error = HTTPException( + status_code=400, detail="There was an error parsing the body" + ) + raise http_error from e + errors: List[Any] = [] + async with AsyncExitStack() as async_exit_stack: + solved_result = await solve_dependencies( + request=request, + dependant=dependant, + body=body, + dependency_overrides_provider=dependency_overrides_provider, + async_exit_stack=async_exit_stack, + embed_body_fields=embed_body_fields, + ) + errors = solved_result.errors + if not errors: + raw_response = await run_endpoint_function( + dependant=dependant, + values=solved_result.values, + is_coroutine=is_coroutine, + ) + if isinstance(raw_response, Response): + if raw_response.background is None: + raw_response.background = solved_result.background_tasks + response = raw_response + else: + response_args: Dict[str, Any] = { + "background": solved_result.background_tasks + } + # If status_code was set, use it, otherwise use the default from the + # response class, in the case of redirect it's 307 + current_status_code = ( + status_code + if status_code + else solved_result.response.status_code + ) + if current_status_code is not None: + response_args["status_code"] = current_status_code + if solved_result.response.status_code: + response_args["status_code"] = ( + solved_result.response.status_code + ) + content = await serialize_response( + field=response_field, + response_content=raw_response, + include=response_model_include, + exclude=response_model_exclude, + by_alias=response_model_by_alias, + exclude_unset=response_model_exclude_unset, + exclude_defaults=response_model_exclude_defaults, + exclude_none=response_model_exclude_none, + is_coroutine=is_coroutine, + ) + response = actual_response_class(content, **response_args) + if not is_body_allowed_for_status_code(response.status_code): + response.body = b"" + response.headers.raw.extend(solved_result.response.headers.raw) + if errors: + validation_error = RequestValidationError( + _normalize_errors(errors), body=body + ) + raise validation_error + if response is None: + raise FastAPIError( + "No response object was returned. There's a high chance that the " + "application code is raising an exception and a dependency with yield " + "has a block with a bare except, or a block with except Exception, " + "and is not raising the exception again. Read more about it in the " + "docs: https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#dependencies-with-yield-and-except" + ) + return response + + return app + + +def get_websocket_app( + dependant: Dependant, + dependency_overrides_provider: Optional[Any] = None, + embed_body_fields: bool = False, +) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]: + async def app(websocket: WebSocket) -> None: + async with AsyncExitStack() as async_exit_stack: + # TODO: remove this scope later, after a few releases + # This scope fastapi_astack is no longer used by FastAPI, kept for + # compatibility, just in case + websocket.scope["fastapi_astack"] = async_exit_stack + solved_result = await solve_dependencies( + request=websocket, + dependant=dependant, + dependency_overrides_provider=dependency_overrides_provider, + async_exit_stack=async_exit_stack, + embed_body_fields=embed_body_fields, + ) + if solved_result.errors: + raise WebSocketRequestValidationError( + _normalize_errors(solved_result.errors) + ) + assert dependant.call is not None, "dependant.call must be a function" + await dependant.call(**solved_result.values) + + return app + + +class APIWebSocketRoute(routing.WebSocketRoute): + def __init__( + self, + path: str, + endpoint: Callable[..., Any], + *, + name: Optional[str] = None, + dependencies: Optional[Sequence[params.Depends]] = None, + dependency_overrides_provider: Optional[Any] = None, + ) -> None: + self.path = path + self.endpoint = endpoint + self.name = get_name(endpoint) if name is None else name + self.dependencies = list(dependencies or []) + self.path_regex, self.path_format, self.param_convertors = compile_path(path) + self.dependant = get_dependant(path=self.path_format, call=self.endpoint) + for depends in self.dependencies[::-1]: + self.dependant.dependencies.insert( + 0, + get_parameterless_sub_dependant(depends=depends, path=self.path_format), + ) + self._flat_dependant = get_flat_dependant(self.dependant) + self._embed_body_fields = _should_embed_body_fields( + self._flat_dependant.body_params + ) + self.app = websocket_session( + get_websocket_app( + dependant=self.dependant, + dependency_overrides_provider=dependency_overrides_provider, + embed_body_fields=self._embed_body_fields, + ) + ) + + def matches(self, scope: Scope) -> Tuple[Match, Scope]: + match, child_scope = super().matches(scope) + if match != Match.NONE: + child_scope["route"] = self + return match, child_scope + + +class APIRoute(routing.Route): + def __init__( + self, + path: str, + endpoint: Callable[..., Any], + *, + response_model: Any = Default(None), + status_code: Optional[int] = None, + tags: Optional[List[Union[str, Enum]]] = None, + dependencies: Optional[Sequence[params.Depends]] = None, + summary: Optional[str] = None, + description: Optional[str] = None, + response_description: str = "Successful Response", + responses: Optional[Dict[Union[int, str], Dict[str, Any]]] = None, + deprecated: Optional[bool] = None, + name: Optional[str] = None, + methods: Optional[Union[Set[str], List[str]]] = None, + operation_id: Optional[str] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + include_in_schema: bool = True, + response_class: Union[Type[Response], DefaultPlaceholder] = Default( + JSONResponse + ), + dependency_overrides_provider: Optional[Any] = None, + callbacks: Optional[List[BaseRoute]] = None, + openapi_extra: Optional[Dict[str, Any]] = None, + generate_unique_id_function: Union[ + Callable[["APIRoute"], str], DefaultPlaceholder + ] = Default(generate_unique_id), + ) -> None: + self.path = path + self.endpoint = endpoint + if isinstance(response_model, DefaultPlaceholder): + return_annotation = get_typed_return_annotation(endpoint) + if lenient_issubclass(return_annotation, Response): + response_model = None + else: + response_model = return_annotation + self.response_model = response_model + self.summary = summary + self.response_description = response_description + self.deprecated = deprecated + self.operation_id = operation_id + self.response_model_include = response_model_include + self.response_model_exclude = response_model_exclude + self.response_model_by_alias = response_model_by_alias + self.response_model_exclude_unset = response_model_exclude_unset + self.response_model_exclude_defaults = response_model_exclude_defaults + self.response_model_exclude_none = response_model_exclude_none + self.include_in_schema = include_in_schema + self.response_class = response_class + self.dependency_overrides_provider = dependency_overrides_provider + self.callbacks = callbacks + self.openapi_extra = openapi_extra + self.generate_unique_id_function = generate_unique_id_function + self.tags = tags or [] + self.responses = responses or {} + self.name = get_name(endpoint) if name is None else name + self.path_regex, self.path_format, self.param_convertors = compile_path(path) + if methods is None: + methods = ["GET"] + self.methods: Set[str] = {method.upper() for method in methods} + if isinstance(generate_unique_id_function, DefaultPlaceholder): + current_generate_unique_id: Callable[[APIRoute], str] = ( + generate_unique_id_function.value + ) + else: + current_generate_unique_id = generate_unique_id_function + self.unique_id = self.operation_id or current_generate_unique_id(self) + # normalize enums e.g. http.HTTPStatus + if isinstance(status_code, IntEnum): + status_code = int(status_code) + self.status_code = status_code + if self.response_model: + assert is_body_allowed_for_status_code( + status_code + ), f"Status code {status_code} must not have a response body" + response_name = "Response_" + self.unique_id + self.response_field = create_model_field( + name=response_name, + type_=self.response_model, + mode="serialization", + ) + # Create a clone of the field, so that a Pydantic submodel is not returned + # as is just because it's an instance of a subclass of a more limited class + # e.g. UserInDB (containing hashed_password) could be a subclass of User + # that doesn't have the hashed_password. But because it's a subclass, it + # would pass the validation and be returned as is. + # By being a new field, no inheritance will be passed as is. A new model + # will always be created. + # TODO: remove when deprecating Pydantic v1 + self.secure_cloned_response_field: Optional[ModelField] = ( + create_cloned_field(self.response_field) + ) + else: + self.response_field = None # type: ignore + self.secure_cloned_response_field = None + self.dependencies = list(dependencies or []) + self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "") + # if a "form feed" character (page break) is found in the description text, + # truncate description text to the content preceding the first "form feed" + self.description = self.description.split("\f")[0].strip() + response_fields = {} + for additional_status_code, response in self.responses.items(): + assert isinstance(response, dict), "An additional response must be a dict" + model = response.get("model") + if model: + assert is_body_allowed_for_status_code( + additional_status_code + ), f"Status code {additional_status_code} must not have a response body" + response_name = f"Response_{additional_status_code}_{self.unique_id}" + response_field = create_model_field(name=response_name, type_=model) + response_fields[additional_status_code] = response_field + if response_fields: + self.response_fields: Dict[Union[int, str], ModelField] = response_fields + else: + self.response_fields = {} + + assert callable(endpoint), "An endpoint must be a callable" + self.dependant = get_dependant(path=self.path_format, call=self.endpoint) + for depends in self.dependencies[::-1]: + self.dependant.dependencies.insert( + 0, + get_parameterless_sub_dependant(depends=depends, path=self.path_format), + ) + self._flat_dependant = get_flat_dependant(self.dependant) + self._embed_body_fields = _should_embed_body_fields( + self._flat_dependant.body_params + ) + self.body_field = get_body_field( + flat_dependant=self._flat_dependant, + name=self.unique_id, + embed_body_fields=self._embed_body_fields, + ) + self.app = request_response(self.get_route_handler()) + + def get_route_handler(self) -> Callable[[Request], Coroutine[Any, Any, Response]]: + return get_request_handler( + dependant=self.dependant, + body_field=self.body_field, + status_code=self.status_code, + response_class=self.response_class, + response_field=self.secure_cloned_response_field, + response_model_include=self.response_model_include, + response_model_exclude=self.response_model_exclude, + response_model_by_alias=self.response_model_by_alias, + response_model_exclude_unset=self.response_model_exclude_unset, + response_model_exclude_defaults=self.response_model_exclude_defaults, + response_model_exclude_none=self.response_model_exclude_none, + dependency_overrides_provider=self.dependency_overrides_provider, + embed_body_fields=self._embed_body_fields, + ) + + def matches(self, scope: Scope) -> Tuple[Match, Scope]: + match, child_scope = super().matches(scope) + if match != Match.NONE: + child_scope["route"] = self + return match, child_scope + + +class APIRouter(routing.Router): + """ + `APIRouter` class, used to group *path operations*, for example to structure + an app in multiple files. It would then be included in the `FastAPI` app, or + in another `APIRouter` (ultimately included in the app). + + Read more about it in the + [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/). + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + + app = FastAPI() + router = APIRouter() + + + @router.get("/users/", tags=["users"]) + async def read_users(): + return [{"username": "Rick"}, {"username": "Morty"}] + + + app.include_router(router) + ``` + """ + + def __init__( + self, + *, + prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to all the *path operations* in this + router. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to all the + *path operations* in this router. + + Read more about it in the + [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + default_response_class: Annotated[ + Type[Response], + Doc( + """ + The default response class to be used. + + Read more in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). + """ + ), + ] = Default(JSONResponse), + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses to be shown in OpenAPI. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). + + And in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + OpenAPI callbacks that should apply to all *path operations* in this + router. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + routes: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + **Note**: you probably shouldn't use this parameter, it is inherited + from Starlette and supported for compatibility. + + --- + + A list of routes to serve incoming HTTP and WebSocket requests. + """ + ), + deprecated( + """ + You normally wouldn't use this parameter with FastAPI, it is inherited + from Starlette and supported for compatibility. + + In FastAPI, you normally would use the *path operation methods*, + like `router.get()`, `router.post()`, etc. + """ + ), + ] = None, + redirect_slashes: Annotated[ + bool, + Doc( + """ + Whether to detect and redirect slashes in URLs when the client doesn't + use the same format. + """ + ), + ] = True, + default: Annotated[ + Optional[ASGIApp], + Doc( + """ + Default function handler for this router. Used to handle + 404 Not Found errors. + """ + ), + ] = None, + dependency_overrides_provider: Annotated[ + Optional[Any], + Doc( + """ + Only used internally by FastAPI to handle dependency overrides. + + You shouldn't need to use it. It normally points to the `FastAPI` app + object. + """ + ), + ] = None, + route_class: Annotated[ + Type[APIRoute], + Doc( + """ + Custom route (*path operation*) class to be used by this router. + + Read more about it in the + [FastAPI docs for Custom Request and APIRoute class](https://fastapi.tiangolo.com/how-to/custom-request-and-route/#custom-apiroute-class-in-a-router). + """ + ), + ] = APIRoute, + on_startup: Annotated[ + Optional[Sequence[Callable[[], Any]]], + Doc( + """ + A list of startup event handler functions. + + You should instead use the `lifespan` handlers. + + Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + on_shutdown: Annotated[ + Optional[Sequence[Callable[[], Any]]], + Doc( + """ + A list of shutdown event handler functions. + + You should instead use the `lifespan` handlers. + + Read more in the + [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + # the generic to Lifespan[AppType] is the type of the top level application + # which the router cannot know statically, so we use typing.Any + lifespan: Annotated[ + Optional[Lifespan[Any]], + Doc( + """ + A `Lifespan` context manager handler. This replaces `startup` and + `shutdown` functions with a single context manager. + + Read more in the + [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark all *path operations* in this router as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + To include (or not) all the *path operations* in this router in the + generated OpenAPI. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> None: + super().__init__( + routes=routes, + redirect_slashes=redirect_slashes, + default=default, + on_startup=on_startup, + on_shutdown=on_shutdown, + lifespan=lifespan, + ) + if prefix: + assert prefix.startswith("/"), "A path prefix must start with '/'" + assert not prefix.endswith( + "/" + ), "A path prefix must not end with '/', as the routes will start with '/'" + self.prefix = prefix + self.tags: List[Union[str, Enum]] = tags or [] + self.dependencies = list(dependencies or []) + self.deprecated = deprecated + self.include_in_schema = include_in_schema + self.responses = responses or {} + self.callbacks = callbacks or [] + self.dependency_overrides_provider = dependency_overrides_provider + self.route_class = route_class + self.default_response_class = default_response_class + self.generate_unique_id_function = generate_unique_id_function + + def route( + self, + path: str, + methods: Optional[List[str]] = None, + name: Optional[str] = None, + include_in_schema: bool = True, + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_route( + path, + func, + methods=methods, + name=name, + include_in_schema=include_in_schema, + ) + return func + + return decorator + + def add_api_route( + self, + path: str, + endpoint: Callable[..., Any], + *, + response_model: Any = Default(None), + status_code: Optional[int] = None, + tags: Optional[List[Union[str, Enum]]] = None, + dependencies: Optional[Sequence[params.Depends]] = None, + summary: Optional[str] = None, + description: Optional[str] = None, + response_description: str = "Successful Response", + responses: Optional[Dict[Union[int, str], Dict[str, Any]]] = None, + deprecated: Optional[bool] = None, + methods: Optional[Union[Set[str], List[str]]] = None, + operation_id: Optional[str] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + include_in_schema: bool = True, + response_class: Union[Type[Response], DefaultPlaceholder] = Default( + JSONResponse + ), + name: Optional[str] = None, + route_class_override: Optional[Type[APIRoute]] = None, + callbacks: Optional[List[BaseRoute]] = None, + openapi_extra: Optional[Dict[str, Any]] = None, + generate_unique_id_function: Union[ + Callable[[APIRoute], str], DefaultPlaceholder + ] = Default(generate_unique_id), + ) -> None: + route_class = route_class_override or self.route_class + responses = responses or {} + combined_responses = {**self.responses, **responses} + current_response_class = get_value_or_default( + response_class, self.default_response_class + ) + current_tags = self.tags.copy() + if tags: + current_tags.extend(tags) + current_dependencies = self.dependencies.copy() + if dependencies: + current_dependencies.extend(dependencies) + current_callbacks = self.callbacks.copy() + if callbacks: + current_callbacks.extend(callbacks) + current_generate_unique_id = get_value_or_default( + generate_unique_id_function, self.generate_unique_id_function + ) + route = route_class( + self.prefix + path, + endpoint=endpoint, + response_model=response_model, + status_code=status_code, + tags=current_tags, + dependencies=current_dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=combined_responses, + deprecated=deprecated or self.deprecated, + methods=methods, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema and self.include_in_schema, + response_class=current_response_class, + name=name, + dependency_overrides_provider=self.dependency_overrides_provider, + callbacks=current_callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=current_generate_unique_id, + ) + self.routes.append(route) + + def api_route( + self, + path: str, + *, + response_model: Any = Default(None), + status_code: Optional[int] = None, + tags: Optional[List[Union[str, Enum]]] = None, + dependencies: Optional[Sequence[params.Depends]] = None, + summary: Optional[str] = None, + description: Optional[str] = None, + response_description: str = "Successful Response", + responses: Optional[Dict[Union[int, str], Dict[str, Any]]] = None, + deprecated: Optional[bool] = None, + methods: Optional[List[str]] = None, + operation_id: Optional[str] = None, + response_model_include: Optional[IncEx] = None, + response_model_exclude: Optional[IncEx] = None, + response_model_by_alias: bool = True, + response_model_exclude_unset: bool = False, + response_model_exclude_defaults: bool = False, + response_model_exclude_none: bool = False, + include_in_schema: bool = True, + response_class: Type[Response] = Default(JSONResponse), + name: Optional[str] = None, + callbacks: Optional[List[BaseRoute]] = None, + openapi_extra: Optional[Dict[str, Any]] = None, + generate_unique_id_function: Callable[[APIRoute], str] = Default( + generate_unique_id + ), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_api_route( + path, + func, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=methods, + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + return func + + return decorator + + def add_api_websocket_route( + self, + path: str, + endpoint: Callable[..., Any], + name: Optional[str] = None, + *, + dependencies: Optional[Sequence[params.Depends]] = None, + ) -> None: + current_dependencies = self.dependencies.copy() + if dependencies: + current_dependencies.extend(dependencies) + + route = APIWebSocketRoute( + self.prefix + path, + endpoint=endpoint, + name=name, + dependencies=current_dependencies, + dependency_overrides_provider=self.dependency_overrides_provider, + ) + self.routes.append(route) + + def websocket( + self, + path: Annotated[ + str, + Doc( + """ + WebSocket path. + """ + ), + ], + name: Annotated[ + Optional[str], + Doc( + """ + A name for the WebSocket. Only used internally. + """ + ), + ] = None, + *, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be used for this + WebSocket. + + Read more about it in the + [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). + """ + ), + ] = None, + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Decorate a WebSocket function. + + Read more about it in the + [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). + + **Example** + + ## Example + + ```python + from fastapi import APIRouter, FastAPI, WebSocket + + app = FastAPI() + router = APIRouter() + + @router.websocket("/ws") + async def websocket_endpoint(websocket: WebSocket): + await websocket.accept() + while True: + data = await websocket.receive_text() + await websocket.send_text(f"Message text was: {data}") + + app.include_router(router) + ``` + """ + + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_api_websocket_route( + path, func, name=name, dependencies=dependencies + ) + return func + + return decorator + + def websocket_route( + self, path: str, name: Union[str, None] = None + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_websocket_route(path, func, name=name) + return func + + return decorator + + def include_router( + self, + router: Annotated["APIRouter", Doc("The `APIRouter` to include.")], + *, + prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to all the *path operations* in this + router. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to all the + *path operations* in this router. + + Read more about it in the + [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + default_response_class: Annotated[ + Type[Response], + Doc( + """ + The default response class to be used. + + Read more in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). + """ + ), + ] = Default(JSONResponse), + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses to be shown in OpenAPI. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). + + And in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + OpenAPI callbacks that should apply to all *path operations* in this + router. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark all *path operations* in this router as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include (or not) all the *path operations* in this router in the + generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = True, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> None: + """ + Include another `APIRouter` in the same current `APIRouter`. + + Read more about it in the + [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/). + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + + app = FastAPI() + internal_router = APIRouter() + users_router = APIRouter() + + @users_router.get("/users/") + def read_users(): + return [{"name": "Rick"}, {"name": "Morty"}] + + internal_router.include_router(users_router) + app.include_router(internal_router) + ``` + """ + if prefix: + assert prefix.startswith("/"), "A path prefix must start with '/'" + assert not prefix.endswith( + "/" + ), "A path prefix must not end with '/', as the routes will start with '/'" + else: + for r in router.routes: + path = getattr(r, "path") # noqa: B009 + name = getattr(r, "name", "unknown") + if path is not None and not path: + raise FastAPIError( + f"Prefix and path cannot be both empty (path operation: {name})" + ) + if responses is None: + responses = {} + for route in router.routes: + if isinstance(route, APIRoute): + combined_responses = {**responses, **route.responses} + use_response_class = get_value_or_default( + route.response_class, + router.default_response_class, + default_response_class, + self.default_response_class, + ) + current_tags = [] + if tags: + current_tags.extend(tags) + if route.tags: + current_tags.extend(route.tags) + current_dependencies: List[params.Depends] = [] + if dependencies: + current_dependencies.extend(dependencies) + if route.dependencies: + current_dependencies.extend(route.dependencies) + current_callbacks = [] + if callbacks: + current_callbacks.extend(callbacks) + if route.callbacks: + current_callbacks.extend(route.callbacks) + current_generate_unique_id = get_value_or_default( + route.generate_unique_id_function, + router.generate_unique_id_function, + generate_unique_id_function, + self.generate_unique_id_function, + ) + self.add_api_route( + prefix + route.path, + route.endpoint, + response_model=route.response_model, + status_code=route.status_code, + tags=current_tags, + dependencies=current_dependencies, + summary=route.summary, + description=route.description, + response_description=route.response_description, + responses=combined_responses, + deprecated=route.deprecated or deprecated or self.deprecated, + methods=route.methods, + operation_id=route.operation_id, + response_model_include=route.response_model_include, + response_model_exclude=route.response_model_exclude, + response_model_by_alias=route.response_model_by_alias, + response_model_exclude_unset=route.response_model_exclude_unset, + response_model_exclude_defaults=route.response_model_exclude_defaults, + response_model_exclude_none=route.response_model_exclude_none, + include_in_schema=route.include_in_schema + and self.include_in_schema + and include_in_schema, + response_class=use_response_class, + name=route.name, + route_class_override=type(route), + callbacks=current_callbacks, + openapi_extra=route.openapi_extra, + generate_unique_id_function=current_generate_unique_id, + ) + elif isinstance(route, routing.Route): + methods = list(route.methods or []) + self.add_route( + prefix + route.path, + route.endpoint, + methods=methods, + include_in_schema=route.include_in_schema, + name=route.name, + ) + elif isinstance(route, APIWebSocketRoute): + current_dependencies = [] + if dependencies: + current_dependencies.extend(dependencies) + if route.dependencies: + current_dependencies.extend(route.dependencies) + self.add_api_websocket_route( + prefix + route.path, + route.endpoint, + dependencies=current_dependencies, + name=route.name, + ) + elif isinstance(route, routing.WebSocketRoute): + self.add_websocket_route( + prefix + route.path, route.endpoint, name=route.name + ) + for handler in router.on_startup: + self.add_event_handler("startup", handler) + for handler in router.on_shutdown: + self.add_event_handler("shutdown", handler) + self.lifespan_context = _merge_lifespan_context( + self.lifespan_context, + router.lifespan_context, + ) + + def get( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP GET operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + + app = FastAPI() + router = APIRouter() + + @router.get("/items/") + def read_items(): + return [{"name": "Empanada"}, {"name": "Arepa"}] + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["GET"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def put( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP PUT operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + router = APIRouter() + + @router.put("/items/{item_id}") + def replace_item(item_id: str, item: Item): + return {"message": "Item replaced", "id": item_id} + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["PUT"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def post( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP POST operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + router = APIRouter() + + @router.post("/items/") + def create_item(item: Item): + return {"message": "Item created"} + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["POST"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def delete( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP DELETE operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + + app = FastAPI() + router = APIRouter() + + @router.delete("/items/{item_id}") + def delete_item(item_id: str): + return {"message": "Item deleted"} + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["DELETE"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def options( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP OPTIONS operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + + app = FastAPI() + router = APIRouter() + + @router.options("/items/") + def get_item_options(): + return {"additions": ["Aji", "Guacamole"]} + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["OPTIONS"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def head( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP HEAD operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + router = APIRouter() + + @router.head("/items/", status_code=204) + def get_items_headers(response: Response): + response.headers["X-Cat-Dog"] = "Alone in the world" + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["HEAD"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def patch( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP PATCH operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + router = APIRouter() + + @router.patch("/items/") + def update_item(item: Item): + return {"message": "Item updated in place"} + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["PATCH"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + def trace( + self, + path: Annotated[ + str, + Doc( + """ + The URL path to be used for this *path operation*. + + For example, in `http://example.com/items`, the path is `/items`. + """ + ), + ], + *, + response_model: Annotated[ + Any, + Doc( + """ + The type to use for the response. + + It could be any valid Pydantic *field* type. So, it doesn't have to + be a Pydantic model, it could be other things, like a `list`, `dict`, + etc. + + It will be used for: + + * Documentation: the generated OpenAPI (and the UI at `/docs`) will + show it as the response (JSON Schema). + * Serialization: you could return an arbitrary object and the + `response_model` would be used to serialize that object into the + corresponding JSON. + * Filtering: the JSON sent to the client will only contain the data + (fields) defined in the `response_model`. If you returned an object + that contains an attribute `password` but the `response_model` does + not include that field, the JSON sent to the client would not have + that `password`. + * Validation: whatever you return will be serialized with the + `response_model`, converting any data as necessary to generate the + corresponding JSON. But if the data in the object returned is not + valid, that would mean a violation of the contract with the client, + so it's an error from the API developer. So, FastAPI will raise an + error and return a 500 error code (Internal Server Error). + + Read more about it in the + [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). + """ + ), + ] = Default(None), + status_code: Annotated[ + Optional[int], + Doc( + """ + The default status code to be used for the response. + + You could override the status code by returning a response directly. + + Read more about it in the + [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). + """ + ), + ] = None, + tags: Annotated[ + Optional[List[Union[str, Enum]]], + Doc( + """ + A list of tags to be applied to the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). + """ + ), + ] = None, + dependencies: Annotated[ + Optional[Sequence[params.Depends]], + Doc( + """ + A list of dependencies (using `Depends()`) to be applied to the + *path operation*. + + Read more about it in the + [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). + """ + ), + ] = None, + summary: Annotated[ + Optional[str], + Doc( + """ + A summary for the *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + A description for the *path operation*. + + If not provided, it will be extracted automatically from the docstring + of the *path operation function*. + + It can contain Markdown. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). + """ + ), + ] = None, + response_description: Annotated[ + str, + Doc( + """ + The description for the default response. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = "Successful Response", + responses: Annotated[ + Optional[Dict[Union[int, str], Dict[str, Any]]], + Doc( + """ + Additional responses that could be returned by this *path operation*. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + deprecated: Annotated[ + Optional[bool], + Doc( + """ + Mark this *path operation* as deprecated. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + operation_id: Annotated[ + Optional[str], + Doc( + """ + Custom operation ID to be used by this *path operation*. + + By default, it is generated automatically. + + If you provide a custom operation ID, you need to make sure it is + unique for the whole API. + + You can customize the + operation ID generation with the parameter + `generate_unique_id_function` in the `FastAPI` class. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = None, + response_model_include: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to include only certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_exclude: Annotated[ + Optional[IncEx], + Doc( + """ + Configuration passed to Pydantic to exclude certain fields in the + response data. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = None, + response_model_by_alias: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response model + should be serialized by alias when an alias is used. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). + """ + ), + ] = True, + response_model_exclude_unset: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that were not set and + have their default values. This is different from + `response_model_exclude_defaults` in that if the fields are set, + they will be included in the response, even if the value is the same + as the default. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_defaults: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data + should have all the fields, including the ones that have the same value + as the default. This is different from `response_model_exclude_unset` + in that if the fields are set but contain the same default values, + they will be excluded from the response. + + When `True`, default values are omitted from the response. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). + """ + ), + ] = False, + response_model_exclude_none: Annotated[ + bool, + Doc( + """ + Configuration passed to Pydantic to define if the response data should + exclude fields set to `None`. + + This is much simpler (less smart) than `response_model_exclude_unset` + and `response_model_exclude_defaults`. You probably want to use one of + those two instead of this one, as those allow returning `None` values + when it makes sense. + + Read more about it in the + [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). + """ + ), + ] = False, + include_in_schema: Annotated[ + bool, + Doc( + """ + Include this *path operation* in the generated OpenAPI schema. + + This affects the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi). + """ + ), + ] = True, + response_class: Annotated[ + Type[Response], + Doc( + """ + Response class to be used for this *path operation*. + + This will not be used if you return a response directly. + + Read more about it in the + [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). + """ + ), + ] = Default(JSONResponse), + name: Annotated[ + Optional[str], + Doc( + """ + Name for this *path operation*. Only used internally. + """ + ), + ] = None, + callbacks: Annotated[ + Optional[List[BaseRoute]], + Doc( + """ + List of *path operations* that will be used as OpenAPI callbacks. + + This is only for OpenAPI documentation, the callbacks won't be used + directly. + + It will be added to the generated OpenAPI (e.g. visible at `/docs`). + + Read more about it in the + [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). + """ + ), + ] = None, + openapi_extra: Annotated[ + Optional[Dict[str, Any]], + Doc( + """ + Extra metadata to be included in the OpenAPI schema for this *path + operation*. + + Read more about it in the + [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). + """ + ), + ] = None, + generate_unique_id_function: Annotated[ + Callable[[APIRoute], str], + Doc( + """ + Customize the function used to generate unique IDs for the *path + operations* shown in the generated OpenAPI. + + This is particularly useful when automatically generating clients or + SDKs for your API. + + Read more about it in the + [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). + """ + ), + ] = Default(generate_unique_id), + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add a *path operation* using an HTTP TRACE operation. + + ## Example + + ```python + from fastapi import APIRouter, FastAPI + from pydantic import BaseModel + + class Item(BaseModel): + name: str + description: str | None = None + + app = FastAPI() + router = APIRouter() + + @router.trace("/items/{item_id}") + def trace_item(item_id: str): + return None + + app.include_router(router) + ``` + """ + return self.api_route( + path=path, + response_model=response_model, + status_code=status_code, + tags=tags, + dependencies=dependencies, + summary=summary, + description=description, + response_description=response_description, + responses=responses, + deprecated=deprecated, + methods=["TRACE"], + operation_id=operation_id, + response_model_include=response_model_include, + response_model_exclude=response_model_exclude, + response_model_by_alias=response_model_by_alias, + response_model_exclude_unset=response_model_exclude_unset, + response_model_exclude_defaults=response_model_exclude_defaults, + response_model_exclude_none=response_model_exclude_none, + include_in_schema=include_in_schema, + response_class=response_class, + name=name, + callbacks=callbacks, + openapi_extra=openapi_extra, + generate_unique_id_function=generate_unique_id_function, + ) + + @deprecated( + """ + on_event is deprecated, use lifespan event handlers instead. + + Read more about it in the + [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/). + """ + ) + def on_event( + self, + event_type: Annotated[ + str, + Doc( + """ + The type of event. `startup` or `shutdown`. + """ + ), + ], + ) -> Callable[[DecoratedCallable], DecoratedCallable]: + """ + Add an event handler for the router. + + `on_event` is deprecated, use `lifespan` event handlers instead. + + Read more about it in the + [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/#alternative-events-deprecated). + """ + + def decorator(func: DecoratedCallable) -> DecoratedCallable: + self.add_event_handler(event_type, func) + return func + + return decorator diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__init__.py b/ocr/.venv/Lib/site-packages/fastapi/security/__init__.py new file mode 100644 index 00000000..3aa6bf21 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/__init__.py @@ -0,0 +1,15 @@ +from .api_key import APIKeyCookie as APIKeyCookie +from .api_key import APIKeyHeader as APIKeyHeader +from .api_key import APIKeyQuery as APIKeyQuery +from .http import HTTPAuthorizationCredentials as HTTPAuthorizationCredentials +from .http import HTTPBasic as HTTPBasic +from .http import HTTPBasicCredentials as HTTPBasicCredentials +from .http import HTTPBearer as HTTPBearer +from .http import HTTPDigest as HTTPDigest +from .oauth2 import OAuth2 as OAuth2 +from .oauth2 import OAuth2AuthorizationCodeBearer as OAuth2AuthorizationCodeBearer +from .oauth2 import OAuth2PasswordBearer as OAuth2PasswordBearer +from .oauth2 import OAuth2PasswordRequestForm as OAuth2PasswordRequestForm +from .oauth2 import OAuth2PasswordRequestFormStrict as OAuth2PasswordRequestFormStrict +from .oauth2 import SecurityScopes as SecurityScopes +from .open_id_connect_url import OpenIdConnect as OpenIdConnect diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c83c2003124b0b16e271420b248b4e28c8c743ec GIT binary patch literal 826 zcmZ{i&2G~`5XbF&*!i%NH0=e6k8=*R62}Umrm0XP5DlaVX=Pz8_Rwx)d)?i2EAt?{ z18=~yZ@GsY zu)uO3Ib@;b0C~U$mP6zr8(JP9kJ!laFx$z;Y>YfwI+LBBEDqkVXKe!iGi=29y0g&QG@nSvAwBY37U-lh04*CIi)cW1UY_3S!u zWiwcJA}&B1Jma0w?az=NZD>20OyT(N!M)9f1=spks`PIC!S?z)xUTT-mr~_;>yvwf zOQS?WPZ%sAsgyAFGLa=vRpD6)#XOzKqJYG_nd~y3mm*$4t*9Lo_KBlfDC^dxF{Nsg z_egw_4oMebW>7sq6?>?#uJQP=dT zuB!9ZsXFI;Qxnh3R192|U(N@=zF-)CCSmx>L%51tzK6m$d^0rKrfr(^Y=u@kXXn~^ zJFnziSZEjRqI%AUrFPjatLH*E)vnkT^;`_6+f}=&o=f3Od)A(9pRiAu#&-
`y&3 z{3%|1Cui3nSNv(n)4T?G4sz9>fjpz+dC0T=3CJgueA2JoHR^MJ14^TArsX@GB#0w7 ztXpaE+N-y}$9rj6f8UPqzIvB?T@fU`6<2b|Gq2pc_v+1EkE?E|D80_#>~fjlah~2e zUw!$KbL-CQE4OdlxVef^r>;d&oVW@1)7*{N^GNaVWkR@$TUJqU!!~`xwtN#Ht+b+% zknYubE-gDwywxX5SDeFperd_~G@-Yi~#{jl8L9CMHPpx{CYYZ4`$Sv~#|NPtMQ3oAV1i&kMZh7vC{k z))~VuK`!ya83T3YtZr(ku9DSFqpplLRV}y5{)|8SuxL+VwJUy2kI~BebN>9pyglt( zFzd;5TATH?E*Cv_H-}x#aG{c6X3Xs-n>G%Bjo zz0E)}pSOaDONM@omVw1B^*q)Eb#B7sX50;Zw$52c#M^<-eHKKjxzIaFjk^;ho2qhv zDx!7?-w@bJqzXepj#VRCPipALUbhYG3VDOwP8i=!gzF_z4NCZEhTCq~ztYksLTs2iSq|c$+=aJWAg3E50G}uZP!zRGOW%MO{E90=uc!vQk zl=>Qce`47byf6Ts%&OCogfTpXZ1i2N-vf;hmDFa{_Ha8LcBS8cv92rC3Odr; zY zWiks!?^|a0(>|A;2vl@U zE3^$AE<`NSJk8?4DP@L3FI4W<5DSPbAN+ivo*>ZGkKHUY3k{JioNk~?xJiHAgUAcJ zLoT_&BTf$Iv%ZTh^2SDkZ3i+~53x@Y)?9|y$!5JVp6sr?Hi4M65_TSgf3PV6GyCp z15hki04M~+U08(Tz+)rF#E8w+IO6@FGi+p)IRFFktJMuP(q7zUJ1)X9=CJ8*BhF>) zWGpEiWefye$uRBs_z_{S;q0dJ2$ljtZvy&oe!?Wk5^d~>0MYIc*pAziY_Sy!q#6|n z$#VU4IXPrMeKK^Qb`c}e#8$W~xWKgU^XLdq@`xnSMNFfByNLTb?t^clNDMz0fN>_~ zmKB)qn|tOSxW&8H`{vKgJ;TZES)EgR##Vl-0I9f_M_KZXyT*QgHMN4MZi&xe6y>do zH`U7`M-`+jEvTK77C^Unm`*v47rIh9jv!j20*@d^+ApMe$-|Z&isF$TkKP?JGEsv_ zG!7XhahzpHlB$Z!Wz%|OS(aJ-aJEn}A1n-cQ={KJEoF|97IlF2;Jky2AQR%>;XZg7 z#ZO>}E#p0yV9VOd{lG?bgyOgDZ zBg{f{!*N<@buf>@`f<(7n?=*2@=-pYpD>K>uwT`yF+)0LQKTiuK~%;nO_7vC))Msd zMUcVL{CXUR;vC5(Dqf;uz?$_Ft%@KFR4>1af(Wj)Y*nn2#Xnj(i(oy%=R>PR0P!K| zk@YWYZbbgO^`d&4y|4V`>^Ic79)=vb`ZQV0p&BH$s<*%^h(Sm}cd)$5n^1ckOWjn> zv-ofbSNGxkROqX5+{C6Lm3<9tB;|f zdOIG&L-neS6H(nQW1_nkVeqHpq3AfyK}QrGNkU26WpbKv@+nTj)l|HCP}K;B_@sD& zUJ`{9XQ)tgY4-`~k_JT?`AC+el|6$rX%x3RU_%p${OQ;c`+sFanO$RXgdsmR2@+>% zf4+!fgt-*8Qk|4PM@>d4i(piDnD9Tj$c|3!U zs68@+_qC#@)_+_k*LeR|nOuW=Y$n&rp218$iu-vcA3A#ZSmzpEUnPoKFpkf+Vu7jTR-lDP+P{#)k$I_B^Pn#|XzAZfL}kQS3(2gh>iSG|2Y zJ7{mjIMl}xLqna|$it%?`&7S0|Af7oQmRu3eE>oKm#N?Xiae;93~`(RRY}X=(*N&$ an@+wY{r0FDHLGgsPtC05YWbSC;QR;mEi>f+ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..818b9ca0bef10854fb263dd26631467beedac8ab GIT binary patch literal 475 zcmY*VJ5R$f5Vn)FiqcdF21fP_v^%O0F9{(*8LA2?vShjOQPL)Hu-!_XVP)k%@RzbO z@fVo57!c(o-^<^9_fY+QL{OsFz5E63dmC(vkHHB(bAU<`Nefca)T88*NKg9DMEXx& zN@Xx1N#_GGB%w__fo!F7yEzjEvNpLb|0scAF-g5C0UrWMM+7=(y%7>4WuQGQZ91ir zP&7T0JwOS(5+#h2ZWD6na^6IoBV<(o`Z4E^D^au{jCQwYxp6c*oQtYbR@hus1~I;| z`iP{2|SbloNRHoTr4b_@m=QCz<3x~DH zmSPTu-3wzyoe%KxV?@0*WvGY We}n26b4@t<-u;-iv@Lf`_WUoc19*l2 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5815adc750574a27e13fb3e2ec1af99f6067463b GIT binary patch literal 10859 zcmeHN+m9R9dFKp=!^@JZy~>iKIMa2TF74H>FN)i2?Le26Vgbp@m8B|R))>xm4yBQX z9OleW@@}|5>-eEB1_~5tADRO8XL%+~zyC@ACV;!=P5Hs7fx<;R;eR1V3A7yM$U)F^Y_M849P;e64rc500p=S%)<=Tzeq=gaC9Tig6_M@qqkDn$_8p>Vhpl^}BkZ0doeth8Q_t^XP#URtQ~ane!lJK+jD{>9Z%{BDfIPykb7@{CdSO1CD*3afd(apb_OX`eaUE$T7YhtsC@lvvM zuXRNVS9BxK@x%RpuUPoIbx&B-Y+*@W%W91}Sa-dLqH8&!6`_w5Vc(Cepl$U-uY1>O z4rw+m551U}D|(`f0a|f$ET(Rv=;P!pWS8e-8 zeaBB)infg<*|x0V=;C}BNjXcoQ?~7>LkClZwtbkBPotibqsEoZo!gjKxO4x$2)cK7 zwnX?K3VJ&?u&H+(-v?J-y1o;%X~-~j;5Z?zhmPMDmKR!K&j-`(?lBX$JsC!*a#|u`P@~JQTc2wPVc{MRi4uh~C+iPI+Z)2FaWIKj0Y)rzx7#0$V~rp4l|Q^bz3e%8b-pZa$lpmb4b39 zC$x}|Xz9zk#-GRf5yIX+`m_bYFY_4s%Rk!x8(I~U2oRtL--M)30k7v}rvHFTUT|Ir_eW=fiIziE;yNkaxBB^g+(n270eL z$lcfP=TR~S2GW9?gBjAd4|PSH=pLHNLJtjTT!1bWeq6TgmJiJf<++4@Y9=&^dLcGK z;kQqkVCG=xOh`w2T`#ijYbb>#lG)O%R?+t76RRcG(;jhAD)SwiQbc{(Z9$_A|I)?& z18Tz8k^Gr9(C+8n$Ju?a6PvDx9M4bp@fpkq z3c9F7C5-dHEs_*GADW~?l2uBGMGp(IPWk7N#5EdbsL$1o615Zdu?53p+c(h|(s}5A zTFqCrs%C=44b6OP7}fDzRsHJ~b$ZK0^fV=BD9IyTU zBaZ{34}|Qe1`8R06+nG5GUP-1+uMV{bh%ZTsJ$Mo z&g=97z=k1`SN*w1g2mD<$ri6!3FaMeuV=lM(p;^p z$|0rKMsHFZk9iTVtV2_*u58eegc}{PQs)*|v;oc>*M>JFp@eK|U(Hy-&Cx=CIGkN( zN^4fiNa+mfZ`C)MHW_cFU#%anq^z*AnZ<|eY4w`5l5)ne9%=Of(@bH}_N}_Xb|Nld z`hI6*xVZM{FNQNnA;g=BzmUK&i(LV=J!u#EzMg}N_MOR4D(H5a| z@?loR`rUQwp%;3)K13w4nj7TSG!qvjOIQ98l+ga=iD^w0d^#4tGY*4@Ag}c3uO|o{ zUth-7CpsiMoiA*eWVW4Oz@AP_@bVtiOWT1*38>s=z&CyI0I+bBt)2`XdUOP<%Gt~= zL7Bk%+L&9)>Ixb(=)j35yR-)&4E^Zyc!}9(ZN%t1)l^x!2}Fl-WpH%T=C!RRjiJyJ zoE5knA_CgCn%CfE3-}O^V9}qv#EJb$mh3!)xp%-%clZ%ypUu?gTs zkjDhnD;d}A1Ua6Hi^DZ=euPjBaIv1?Vr>i;6IL!TIyM;{=eOem$1Nn`oO)3bvX;M3 z$tooyEKItC0bV^pbQV=`?GUhMkQCuz23zkS!|wm=g;~HifME_xu~`|SVTOm2W{jbZT5ka+?OCg}S#Au0mFf0J{Kzs-BvL7{7)u0S~e{bB1i+6I}nvsht(M(jmUu)<0ZfH6B z49s`5N4Y`q{aJVB18paNP&z0dR0id6hgzajgVLblRvCiVw&i)OWq%kz%3 z&AKk<>CFWs^*JUW5$???_)doz7yRH6B%O4qg7S0-63R43egOLel|P{<$5nFM;)UB? zk1DsgN!68hy)KU!7gR-=Vi+DpG&%NDpBecC@)aUa&R<;MFlS?_-=(FHn;={}aWWd` zJhe;)2X+P=*y8P0Y`9M3@Y3RPD2Pr3my%X_oFxhH{~ez250NOZ!qk?ul0L`2g>stB zj}0?%pEdJiy|92DaIhcG=?1>xd5p1e;(FAMyB<%`@Dzz-|3i5q6poWLbjA^(0NHd$ zgrcwxp6~}qO62FS!MCsIOXff7d2)xy0pZWbdTp%yp}ss;{tx{d$)dP_d#01H+RrwtFo%{dB0DfrlGFx^W$xol~B%)_}C&7AkM#mt#ssyCZjDD<3rezY? z$JJe4KBB9DaVi`%vUA^uB)fD|g^E%8@d4ex3?W7FDA zD3o!+aC1{)&9SX)CK25sGG%g26-RZZK+_4DCqY%~i-4w?#ZFA(D@giVg`^3@oY>|u zUQW=c)e3?Kp7=ZnR6Ywe8tZRAB1F5(F#l8F#31z^=JM;dJXv;b@g!PX@B+BV%8x5~lR8iK8} z!(c1@^dJqk&Z}#Gb*t$7QqM+PRpnQ}Nr4gs*8Y#;onyxH$|$m|fRj3<&kmea|Noc3 zNqz%DHXQ@Kn{s~&Tj+Zl21*&Hr;jmnKO3mY~aXSlYoda=H@3=LxGUt7AO!R-yq7P{o@?tzduI97E!*248w@$0U{R7 zUwmp<qT-bcN$4x$i#LwsG#1jUGlZVh@BBgrW{uNn zLx9T}`q>!&wjkuIVHH`W1DEu3i^g)=H@&l3r}1Qw+JGvCr1zf&L{6;Gh>xqI3`F^`GH)>Fq`H~}fbR*rESIa@{EE3%iak)?hsyIBw@hFCH uo9HWPPfj|3xb&*}8QOPn2)jNm) literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e104f897d611316b32369b0821621e646fbe43f GIT binary patch literal 15503 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 AvH$=8 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d81c79e42a56eee99da6ded2325a0a94083bcf85 GIT binary patch literal 2757 zcmcgu&2Jk;6yGm@+iBvamC6C;glZ{uLG)B1)U;_KqNG)u3Tb6&J=qz@la6=Ync1X{ zj0A13l{mqL190Q-;LeT9-Vi6mnF|ss@69@iQ->azwV&r}-@Nym-+Rw#t5tWP)xT+r zAEEa<4(3|`gB$SG5(IOYE1i)Wx-RxT>5cp_uzg>aM&+<<`+=;Cs$tdkOR_eqhjrU8 z%f_e~Hf_HmTcf3LX>=|;=Q{gm2JT@@Ve8}TW2{XA#HOCE~Y;WJc{WRwG9hj&*;7>BHac>*fqHFJc5Z$@= z;O6GW#_g?+m)F*lBsJ7a&{5U>^2 zei4KX<^e9}l@Ep-#&rVC!m&YSco3SIAy15mDI!K<;&^( z#XM5-@O`TSjl{M+ zEHehKiG%+Hn}o-!2AcKl!g;To zH3!ZAX&v&D{^~&tqp|bt=7calpqVslL<~rh5)1&c4kSsHI4n3a=uw4BRC?aQcg&WuJ*GC65H^ii*e}_uV`)lL?V!>+rPq!D004Ni%Xl!GG{(NcSOX zXBqId06#+=1OX@m0Ma*W1nA~7g&9H!z$HQOELeZU3k)W30+ASjt6~g+b8OfFooI3y z_(J$oI)WvDUzp)6<`;AxB`nwvS}BRs^s(S)1Yhg|y|G~-D$Rax!LNQ7gmI?s)MxHX zZ|X$u)EhUa&YrjD!zh>rAWO`Fl<7g9S1s6YL%CDV+o#INXDQ<{FOBR^EsAW~jH0|6 z*`yamHZds-v`#4xG?#-y8|Evk(ysmFsPi!Kx43n^_egW4dwY94O?G=5Tt7DHxQB;+ z4&lH}w7%I(W7X^K^JKqwSM2n(F#O7x#*gVP*S!ISbUhYV^{lvE#q1gh7R5#3i!vp< z;|W?Q5@Dif1rF9|j(06^tFM;)x_fx>l#|_~t$Ae@fq7YRlc^+z+;QBnwjk6$!&k3? z_{yESd(QVRbANEZ@TQ(#MTk|~_$I*m_tJX?74e}n#o82X<*ifc<#1&S!|8-nQ;Tr2FO;5T%>b`PDa@i?h*ew#P%!C4 z(Wfxd_?Gu&(+%9R>!ExV1i=~L6t8re3ZcyFQ3Q0zBnKKaqv%OSB~~36RiX$A1#qH@ z`+RMbszFa7h`& m;faQSDcT}gfOrN}dG*8MCO*PUpqD{3ou=1xi)Yzg_5THT*X2q8 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc b/ocr/.venv/Lib/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b724b862c9d6308c6dd41e84ba7e2d39ba17e6a1 GIT binary patch literal 509 zcmY*V&udgM5Y8mo=eoG1cxw;Ri-&ix1&<=4v=>3zLlt2SJmSmjZrb-FBzX%fyEp#^ z&wBJ<%C)Ed3q7cl6{HT#mwcI-%s10drxQjt`S#d81;%bNxo-uL*W}?jfnf$3*1`;0 zKI6a)M?i7Fj6jY8#hf3oxir#@zRH<2#U(2r+)^DYc^Y51X!}k#Y4m<@4W>gq#AWa8 z7oFd$C2E7dTIpuMRCtVo?`l%?&m`Rh`6+ogBG|AX4P4Usos|3lCAP5TTd{!+DWTrt zocc1KN4SHd64FDbeYCk#1kJ_PhZU0q?{Ez}u? z>)1PW;jsItn+9X`=B?^$uZ~yPt<*dFSp^&MnbY;PUSLpj9in#jBw#&w8`md8v`sj6 z>-1zn)&GzGS4Xwekd=ioffN$eM(eJ`L+4o?YqvMxt XZ-xe6 Optional[str]: + api_key = request.query_params.get(self.model.name) + if not api_key: + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return api_key + + +class APIKeyHeader(APIKeyBase): + """ + API key authentication using a header. + + This defines the name of the header that should be provided in the request with + the API key and integrates that into the OpenAPI documentation. It extracts + the key value sent in the header automatically and provides it as the dependency + result. But it doesn't define how to send that key to the client. + + ## Usage + + Create an instance object and use that object as the dependency in `Depends()`. + + The dependency result will be a string containing the key value. + + ## Example + + ```python + from fastapi import Depends, FastAPI + from fastapi.security import APIKeyHeader + + app = FastAPI() + + header_scheme = APIKeyHeader(name="x-key") + + + @app.get("/items/") + async def read_items(key: str = Depends(header_scheme)): + return {"key": key} + ``` + """ + + def __init__( + self, + *, + name: Annotated[str, Doc("Header name.")], + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if the header is not provided, `APIKeyHeader` will + automatically cancel the request and send the client an error. + + If `auto_error` is set to `False`, when the header is not available, + instead of erroring out, the dependency result will be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, in a header or + in an HTTP Bearer token). + """ + ), + ] = True, + ): + self.model: APIKey = APIKey( + **{"in": APIKeyIn.header}, # type: ignore[arg-type] + name=name, + description=description, + ) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__(self, request: Request) -> Optional[str]: + api_key = request.headers.get(self.model.name) + if not api_key: + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return api_key + + +class APIKeyCookie(APIKeyBase): + """ + API key authentication using a cookie. + + This defines the name of the cookie that should be provided in the request with + the API key and integrates that into the OpenAPI documentation. It extracts + the key value sent in the cookie automatically and provides it as the dependency + result. But it doesn't define how to set that cookie. + + ## Usage + + Create an instance object and use that object as the dependency in `Depends()`. + + The dependency result will be a string containing the key value. + + ## Example + + ```python + from fastapi import Depends, FastAPI + from fastapi.security import APIKeyCookie + + app = FastAPI() + + cookie_scheme = APIKeyCookie(name="session") + + + @app.get("/items/") + async def read_items(session: str = Depends(cookie_scheme)): + return {"session": session} + ``` + """ + + def __init__( + self, + *, + name: Annotated[str, Doc("Cookie name.")], + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if the cookie is not provided, `APIKeyCookie` will + automatically cancel the request and send the client an error. + + If `auto_error` is set to `False`, when the cookie is not available, + instead of erroring out, the dependency result will be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, in a cookie or + in an HTTP Bearer token). + """ + ), + ] = True, + ): + self.model: APIKey = APIKey( + **{"in": APIKeyIn.cookie}, # type: ignore[arg-type] + name=name, + description=description, + ) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__(self, request: Request) -> Optional[str]: + api_key = request.cookies.get(self.model.name) + if not api_key: + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return api_key diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/base.py b/ocr/.venv/Lib/site-packages/fastapi/security/base.py new file mode 100644 index 00000000..c43555de --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/base.py @@ -0,0 +1,6 @@ +from fastapi.openapi.models import SecurityBase as SecurityBaseModel + + +class SecurityBase: + model: SecurityBaseModel + scheme_name: str diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/http.py b/ocr/.venv/Lib/site-packages/fastapi/security/http.py new file mode 100644 index 00000000..a142b135 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/http.py @@ -0,0 +1,420 @@ +import binascii +from base64 import b64decode +from typing import Optional + +from fastapi.exceptions import HTTPException +from fastapi.openapi.models import HTTPBase as HTTPBaseModel +from fastapi.openapi.models import HTTPBearer as HTTPBearerModel +from fastapi.security.base import SecurityBase +from fastapi.security.utils import get_authorization_scheme_param +from pydantic import BaseModel +from starlette.requests import Request +from starlette.status import HTTP_401_UNAUTHORIZED, HTTP_403_FORBIDDEN +from typing_extensions import Annotated, Doc + + +class HTTPBasicCredentials(BaseModel): + """ + The HTTP Basic credentials given as the result of using `HTTPBasic` in a + dependency. + + Read more about it in the + [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/). + """ + + username: Annotated[str, Doc("The HTTP Basic username.")] + password: Annotated[str, Doc("The HTTP Basic password.")] + + +class HTTPAuthorizationCredentials(BaseModel): + """ + The HTTP authorization credentials in the result of using `HTTPBearer` or + `HTTPDigest` in a dependency. + + The HTTP authorization header value is split by the first space. + + The first part is the `scheme`, the second part is the `credentials`. + + For example, in an HTTP Bearer token scheme, the client will send a header + like: + + ``` + Authorization: Bearer deadbeef12346 + ``` + + In this case: + + * `scheme` will have the value `"Bearer"` + * `credentials` will have the value `"deadbeef12346"` + """ + + scheme: Annotated[ + str, + Doc( + """ + The HTTP authorization scheme extracted from the header value. + """ + ), + ] + credentials: Annotated[ + str, + Doc( + """ + The HTTP authorization credentials extracted from the header value. + """ + ), + ] + + +class HTTPBase(SecurityBase): + def __init__( + self, + *, + scheme: str, + scheme_name: Optional[str] = None, + description: Optional[str] = None, + auto_error: bool = True, + ): + self.model = HTTPBaseModel(scheme=scheme, description=description) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__( + self, request: Request + ) -> Optional[HTTPAuthorizationCredentials]: + authorization = request.headers.get("Authorization") + scheme, credentials = get_authorization_scheme_param(authorization) + if not (authorization and scheme and credentials): + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) + + +class HTTPBasic(HTTPBase): + """ + HTTP Basic authentication. + + ## Usage + + Create an instance object and use that object as the dependency in `Depends()`. + + The dependency result will be an `HTTPBasicCredentials` object containing the + `username` and the `password`. + + Read more about it in the + [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/). + + ## Example + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + from fastapi.security import HTTPBasic, HTTPBasicCredentials + + app = FastAPI() + + security = HTTPBasic() + + + @app.get("/users/me") + def read_current_user(credentials: Annotated[HTTPBasicCredentials, Depends(security)]): + return {"username": credentials.username, "password": credentials.password} + ``` + """ + + def __init__( + self, + *, + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + realm: Annotated[ + Optional[str], + Doc( + """ + HTTP Basic authentication realm. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if the HTTP Basic authentication is not provided (a + header), `HTTPBasic` will automatically cancel the request and send the + client an error. + + If `auto_error` is set to `False`, when the HTTP Basic authentication + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, in HTTP Basic + authentication or in an HTTP Bearer token). + """ + ), + ] = True, + ): + self.model = HTTPBaseModel(scheme="basic", description=description) + self.scheme_name = scheme_name or self.__class__.__name__ + self.realm = realm + self.auto_error = auto_error + + async def __call__( # type: ignore + self, request: Request + ) -> Optional[HTTPBasicCredentials]: + authorization = request.headers.get("Authorization") + scheme, param = get_authorization_scheme_param(authorization) + if self.realm: + unauthorized_headers = {"WWW-Authenticate": f'Basic realm="{self.realm}"'} + else: + unauthorized_headers = {"WWW-Authenticate": "Basic"} + if not authorization or scheme.lower() != "basic": + if self.auto_error: + raise HTTPException( + status_code=HTTP_401_UNAUTHORIZED, + detail="Not authenticated", + headers=unauthorized_headers, + ) + else: + return None + invalid_user_credentials_exc = HTTPException( + status_code=HTTP_401_UNAUTHORIZED, + detail="Invalid authentication credentials", + headers=unauthorized_headers, + ) + try: + data = b64decode(param).decode("ascii") + except (ValueError, UnicodeDecodeError, binascii.Error): + raise invalid_user_credentials_exc # noqa: B904 + username, separator, password = data.partition(":") + if not separator: + raise invalid_user_credentials_exc + return HTTPBasicCredentials(username=username, password=password) + + +class HTTPBearer(HTTPBase): + """ + HTTP Bearer token authentication. + + ## Usage + + Create an instance object and use that object as the dependency in `Depends()`. + + The dependency result will be an `HTTPAuthorizationCredentials` object containing + the `scheme` and the `credentials`. + + ## Example + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer + + app = FastAPI() + + security = HTTPBearer() + + + @app.get("/users/me") + def read_current_user( + credentials: Annotated[HTTPAuthorizationCredentials, Depends(security)] + ): + return {"scheme": credentials.scheme, "credentials": credentials.credentials} + ``` + """ + + def __init__( + self, + *, + bearerFormat: Annotated[Optional[str], Doc("Bearer token format.")] = None, + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if the HTTP Bearer token not provided (in an + `Authorization` header), `HTTPBearer` will automatically cancel the + request and send the client an error. + + If `auto_error` is set to `False`, when the HTTP Bearer token + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, in an HTTP + Bearer token or in a cookie). + """ + ), + ] = True, + ): + self.model = HTTPBearerModel(bearerFormat=bearerFormat, description=description) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__( + self, request: Request + ) -> Optional[HTTPAuthorizationCredentials]: + authorization = request.headers.get("Authorization") + scheme, credentials = get_authorization_scheme_param(authorization) + if not (authorization and scheme and credentials): + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + if scheme.lower() != "bearer": + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, + detail="Invalid authentication credentials", + ) + else: + return None + return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) + + +class HTTPDigest(HTTPBase): + """ + HTTP Digest authentication. + + ## Usage + + Create an instance object and use that object as the dependency in `Depends()`. + + The dependency result will be an `HTTPAuthorizationCredentials` object containing + the `scheme` and the `credentials`. + + ## Example + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + from fastapi.security import HTTPAuthorizationCredentials, HTTPDigest + + app = FastAPI() + + security = HTTPDigest() + + + @app.get("/users/me") + def read_current_user( + credentials: Annotated[HTTPAuthorizationCredentials, Depends(security)] + ): + return {"scheme": credentials.scheme, "credentials": credentials.credentials} + ``` + """ + + def __init__( + self, + *, + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if the HTTP Digest not provided, `HTTPDigest` will + automatically cancel the request and send the client an error. + + If `auto_error` is set to `False`, when the HTTP Digest is not + available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, in HTTP + Digest or in a cookie). + """ + ), + ] = True, + ): + self.model = HTTPBaseModel(scheme="digest", description=description) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__( + self, request: Request + ) -> Optional[HTTPAuthorizationCredentials]: + authorization = request.headers.get("Authorization") + scheme, credentials = get_authorization_scheme_param(authorization) + if not (authorization and scheme and credentials): + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + if scheme.lower() != "digest": + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, + detail="Invalid authentication credentials", + ) + return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/oauth2.py b/ocr/.venv/Lib/site-packages/fastapi/security/oauth2.py new file mode 100644 index 00000000..9720cace --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/oauth2.py @@ -0,0 +1,638 @@ +from typing import Any, Dict, List, Optional, Union, cast + +from fastapi.exceptions import HTTPException +from fastapi.openapi.models import OAuth2 as OAuth2Model +from fastapi.openapi.models import OAuthFlows as OAuthFlowsModel +from fastapi.param_functions import Form +from fastapi.security.base import SecurityBase +from fastapi.security.utils import get_authorization_scheme_param +from starlette.requests import Request +from starlette.status import HTTP_401_UNAUTHORIZED, HTTP_403_FORBIDDEN + +# TODO: import from typing when deprecating Python 3.9 +from typing_extensions import Annotated, Doc + + +class OAuth2PasswordRequestForm: + """ + This is a dependency class to collect the `username` and `password` as form data + for an OAuth2 password flow. + + The OAuth2 specification dictates that for a password flow the data should be + collected using form data (instead of JSON) and that it should have the specific + fields `username` and `password`. + + All the initialization parameters are extracted from the request. + + Read more about it in the + [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). + + ## Example + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + from fastapi.security import OAuth2PasswordRequestForm + + app = FastAPI() + + + @app.post("/login") + def login(form_data: Annotated[OAuth2PasswordRequestForm, Depends()]): + data = {} + data["scopes"] = [] + for scope in form_data.scopes: + data["scopes"].append(scope) + if form_data.client_id: + data["client_id"] = form_data.client_id + if form_data.client_secret: + data["client_secret"] = form_data.client_secret + return data + ``` + + Note that for OAuth2 the scope `items:read` is a single scope in an opaque string. + You could have custom internal logic to separate it by colon caracters (`:`) or + similar, and get the two parts `items` and `read`. Many applications do that to + group and organize permissions, you could do it as well in your application, just + know that that it is application specific, it's not part of the specification. + """ + + def __init__( + self, + *, + grant_type: Annotated[ + Union[str, None], + Form(pattern="password"), + Doc( + """ + The OAuth2 spec says it is required and MUST be the fixed string + "password". Nevertheless, this dependency class is permissive and + allows not passing it. If you want to enforce it, use instead the + `OAuth2PasswordRequestFormStrict` dependency. + """ + ), + ] = None, + username: Annotated[ + str, + Form(), + Doc( + """ + `username` string. The OAuth2 spec requires the exact field name + `username`. + """ + ), + ], + password: Annotated[ + str, + Form(), + Doc( + """ + `password` string. The OAuth2 spec requires the exact field name + `password". + """ + ), + ], + scope: Annotated[ + str, + Form(), + Doc( + """ + A single string with actually several scopes separated by spaces. Each + scope is also a string. + + For example, a single string with: + + ```python + "items:read items:write users:read profile openid" + ```` + + would represent the scopes: + + * `items:read` + * `items:write` + * `users:read` + * `profile` + * `openid` + """ + ), + ] = "", + client_id: Annotated[ + Union[str, None], + Form(), + Doc( + """ + If there's a `client_id`, it can be sent as part of the form fields. + But the OAuth2 specification recommends sending the `client_id` and + `client_secret` (if any) using HTTP Basic auth. + """ + ), + ] = None, + client_secret: Annotated[ + Union[str, None], + Form(), + Doc( + """ + If there's a `client_password` (and a `client_id`), they can be sent + as part of the form fields. But the OAuth2 specification recommends + sending the `client_id` and `client_secret` (if any) using HTTP Basic + auth. + """ + ), + ] = None, + ): + self.grant_type = grant_type + self.username = username + self.password = password + self.scopes = scope.split() + self.client_id = client_id + self.client_secret = client_secret + + +class OAuth2PasswordRequestFormStrict(OAuth2PasswordRequestForm): + """ + This is a dependency class to collect the `username` and `password` as form data + for an OAuth2 password flow. + + The OAuth2 specification dictates that for a password flow the data should be + collected using form data (instead of JSON) and that it should have the specific + fields `username` and `password`. + + All the initialization parameters are extracted from the request. + + The only difference between `OAuth2PasswordRequestFormStrict` and + `OAuth2PasswordRequestForm` is that `OAuth2PasswordRequestFormStrict` requires the + client to send the form field `grant_type` with the value `"password"`, which + is required in the OAuth2 specification (it seems that for no particular reason), + while for `OAuth2PasswordRequestForm` `grant_type` is optional. + + Read more about it in the + [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). + + ## Example + + ```python + from typing import Annotated + + from fastapi import Depends, FastAPI + from fastapi.security import OAuth2PasswordRequestForm + + app = FastAPI() + + + @app.post("/login") + def login(form_data: Annotated[OAuth2PasswordRequestFormStrict, Depends()]): + data = {} + data["scopes"] = [] + for scope in form_data.scopes: + data["scopes"].append(scope) + if form_data.client_id: + data["client_id"] = form_data.client_id + if form_data.client_secret: + data["client_secret"] = form_data.client_secret + return data + ``` + + Note that for OAuth2 the scope `items:read` is a single scope in an opaque string. + You could have custom internal logic to separate it by colon caracters (`:`) or + similar, and get the two parts `items` and `read`. Many applications do that to + group and organize permissions, you could do it as well in your application, just + know that that it is application specific, it's not part of the specification. + + + grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password". + This dependency is strict about it. If you want to be permissive, use instead the + OAuth2PasswordRequestForm dependency class. + username: username string. The OAuth2 spec requires the exact field name "username". + password: password string. The OAuth2 spec requires the exact field name "password". + scope: Optional string. Several scopes (each one a string) separated by spaces. E.g. + "items:read items:write users:read profile openid" + client_id: optional string. OAuth2 recommends sending the client_id and client_secret (if any) + using HTTP Basic auth, as: client_id:client_secret + client_secret: optional string. OAuth2 recommends sending the client_id and client_secret (if any) + using HTTP Basic auth, as: client_id:client_secret + """ + + def __init__( + self, + grant_type: Annotated[ + str, + Form(pattern="password"), + Doc( + """ + The OAuth2 spec says it is required and MUST be the fixed string + "password". This dependency is strict about it. If you want to be + permissive, use instead the `OAuth2PasswordRequestForm` dependency + class. + """ + ), + ], + username: Annotated[ + str, + Form(), + Doc( + """ + `username` string. The OAuth2 spec requires the exact field name + `username`. + """ + ), + ], + password: Annotated[ + str, + Form(), + Doc( + """ + `password` string. The OAuth2 spec requires the exact field name + `password". + """ + ), + ], + scope: Annotated[ + str, + Form(), + Doc( + """ + A single string with actually several scopes separated by spaces. Each + scope is also a string. + + For example, a single string with: + + ```python + "items:read items:write users:read profile openid" + ```` + + would represent the scopes: + + * `items:read` + * `items:write` + * `users:read` + * `profile` + * `openid` + """ + ), + ] = "", + client_id: Annotated[ + Union[str, None], + Form(), + Doc( + """ + If there's a `client_id`, it can be sent as part of the form fields. + But the OAuth2 specification recommends sending the `client_id` and + `client_secret` (if any) using HTTP Basic auth. + """ + ), + ] = None, + client_secret: Annotated[ + Union[str, None], + Form(), + Doc( + """ + If there's a `client_password` (and a `client_id`), they can be sent + as part of the form fields. But the OAuth2 specification recommends + sending the `client_id` and `client_secret` (if any) using HTTP Basic + auth. + """ + ), + ] = None, + ): + super().__init__( + grant_type=grant_type, + username=username, + password=password, + scope=scope, + client_id=client_id, + client_secret=client_secret, + ) + + +class OAuth2(SecurityBase): + """ + This is the base class for OAuth2 authentication, an instance of it would be used + as a dependency. All other OAuth2 classes inherit from it and customize it for + each OAuth2 flow. + + You normally would not create a new class inheriting from it but use one of the + existing subclasses, and maybe compose them if you want to support multiple flows. + + Read more about it in the + [FastAPI docs for Security](https://fastapi.tiangolo.com/tutorial/security/). + """ + + def __init__( + self, + *, + flows: Annotated[ + Union[OAuthFlowsModel, Dict[str, Dict[str, Any]]], + Doc( + """ + The dictionary of OAuth2 flows. + """ + ), + ] = OAuthFlowsModel(), + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if no HTTP Authorization header is provided, required for + OAuth2 authentication, it will automatically cancel the request and + send the client an error. + + If `auto_error` is set to `False`, when the HTTP Authorization header + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, with OAuth2 + or in a cookie). + """ + ), + ] = True, + ): + self.model = OAuth2Model( + flows=cast(OAuthFlowsModel, flows), description=description + ) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__(self, request: Request) -> Optional[str]: + authorization = request.headers.get("Authorization") + if not authorization: + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return authorization + + +class OAuth2PasswordBearer(OAuth2): + """ + OAuth2 flow for authentication using a bearer token obtained with a password. + An instance of it would be used as a dependency. + + Read more about it in the + [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). + """ + + def __init__( + self, + tokenUrl: Annotated[ + str, + Doc( + """ + The URL to obtain the OAuth2 token. This would be the *path operation* + that has `OAuth2PasswordRequestForm` as a dependency. + """ + ), + ], + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + scopes: Annotated[ + Optional[Dict[str, str]], + Doc( + """ + The OAuth2 scopes that would be required by the *path operations* that + use this dependency. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if no HTTP Authorization header is provided, required for + OAuth2 authentication, it will automatically cancel the request and + send the client an error. + + If `auto_error` is set to `False`, when the HTTP Authorization header + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, with OAuth2 + or in a cookie). + """ + ), + ] = True, + ): + if not scopes: + scopes = {} + flows = OAuthFlowsModel( + password=cast(Any, {"tokenUrl": tokenUrl, "scopes": scopes}) + ) + super().__init__( + flows=flows, + scheme_name=scheme_name, + description=description, + auto_error=auto_error, + ) + + async def __call__(self, request: Request) -> Optional[str]: + authorization = request.headers.get("Authorization") + scheme, param = get_authorization_scheme_param(authorization) + if not authorization or scheme.lower() != "bearer": + if self.auto_error: + raise HTTPException( + status_code=HTTP_401_UNAUTHORIZED, + detail="Not authenticated", + headers={"WWW-Authenticate": "Bearer"}, + ) + else: + return None + return param + + +class OAuth2AuthorizationCodeBearer(OAuth2): + """ + OAuth2 flow for authentication using a bearer token obtained with an OAuth2 code + flow. An instance of it would be used as a dependency. + """ + + def __init__( + self, + authorizationUrl: str, + tokenUrl: Annotated[ + str, + Doc( + """ + The URL to obtain the OAuth2 token. + """ + ), + ], + refreshUrl: Annotated[ + Optional[str], + Doc( + """ + The URL to refresh the token and obtain a new one. + """ + ), + ] = None, + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + scopes: Annotated[ + Optional[Dict[str, str]], + Doc( + """ + The OAuth2 scopes that would be required by the *path operations* that + use this dependency. + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if no HTTP Authorization header is provided, required for + OAuth2 authentication, it will automatically cancel the request and + send the client an error. + + If `auto_error` is set to `False`, when the HTTP Authorization header + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, with OAuth2 + or in a cookie). + """ + ), + ] = True, + ): + if not scopes: + scopes = {} + flows = OAuthFlowsModel( + authorizationCode=cast( + Any, + { + "authorizationUrl": authorizationUrl, + "tokenUrl": tokenUrl, + "refreshUrl": refreshUrl, + "scopes": scopes, + }, + ) + ) + super().__init__( + flows=flows, + scheme_name=scheme_name, + description=description, + auto_error=auto_error, + ) + + async def __call__(self, request: Request) -> Optional[str]: + authorization = request.headers.get("Authorization") + scheme, param = get_authorization_scheme_param(authorization) + if not authorization or scheme.lower() != "bearer": + if self.auto_error: + raise HTTPException( + status_code=HTTP_401_UNAUTHORIZED, + detail="Not authenticated", + headers={"WWW-Authenticate": "Bearer"}, + ) + else: + return None # pragma: nocover + return param + + +class SecurityScopes: + """ + This is a special class that you can define in a parameter in a dependency to + obtain the OAuth2 scopes required by all the dependencies in the same chain. + + This way, multiple dependencies can have different scopes, even when used in the + same *path operation*. And with this, you can access all the scopes required in + all those dependencies in a single place. + + Read more about it in the + [FastAPI docs for OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/). + """ + + def __init__( + self, + scopes: Annotated[ + Optional[List[str]], + Doc( + """ + This will be filled by FastAPI. + """ + ), + ] = None, + ): + self.scopes: Annotated[ + List[str], + Doc( + """ + The list of all the scopes required by dependencies. + """ + ), + ] = scopes or [] + self.scope_str: Annotated[ + str, + Doc( + """ + All the scopes required by all the dependencies in a single string + separated by spaces, as defined in the OAuth2 specification. + """ + ), + ] = " ".join(self.scopes) diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/open_id_connect_url.py b/ocr/.venv/Lib/site-packages/fastapi/security/open_id_connect_url.py new file mode 100644 index 00000000..c8cceb91 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/open_id_connect_url.py @@ -0,0 +1,84 @@ +from typing import Optional + +from fastapi.openapi.models import OpenIdConnect as OpenIdConnectModel +from fastapi.security.base import SecurityBase +from starlette.exceptions import HTTPException +from starlette.requests import Request +from starlette.status import HTTP_403_FORBIDDEN +from typing_extensions import Annotated, Doc + + +class OpenIdConnect(SecurityBase): + """ + OpenID Connect authentication class. An instance of it would be used as a + dependency. + """ + + def __init__( + self, + *, + openIdConnectUrl: Annotated[ + str, + Doc( + """ + The OpenID Connect URL. + """ + ), + ], + scheme_name: Annotated[ + Optional[str], + Doc( + """ + Security scheme name. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + description: Annotated[ + Optional[str], + Doc( + """ + Security scheme description. + + It will be included in the generated OpenAPI (e.g. visible at `/docs`). + """ + ), + ] = None, + auto_error: Annotated[ + bool, + Doc( + """ + By default, if no HTTP Authorization header is provided, required for + OpenID Connect authentication, it will automatically cancel the request + and send the client an error. + + If `auto_error` is set to `False`, when the HTTP Authorization header + is not available, instead of erroring out, the dependency result will + be `None`. + + This is useful when you want to have optional authentication. + + It is also useful when you want to have authentication that can be + provided in one of multiple optional ways (for example, with OpenID + Connect or in a cookie). + """ + ), + ] = True, + ): + self.model = OpenIdConnectModel( + openIdConnectUrl=openIdConnectUrl, description=description + ) + self.scheme_name = scheme_name or self.__class__.__name__ + self.auto_error = auto_error + + async def __call__(self, request: Request) -> Optional[str]: + authorization = request.headers.get("Authorization") + if not authorization: + if self.auto_error: + raise HTTPException( + status_code=HTTP_403_FORBIDDEN, detail="Not authenticated" + ) + else: + return None + return authorization diff --git a/ocr/.venv/Lib/site-packages/fastapi/security/utils.py b/ocr/.venv/Lib/site-packages/fastapi/security/utils.py new file mode 100644 index 00000000..fa7a450b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/security/utils.py @@ -0,0 +1,10 @@ +from typing import Optional, Tuple + + +def get_authorization_scheme_param( + authorization_header_value: Optional[str], +) -> Tuple[str, str]: + if not authorization_header_value: + return "", "" + scheme, _, param = authorization_header_value.partition(" ") + return scheme, param diff --git a/ocr/.venv/Lib/site-packages/fastapi/staticfiles.py b/ocr/.venv/Lib/site-packages/fastapi/staticfiles.py new file mode 100644 index 00000000..299015d4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/staticfiles.py @@ -0,0 +1 @@ +from starlette.staticfiles import StaticFiles as StaticFiles # noqa diff --git a/ocr/.venv/Lib/site-packages/fastapi/templating.py b/ocr/.venv/Lib/site-packages/fastapi/templating.py new file mode 100644 index 00000000..0cb86848 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/templating.py @@ -0,0 +1 @@ +from starlette.templating import Jinja2Templates as Jinja2Templates # noqa diff --git a/ocr/.venv/Lib/site-packages/fastapi/testclient.py b/ocr/.venv/Lib/site-packages/fastapi/testclient.py new file mode 100644 index 00000000..4012406a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/testclient.py @@ -0,0 +1 @@ +from starlette.testclient import TestClient as TestClient # noqa diff --git a/ocr/.venv/Lib/site-packages/fastapi/types.py b/ocr/.venv/Lib/site-packages/fastapi/types.py new file mode 100644 index 00000000..3205654c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/types.py @@ -0,0 +1,10 @@ +import types +from enum import Enum +from typing import Any, Callable, Dict, Set, Type, TypeVar, Union + +from pydantic import BaseModel + +DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any]) +UnionType = getattr(types, "UnionType", Union) +ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str] +IncEx = Union[Set[int], Set[str], Dict[int, Any], Dict[str, Any]] diff --git a/ocr/.venv/Lib/site-packages/fastapi/utils.py b/ocr/.venv/Lib/site-packages/fastapi/utils.py new file mode 100644 index 00000000..4c7350fe --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/utils.py @@ -0,0 +1,220 @@ +import re +import warnings +from dataclasses import is_dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + MutableMapping, + Optional, + Set, + Type, + Union, + cast, +) +from weakref import WeakKeyDictionary + +import fastapi +from fastapi._compat import ( + PYDANTIC_V2, + BaseConfig, + ModelField, + PydanticSchemaGenerationError, + Undefined, + UndefinedType, + Validator, + lenient_issubclass, +) +from fastapi.datastructures import DefaultPlaceholder, DefaultType +from pydantic import BaseModel, create_model +from pydantic.fields import FieldInfo +from typing_extensions import Literal + +if TYPE_CHECKING: # pragma: nocover + from .routing import APIRoute + +# Cache for `create_cloned_field` +_CLONED_TYPES_CACHE: MutableMapping[Type[BaseModel], Type[BaseModel]] = ( + WeakKeyDictionary() +) + + +def is_body_allowed_for_status_code(status_code: Union[int, str, None]) -> bool: + if status_code is None: + return True + # Ref: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#patterned-fields-1 + if status_code in { + "default", + "1XX", + "2XX", + "3XX", + "4XX", + "5XX", + }: + return True + current_status_code = int(status_code) + return not (current_status_code < 200 or current_status_code in {204, 205, 304}) + + +def get_path_param_names(path: str) -> Set[str]: + return set(re.findall("{(.*?)}", path)) + + +def create_model_field( + name: str, + type_: Any, + class_validators: Optional[Dict[str, Validator]] = None, + default: Optional[Any] = Undefined, + required: Union[bool, UndefinedType] = Undefined, + model_config: Type[BaseConfig] = BaseConfig, + field_info: Optional[FieldInfo] = None, + alias: Optional[str] = None, + mode: Literal["validation", "serialization"] = "validation", +) -> ModelField: + class_validators = class_validators or {} + if PYDANTIC_V2: + field_info = field_info or FieldInfo( + annotation=type_, default=default, alias=alias + ) + else: + field_info = field_info or FieldInfo() + kwargs = {"name": name, "field_info": field_info} + if PYDANTIC_V2: + kwargs.update({"mode": mode}) + else: + kwargs.update( + { + "type_": type_, + "class_validators": class_validators, + "default": default, + "required": required, + "model_config": model_config, + "alias": alias, + } + ) + try: + return ModelField(**kwargs) # type: ignore[arg-type] + except (RuntimeError, PydanticSchemaGenerationError): + raise fastapi.exceptions.FastAPIError( + "Invalid args for response field! Hint: " + f"check that {type_} is a valid Pydantic field type. " + "If you are using a return type annotation that is not a valid Pydantic " + "field (e.g. Union[Response, dict, None]) you can disable generating the " + "response model from the type annotation with the path operation decorator " + "parameter response_model=None. Read more: " + "https://fastapi.tiangolo.com/tutorial/response-model/" + ) from None + + +def create_cloned_field( + field: ModelField, + *, + cloned_types: Optional[MutableMapping[Type[BaseModel], Type[BaseModel]]] = None, +) -> ModelField: + if PYDANTIC_V2: + return field + # cloned_types caches already cloned types to support recursive models and improve + # performance by avoiding unnecessary cloning + if cloned_types is None: + cloned_types = _CLONED_TYPES_CACHE + + original_type = field.type_ + if is_dataclass(original_type) and hasattr(original_type, "__pydantic_model__"): + original_type = original_type.__pydantic_model__ + use_type = original_type + if lenient_issubclass(original_type, BaseModel): + original_type = cast(Type[BaseModel], original_type) + use_type = cloned_types.get(original_type) + if use_type is None: + use_type = create_model(original_type.__name__, __base__=original_type) + cloned_types[original_type] = use_type + for f in original_type.__fields__.values(): + use_type.__fields__[f.name] = create_cloned_field( + f, cloned_types=cloned_types + ) + new_field = create_model_field(name=field.name, type_=use_type) + new_field.has_alias = field.has_alias # type: ignore[attr-defined] + new_field.alias = field.alias # type: ignore[misc] + new_field.class_validators = field.class_validators # type: ignore[attr-defined] + new_field.default = field.default # type: ignore[misc] + new_field.required = field.required # type: ignore[misc] + new_field.model_config = field.model_config # type: ignore[attr-defined] + new_field.field_info = field.field_info + new_field.allow_none = field.allow_none # type: ignore[attr-defined] + new_field.validate_always = field.validate_always # type: ignore[attr-defined] + if field.sub_fields: # type: ignore[attr-defined] + new_field.sub_fields = [ # type: ignore[attr-defined] + create_cloned_field(sub_field, cloned_types=cloned_types) + for sub_field in field.sub_fields # type: ignore[attr-defined] + ] + if field.key_field: # type: ignore[attr-defined] + new_field.key_field = create_cloned_field( # type: ignore[attr-defined] + field.key_field, # type: ignore[attr-defined] + cloned_types=cloned_types, + ) + new_field.validators = field.validators # type: ignore[attr-defined] + new_field.pre_validators = field.pre_validators # type: ignore[attr-defined] + new_field.post_validators = field.post_validators # type: ignore[attr-defined] + new_field.parse_json = field.parse_json # type: ignore[attr-defined] + new_field.shape = field.shape # type: ignore[attr-defined] + new_field.populate_validators() # type: ignore[attr-defined] + return new_field + + +def generate_operation_id_for_path( + *, name: str, path: str, method: str +) -> str: # pragma: nocover + warnings.warn( + "fastapi.utils.generate_operation_id_for_path() was deprecated, " + "it is not used internally, and will be removed soon", + DeprecationWarning, + stacklevel=2, + ) + operation_id = f"{name}{path}" + operation_id = re.sub(r"\W", "_", operation_id) + operation_id = f"{operation_id}_{method.lower()}" + return operation_id + + +def generate_unique_id(route: "APIRoute") -> str: + operation_id = f"{route.name}{route.path_format}" + operation_id = re.sub(r"\W", "_", operation_id) + assert route.methods + operation_id = f"{operation_id}_{list(route.methods)[0].lower()}" + return operation_id + + +def deep_dict_update(main_dict: Dict[Any, Any], update_dict: Dict[Any, Any]) -> None: + for key, value in update_dict.items(): + if ( + key in main_dict + and isinstance(main_dict[key], dict) + and isinstance(value, dict) + ): + deep_dict_update(main_dict[key], value) + elif ( + key in main_dict + and isinstance(main_dict[key], list) + and isinstance(update_dict[key], list) + ): + main_dict[key] = main_dict[key] + update_dict[key] + else: + main_dict[key] = value + + +def get_value_or_default( + first_item: Union[DefaultPlaceholder, DefaultType], + *extra_items: Union[DefaultPlaceholder, DefaultType], +) -> Union[DefaultPlaceholder, DefaultType]: + """ + Pass items or `DefaultPlaceholder`s by descending priority. + + The first one to _not_ be a `DefaultPlaceholder` will be returned. + + Otherwise, the first item (a `DefaultPlaceholder`) will be returned. + """ + items = (first_item,) + extra_items + for item in items: + if not isinstance(item, DefaultPlaceholder): + return item + return first_item diff --git a/ocr/.venv/Lib/site-packages/fastapi/websockets.py b/ocr/.venv/Lib/site-packages/fastapi/websockets.py new file mode 100644 index 00000000..55a4ac4a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/fastapi/websockets.py @@ -0,0 +1,3 @@ +from starlette.websockets import WebSocket as WebSocket # noqa +from starlette.websockets import WebSocketDisconnect as WebSocketDisconnect # noqa +from starlette.websockets import WebSocketState as WebSocketState # noqa diff --git a/ocr/.venv/Lib/site-packages/google/_upb/_message.pyd b/ocr/.venv/Lib/site-packages/google/_upb/_message.pyd new file mode 100644 index 0000000000000000000000000000000000000000..9cbb54a0a70a818dffebac56665913cd05c658d8 GIT binary patch literal 713235 zcmeFad3;pG5;i;m0$~Xglmn4P1`Qe)AQ2HFq7w{oA_>L~Q5JDW5k#C3xFCW_lyMwI z#qGLp*X`=Xjq7egfQSep%Ib!D4+9!dfw*wq=cztt&Y2guZM>OSS?FYq<@`Ft(#f6MauUdLbl7nFYw{Lfqzx9{<0d*7?ASM_{7qij{rvnO70 zZD8uOt1q8+;pD)@7fzXSbtrJrrGaVTDS<1d1WHanD=_)$OD^q`o!utS23;}K=ey*l zgMFVbK4GG7b(Zh7gM7XQ-w}bf&6*wV8v@MC40Pi2RUC{4Ic$`5jWp%&W*TokXYzsn z&28=TweRkRhle7=CZ)@}JyfF%DU-z;k38_kEB7QR;x;Sc-2U<=>Ufb+n=nZ7D? zvA_T37Pj!^H&NKItc7oWW)lVWt3IJiXN2&3K{041iliNMc>fFdDkk)~JCxGk{ulHW z1pCa;^=f+I{Zy16fxoQp`A_OybnUf#HMJf7c{H`$sXEs;p{CEJ8lLbRyqDp-EVaJC zyF%BKF{wd$7eJYqUN2bF=hQRLCVYXn#fEod6ZJw@34S644R*b%ChASQ^s1{b_Ss{N zfolWcH>KAr7}A&H!2ep||2e3ag})2Z>s1WtTUf+ezWPCs=K$)RgunNt*UK5ww_l;u zlj;*704L({Q`GnT7xbat@%`n^y2tV7QPg`9f7_=DjMVEtKH-#-rm9&51rK9=kF2p6`xal_BrQ{I?JrwmR}nAuspJ?dTsb0QDYk_ z71mU*oio02Yla!^zA(RqZ)o9n?_u3?aE8Ch;t*M#F{bnumE8EsX$r@dEkG8C?@mD>C7WT_G@w3|USKUZx(acGxZbp4*AIdI|s5hJ8 zby?(VYfWY5hTB^BGMd5~^zZxnGT{sO9YHhI5&W*_T=SVX_mj%;49l_>2t(uN;HR!% zSYzJYJRV9un^7Yo7-dhxpZb>MnHn&lxi3DLbrzt!RF@xzKdL)Q>RS@$c)pZtc6VZf zc6hO%coaum#ybG!yl_MdUuk4jq*HO^)3Qh%#(sP>vmw^P2lD%?8=h>2(v5{{%OY|0 z@(c1%68VNt3%yUpk>%=@zbp$pZ$7keS4pIyz9l-dFt~v+<2kg&KMQ*j+NwD z0IXqQXr@n9*Gl_PP4cxWL>GVzOs*`h{4*mwRrPpGPv3@@z&vfC$`lE2dmwQFGsdQRi~11&Ct){LHDMmDJvF3138JIu(E(#Regdc1I+&$kmz-QF&Ll`Yzv(NS4L z3u`Rng2i~oAfII!?c5@_{v+r-rOSUwt<3k>E?U5zuNsSDdTGjkja@P1nI<8e`_iOHhyw`*}nO6HyY4vCRg$@eEsTeS$uhd2E2yx$TgI1T9+;6vH6QY0 zLZG4}vMl2Pk{mlbkKBG1(v;(`ehy95;Vod?K=Z`}PNS+D&PKIrQYgb09h+AG1sy&J z&?1}FM%du2dOuWp&8YHZ)w~RI*9zx=;J{;v` z(Grx$%81VI<>2I4pyAIc$t&=8Xi3Pl1BKF^7}6jFfZUH?hn@xM-8QhQ^+GEqO|50* z<7H`Nxn(@^lJ2T13@DZ{gOAb73yDdTLU1kkDZ?{`C6?b`eY<9vWh{gZ8lNXm;AtPH zo2%tbopkdC8pU^WLh6yY1Nws_F~VsTM1`H0XTN}!#7XG+N0EQ_{B(rkx0{`G)73ea zr`r%(I}rAw!cMfdj8E|kTnqXa*2lMr62K6aK~HM#_C_&F@2~gIU&Z1mM;POlUtYZ{ z)Ypui+RCilvZp+Ha%psAR@qUFW>KyG#vSOVEMre;q@~E|Ms-sGMfP_y(#edB&x%)S z;y^$7gUN8M8PT*aBRUb_b&`u$C}0@|AETLj$uD7X4hV&ww2ZbavD$`@lX2_+AIyLw zQFE!(#OODwYeqxjV#eB=-KoDG)e0?9LC)CMSw;h~iPTYc*brJueLoa!$$-1-{Z;P> z+O=x#85zDv%S4TcyUVK#0IjZ>@w6GG*nv^`YW=WgoHJFAyR4g?WZiIKU1{`Cvd%ne zldw({amGfl4)j2V)QG-Bd$X`^P8LOXC}t*vD%=`4TE?j_LR&-{%vu!)jRxVLkqBYY zb`UHqQm7KoW~*rC+sWcbo#GWNZomoxCS8b^uwEjYMDP9#-p1FXq$F|zdtS*((M&Dx z6t@tn7e_Y6pF;ukm1x2xYR!UXKxt=bq(1&9Bo76$<}6YFMS;*#7e7?iGj~CAv?;`n z%adgs3~o|1PN9b3?0Xz&%IxcjA1o=fjJ+?A*vubAI*3r?P4>+Dl_i!xG(a?bzD)2s zzUWta@$#~wh7jk?f0FHLrCoz%yp48+H3=w6@b<@l%fq|!uo(}!ZFp%(q~D^9#J@ZX zvb`1n^|DBDR(bV`P=0AFXpeAFDHjKs9Mig)oERAZsiyYk(8{c^7ooDq3enR`U=yjx z?P5eojrzpu)b+{kuY@Z(6?+*}>c;!2TB*HDBQ?d~x`rBGvz`;TI0tK-yS_z>bG^?l z{;K$1f&tTasP)gGB^F*&efTtCWEHNpjAzMz&euk@9(s$){NxcRjhvceMy}2EpIhVa zaB9G;KUF+ES?)KhZBX83WTUg%I`#+_PSsP;u2om)&O%vECHC;@J?ud`D`mO1?}w_B zTzn1@e6YZ6Qp0R~UObIehXJ2C8lPdnXPAu-CiYG>R`6+5Ar0R$qR*46dJ5LD5Tv|n zjtv%B$i#dUVPYGa6i&)1Hv>MF-P}Yg$QOS2r3_2MtIrWkgGtN&cs)`5)yMD$6$&cc zr7Ofc%LH)8!)j(m-iHwZ%~MfeLVhw$t92*?GTUncnv6P^774^l4fz-Pjt(@bG>RHS z*%)ri=nb(2<}JM2o51K~?R(i6hAc#{2l#=mFK9sg(07skI- zeF)FRjG7_<&tN9lW3q0t7J$K}C_bP7BsgHM0J!u_6UZ~NQVAN1K2iw!gPn?A>yM$q zAP7O(X#_Pz&tq6PDWs*RBJU|o~+om1t~*ZbMj0c(oB+B1`M9g(D~o2Dz5bnOw56S{iYbj61M z9bJPcW=)OP5*7&WUVj3=qGo`7ER;S(Y1B^AygN$z7>-FeT~ET{n1sV!rSQAjz@e8_ zIDcPxbmaX^>19SBm47FpzZCiSj0lK)7?m#nwm-dJ{yFe>VsSR3GxAg6e-6f{z@L?b z|Jsc%{Mi2Ci@(JQ+w*zNk3$wG$7v1;7aoSBcQc>s=gZ zcbxW>zk@V=ut>ZLlD^^>HLk7iNYeK(krMhAK89aW zvw-wXMV~f(4_%?#Wd1FEuWQo%tIKkv%xWR+zO&2z6t)h_m9lSjnX=2a=(2#6 z)$6itcG*&0mM>+{VZ^1uE_+6oVf6x@x9hTB?Xp{S*+40~mSxfFa^HZT0C#2Mli(lQ zjNyB%!7*de^`smIWew~Nj1eq=q{Vy26A<0c{PTOG_8ZLw!aWXzLy{1#_dvKj4T9f> zkU;A=RuaNjvt2$smIk5JhR}-;G$(I!AaqDVc*X@tA+Ai#*3)?w`ZCRLY7dC=V zp!3gJ!q(!~{VZ(2OVY_L1{7|03UgTaiCxHmDGI-I3Ole68eLjGt_xQ=h1gv5DVViV zSgi}+b_!dwaJF3teL=9#JB8USM3hWgipL)_{^=A#xP5AfUD!vrj5vjO^r>EUVFz9K z52q01`&5=)_$waJ=Om|4*q6XdGGT)*9Oo2DpR4Uc#;noubf-{8I2F4rXLcS!9W|2HeSHwL0xXc>PCBy>?*GB-^YHYD*7J41FZFLR=J}lWpnH zy7nvp!1Y-T_T`$D%L8iCe5|Cg>@71nQ_J!KWzoz>{Rnl$vR{-}3?i!|Akjc|X~916 z+fk|T^3@2!t1rnD#sSzd8rU-~uuWi(15DE&IXf=^foj;wfMVuL?WOxW&_Z>`gkoI= zgXf~1&+cyxNr)LMQAYwpWe7p$N%-RV2gTsJno^*HL#5Qw6gY&6SVuk64=CbAUp}-I zZv}Gsk4I!UNF)6^Jkg9{cnR?{@H5d3uV2%zOAxxsL;oYuKjK;FQn-z#j0ejO%(>^# za2st#GuTx})8Z5vJ!Tvtpt4`W7&LQwEdoPB3s+zs066dj zd<^&7wv;Y@0DD0%VJn#w95ToUKW!O)BIcu>&!c4o2caY{s8;`zRnSqbI`{$pTxKHV zSi!=4{xbP1fbA~?4bfpK_FTF`uhSO#1>;y6St?Mss_X{qt zpNOYyRJTkdqAd|?^j9xuAdErrW&h-Gw2Z%o7b)^A{61S-b@^pvXdR+srQ9cYJ8v#K zL|^q|sdE|PYE+Z(oBVhM%Y{SVPSvYxbGjkDF~q-PthE8#cY1SQd1Q+?!0o_sJ);=n z8Y_DUKwrXd8V$O(&aEXx}xQ&+}HkK+z?R!4?JLlF2KYWf@w zK&DSqW*Mgg6(Pp7<8_Fn!md9%FK8KW-A^>d!3?rlWKUwfSAXdJEmQVl)SN0xK&?7K zb|}R29m7|#>;VYz16zsfg8NPjIo{gDpzcY0cXoe$LC+Pj*d?;VU(3Vmaf{oQk|OWzdT-zku33W3lU zpLY**r^~--O~D_R4*yR|snBzR2Y!1E|MnXRp987#033pdh*cMXtD_UUT;VyKTWY8n z#oRC>2Z~M<-OU=ZI zaNg7pt==_fa&hGI!q3X0y|?mRwD(*1~Tw3)>7t^XM8e*zk&VouMu0e@dwk&)94@V zKPp7M_mO1`xf>YKo9&%J`B`p8PtR4|$(EA5WAXmB&UjzA)_?9UGcr4`AkkIlYe35l zw3ZAyJMUPoQU(611}+k4Yr+Z{sAdBI7dl98#xWU~dvjJrmLV}F(O%~_6kAJ6ioOrM z4&9IJ2K5)}h_74Q;xQ|+^BxNlStNa%ABfxyq#T|5)7@Ap{pb3 z8_w0uM)zY~1~q2o`a4|f3GtKvs2drQOk1p6TXZ5ukO5FBan=aZ59nj~m48cnE{VX{NEPQz2;Lnq$l8P98u!+32& z{@H%!<4l&%PAhlfFVUG`c%vFTN0a>9DE@^!HmWZ2iX-r59}JB;|6r^n(1EkeqxQ&J zN`X`zvF*yYm)iR1*Xs#DmaWJgU?2E=wz}aq@>yc(V<|1Pgc?;u`l?kskok7t*wG^k zSYu|Kj(ltKkb| z-`N7`S|zY=?fnNybwCn9=pe467``0=AE7Y#! zt628aQ{44@zY_RX{FM&6MFzT8lYi44yZ%aYKWS%_!kE7Q z@;L@RWr3eX_Q(SK+9Y>@kAX2TC{`oxfbrD}Jj7->T2tM+>!Bk*tJRH7_IFi!e{GZf z4fXWbUH3O7t-nzR= zYI|pXa>@tknt60qa3)7nh*?JzMQ5#ykXpU}C$m9j@j9eJaAFVcO;QdN?@n+SY@Jn4 z0A8IHgcFM0O(JvF;a>d{i>2uw*uR2Ey1X6>kSXK2l6{E0W?tcr=NEv7@%#xC+e%Ih z?j!IzO@hOsWq#k&@ITM*KM=q3&hG~_uv~#Jz)C&9 zT>bnD+v%x>i8c=MsqF`cf8U}!Sv-eyrIvrecM(8n=kNXJl^=p1?G-NbGAz|d=(g)%I{xN z%3pBG87~Tmz<(nZgxfvZ0&_@lTmRxtvD2QK+xWw^NR4CX(5wOGVTRGZ@`HeBVS6Zh zF$fh$_H?}EvJw~%*R%@83E1n%LuE?;y_5ZG{m&UUk2TQi7~5p|dOn(CpwCeos`1O# zaIf6Tffh;FQZ6Jb^C%P_(1qGXNr9(MLuD-i$fTEmql4eK$9d#+^)36z>nkj;0kx~J z4EPtfV|EBFlP6f!U0;&))_LL0*$+HfsQ_gBzU3Et+n<~)m-P$b40t)(LVOGL5WDdg zt^h&H2sK3qS4ANeZumXF(~{8ZrSwjb=2d*}P3cHGgiS%cSde6{|+Nz207YGoy5LF<2T z#h&x)utg#I|40t>f#!UIvgGK00!Y>WUVI8{d@i#EazXbbK0|GM&QXH|ADxiW*+rHfFqti-%^`13RY?4Lgk1*!NfxF(5DuOvQQU3~Un(CzW+W#bd;^>^$UgmpSS+f2USX^9re4#pBo-fAWyX7&bJT0CdP!BMV82bN0 zSO3r0E&BgcS7o=1yDIyD>wCT$LwH{OuYt`M_*(xf7g&nDJ@+TEw|DH4?yo`j>My(F zq`l4jJFsKl`F*g?hqkp^?B;ZSG*2m??39Z>LYVv`xCUF$v4mwiPt;-AQcfHR9V}7b zZWjqf2)U`qY}6Qp#uz$@vhPr@?WMOE>WNiHZ6dU2=0)fdf^8WuRl#jpn~|sdJS15rp#+<& zwhYKeO&xrDRJ>T+Jj%)6#TxIAr<^?Ovmrzc^>?JMKr5P{6_pg!S6OO&6c2p zJ^0-+-sRsU!3auK_&3zWZ(6%F{uO%hd-9n5;5W!__CN9OCm?0xckQVz|F({E@mpEx z9p9(qN%+?+9ltx~did93!G7>t`8WK7fMS2k-7j5P1wgUvMPrGQjz7%ZDGKR>i}^}a z*sgC~74|p!@Oi@X=)*sD2(TFfUw}R90hXc(6C_m+udGUWtV5j3BMK>wS>|c#-9NUN!&uICq{m+kSP4+i7y}v*3Lig9-(_gmkZ%SH! zqxS7DU0)uV5IKvI=x{XP4>6! z9JjxR{(=6mO|wId&|RwLmnOwCpRZ!sp8`L92E{U716W2T=<*YxWPH<=w`t)f=}+Qg zZ=nBy7dHJKe6oqp3bhy0#iJi@#@qet$BZUBOn{Rq48JAW;nK5R20S=ZIxKhR=Rubw z8SpekS?1?MArd9}zAibV%1vZ$7KZvR*&y+ki7FVX^&RAqK*K@an+1 z90_~(K_nNY@H<`pyWT8=H5arw@;`N}i0q&462JVj|5^V3xC!vQ@*mgoFYvYedw`|b z3pq;cg}83hVRubtu27t{Tn zEd5Cg^9f2m=0K^sUjXa&56>B&kJLA8hGX$@*0VUcGF;I$yss@#;PM z)o}d^uC?)@{pxuAYJyogC+I^SLFJqZU+570F@4Yjm2*b>{CC$v9{qRM1m3q(cHQ`M z=2N6Zq~diLVV3dEwJm(FBPoGbNaXL6-zqsjrMXrPE(J&{cj$HY$J^;?5b9MHg^24| zOtDqL^A^A|dM?H`xm;g_2P8Di3jvqPJr?p1qnY19Fo{@Xr)30zl(_gr+{rh!?KR{= z$XyN(k`I90tt^UTk2)n!`m<9sL4Tq%n2&S(>_*;JHd?rSVE4uYuFu$`fc!}g^2Te3 zlQ)<6MS*pIT;iwDMCT81{b7;}h`%P_&$%W?&73R}Wm2Nf0U&>esbIv^Kz&f>Yg#Rt z3xXl#cDch}B-ngSG(f7TesD4Jd$C+>Vj1tD1O?e(7P18nPaFi*-(7ec1`AU%2-*>d zWDtmHg8NBE>CD(bNo09!*q@bq{+e!J9P&t^9g1a+EK{YKGLGCYB;lTpBbXnD+E~U5 zfKTq5(Nl8^x0{28=Z44OcaHqd!Rh*CiE>uAjB7cV+nd*iJu}EZ{@(# zy!d_a5j3*@tDsw|Kbv!TapX&;mkk~PW|c*Ijnynj>RZ#EhLO!y1qM#$pLJ#cNETZg z2&a>TNSH-dY<((eWM76qNFZkGB>r!nf`NnS+ra7KCfnNck@zNk@O`me2Hvrk(Hh&c z9Bg01d%a)SBz`ywkc!y`8?!ZD%z_@w7zLCh;I#2i%U8oT)V@dtG?MYjbO&W>{2YqCxcMmbMk-wEo3>Mz2#Bu*fl_N6=vhDMHa^*wzBQx&?N_suWKa1*|7Lu1RhR~{Lh-o5FN8c{*A zLV5DV7@!Q;>&JbQh^lw}n8L9Iy#1a4H*n z)MwNBeHG}%Q2Y=2{VtAytKW|Y0jc`E3*Mya_eEf%SHDla@^AF}bW}*2-&*$slN$aK zpm87#-vLJOJ{rC=JEoFC2I@dD7J30$EhLBHY5_4Uw2+|M5!k}EwS3}8%eV!NDXtqV z<8uDw^n4M`aqibHX`|IV1RUE(TKy+}^5{?84<@^=O)95K8^|QBK`(PO=mU5UeSa1H zc;($I(jI+(Ky|;;t5g#cy^14ww!+bWf1~f$U7?wguJ4!O{r|PTukfJuf1~dUG?MAa!#7$Lfygpj_g{$WN!^bUNB5sXoqb{?ZW%uVaYx}J zvD>5Z@#InYkD#8N$$j%aD*w#O_fh$$;FYWL3-Po+m7mo2jy>tsPkSx{m=yiAnjAWi zep-emN&OTM#@Vj{rg+u|9Jc|UJO#Z=akZ(HKiGQ zX5^I?)m)G3P&A1pIHg46Plmwh63$mNa|-biH?T(;m;J>+LrB&h7uK_M`^ohZx}yDF z5kRgY`6)*Zn)DUsp)&O3$@CTIDTFeI7H&@?r(j@oO2?+vhw}9QhgdBuc&=dz0Gc zeWgXqukY?OFM-ENCY@!gcG!0Cp`w{1NTRUl&(nDP43^mfpn)R@=n2QoEMpTM%d5W& zl~No^VE$ou+i_u50TC{7?eb{2eQg=HUW`PxzcRudO0DJPMZ5jgli+l}L(jWA6>p|uLx1%T_$7@`N8|WLJbC;D=e(M*9J4wpIv20uiNc^hQHWo--AoRq zHLCkA)kmJG^UO*d4fKUB5$6W>1UZaNFT5S-^WXLqYv6=N0bPv#K4E`y+9c;RIL57c zaUs@Ab+b9nu0fOW3`c=EXl&lV*~=4SGF%W9kgEdKd3}s#hI7(N46qMq;xBV0Sw zmpkz`X8bi=9tjS|Bc6>TBRWu9NPt z_XNDbv^&#`KH`&eN0KJ77c9Y&tfqX=qqxIzO6!MV>w%3oVRB*;t4qcq_8yr&5wM16 zY-MVP!6XFD7CNWg?F-ag{K#K@VHF%0ecoF`PC4)WuM1pWi@}?Ae_2L9|a;0xJU;8#I}#ikV=Xf5X&A{PR20;f<23Y z!V~<^fhXt((8e5!SmvpyM}<)Up9w6pjKp}+-e=1th~}W~e*pV%TSAe>g`cU9?a`rU zYZ9XQAe%)m-!i&!Va?#`t^?X*;|Sq=}r$FX1=r3NpLH|9T$3 za%QeC1j9XZxv-dXASB9S7l_d7TOEZn{$iFyvpw=B{UzJqlx%N6`D1-dYu~4JdV4Le z^R^8{2+LNBC7|h?K z{;4Zngi1)dA1HP81u}rC4-qT$Ne$Om;lIb%PY|mVHa!y&Ra?@N?<1$|4+u6 za9bkx#MB?07tjEbG#fn~>%Mp@;~YL6sO^Hjcz6Q ztin+1;e8#-T<~erBt9PhOm3x=n{PL8W^(i&rm#?J+h_T1`%EWJPNoFle@E?xZA4}u z7^RABtdB4)WWg}rtooGdoyNf~W99zX%U&iiv%uWLA+oTFR0uNz5`l3~!rMVjfE}_$ z;O}1?auHVr?JM-0I3|U^I+*9?mpJ@wt7%CcZ>afn{(kaOI)A^$WCu#_c5DIAIjesGJPn2EgXEhG>K1> z?uiK0_U8wa-wu)S$wzfs})i zq?|R(9_rK2OJS`Hb#i~ljvqSX-Br_)!r!Nx;P0ugq>uNGmZ{@?jfcP2L)f(ZZ5nDL z_2%dlr0nr-lD{{fXY)6GKAnuKqbLkb&nFve&wM(WIZmjbKA#pZN}o@8nwXUNWHXub z=>-UfrsoKUo~`Gm(6hh!^w#Ko<#&TE310pA%Zus!y(2S~zmM7YP=327@p-w#=I{Bb z_&D~lajCE&*NfV#L;+_2DSYPTiausuU38j zLNaqh7J7Yq%xw@ju*bP3W-z+3j1_>)Z5kd*P1oaF5^_1*Uz@@SAh3@m1$w z^@EGDL*25TE2LxrI7?s&&m-IOLjnLma8_rIg1_o6nd*(IE1t=Si-TfYOgl;27N6oi zb6`LZ>RAZ7mX%dO@}U-8CeEXka4&`krU@7aLv6T5mNvq<1%!#qpqy0gOrVdOM$gIM#je%U`wF)?cth zf*b(^XAzBG0N^N{kCT-Mf#TSFnZ#|QnU^nb?kn;CH<(i#t7ujE%^ow#=q+v_-e?xB z@!!~$on^?C(x9&huyCczC!dndp}YdelJz9>WOo8U1n%V0g^g-UtsD{<2_9ZbPRaW9 z+$rSYLqG{G9LMdSKt918ik`X-;=sC)w^h$uN{YQ<4TOZx$|++=1ZIfZ{smCPIE9_q z`A*g49eL%i>I(k`i?k{_on%j#fha-Pj~fou{EaMFS{fNjU+lSM#QAG=CYQIEam|VP z@$k>_$hDcr^^4yCET8(%zj(uXC<`RU7m?MpkNj2h_%nJc?!c-E%|K7M*7>{8)n(EA z(#r4mlvXao#|d^N4hmLn_gA$=-~w-QO05q=uv<^hDUF_kThWK&{(DVH`0LVW`5wFl zlNLeHWLVcRv;leIY*?Zg$6<`bAO5%OZC!CDRnCgOC@3e`wxf~wDtgnC^ z5bH%DAO9QyEss|LAUOUXcEBSWdjTSTm45lAyd20KUsG*A4!~l@K__!o;FjYW%UHs? zLDuC!*QqxB?dzv;ImBoF>h-wEJKhGx`aG%Qzajpoos!w5aFF0*lg+WrZG$NdSDz(> zhKi{u24$|n_;c4D)b3P+{uEuno7LgaBx8o5Gg|m?)i|TM#{v<{xEL=IJweo3v=*W| z08tR$)-o(z8M8~@<*uW3bHT^teFf?GMF$CfWrE*FfJ7eJ_!W5Zd*F{I@%ywQ4Zk|P z5d4mF@Vf?BY5XoY0DjQ-0s8XSmQl#&6KT4OWn@_di4Z#FCzh%J3Pa~CTxUX)>MlyO7z;d{7|CJ`;Ph^FWpp(9UN;f|5X?)D&hon6t z9wi7~JAybecrhc3(zioR#Y8qEHeJBiqV8Y;djgSmKDDINX%Z8MYl^Vh z4!0I50*7HuSd7V97Hxwe0YO@X;yVFG)4})Zlf!JNR3WP3p^C!hhLNR2}RD(>L()_zVbRY4q0R_u2Dh z8yFz^wQ^+!QX-)fXLu6MOiM1r)OIEVaLM`S^52eT@sm{|j?p=}X6282)oGlV)V;W` zSNtQ6HzNT7Yv#!Eu^&m;jh-RS|j z)X@%~?Nr}&Vi#0|>RGWhn0+`<6M?HIlkxGS|B?J+l`1785I4C{oia2z^56YRc(od@ z&bIKshnM?|{7#6HjKd7*Ne;Xx)3B8-`NJSmG*1x|wPnDG*Sr4jRLWj9FyQ2mW#5G_ z$|0^;icz7Zj?)li71ps^Pyoya+t!M6NeUl zM)Pl{n15HIn5j*z5t6jOJp((ess%dm=V!J96#r2rc@yxvVSxT!f#09nzk~Swy8XKV zzaO-J2Y}h!X0(Cew_zZ7v*jW(HgXfEh|usDf5eQLY1JaS+M~K!Xb!4ehbk1`7r{3` zSimByZRkkT0(7XD%6AFW7ao+r#hg$-_Y5bSU`?I~eS%LH(Tll}?^r*KjXH5Ar}B;6 zG}IZt9wiVgo0adf2U&WwLp4=K33B6}r=f1dRKd-rykG(IX4jI8a2NG91}t$5@+}G5 zEeZW#R(`Wro!k+KyL0U4VXWj;RLeNN2eKF5MiZ~T*j1b>lMTsFy!Nd3b}n)r{phvl zCQ5{onlg7+ZAQ4I866*hP5YTy`So7aoLfn_LXXZc=VCuxE+O}WHfotaoVRyiZo(@Z z4IY<8zQOgZ>aV-xn^9Hph{*6z9>0BsOX`?)R*Tn_>dOpvU~JsIJ{t&#c6D)r|R4uDCl91GU(s{bA0F(vT1KWqgvC@_&C zpv_J%|6Tu@ae@i@`c>N7-~LVlX)Z%;gTGHS=m{&#U60E$;7MZsY344M=cU4pD-m^| z5|k}uGI}c+z3@)UDt?y+7lRLa3VjwjhqWp|8is?0@)Xp9gE?D&fy`k~1!)VC6|lu+ zi@K4O??`0u3xVK9S#jmwjBpU_pr?7V+nO#mn_)N@mpEMpG0biHe~WxGU|MoK71Oqo z7Cwz1zK#fXP0;MZhY_i5-StiE8&h^nOLGfrD2Jm;qd0m14OEULPtE#SMjaCP60XA_ zzOW{t$FX^`LfwX8LE50OVMVAr5gjN}U}L$1SQc${OhePz-tzSC_(K<;f_|d&Inim~ zp2Vq0f59F2pD~g1&tKgc%2I6J^8)yez^McUJq#_{iUrKd zrwBaylSc$TDUjtlDFSu!TrV4Zq>mJhCix~+C~V_RDu@B&=)Vj+=w1~h0t@gyt)@D} zuBO8^!*kpjf-nVV(dgSK+{<`kfMuqLzLfp0PC^;3NiMJ69-3|9pXr#aa?_%+j4ea3 zz*yzJP#Y8fhN}|BWeac*vSl2J0>1KBPbTJk)e*1a7myI+ewNajf@1CtF`>_mNGD>6 z2wZI|W+5eJVoH>T2>96<^Ed!+DeLi_bd9_pyj#R~$-L>u@dShMHJVfIc+($H=k6v} zwd!^S^%2cnBuGH@WB1)zZ|7~BORnl|TZEjn<6>4%0)g(s5zGyg~zeYPdw@)0$ zRWAF~zZlp0SiG>lK!uBR3^0-k;PGu7{pH+hqkiT6SYBJFPM#&sDZ@ThuB2X}9>9QL zN{?gsuY|)jH94Du6psm1mBW4%pE^&p8R|^1>)?)L4*2D_lK#3xZsBJMtXD`6fpCUf zVZZPx$|^UAx%)R4=sF9XV~^PWlosHx5)^ZBFXB%ub?=m_^MD74?cNk6dej*60h@KIkbvmdbKYY!uASZM+a7Ts))DpBQ)OlG9(I;m? z3sRO|(Ja3}CyO{kX-ru@gblALtDXN*%iLOw; z1b6J=yN|$b0mKuf;&|e(Gain=`sVS#&@%4k6o6S8z*Auj#=|Ts>$D}*pMO;7c>ZY! z_2ZvCq2tV=cAY}lVIBg{ddU`Z-tW(}qR20q_5u2WbIZ4gjaM#Fa1JY%G$dN!-#x(3 zFZi`UkvRI^`Q=|+oSTOn5(hu<5v3qJSG3cp+|jE z#LD<|5I0>$&(e`Q=nxkZlH8)K^M|SFhOz9Yb5BR=tUr z)XIje0nl+BD2|-|xKRr=@SVrOyU;ljx~!8R)tyrGlSFmLOGVhIKMl5<9w~3&vT?@+ zCr9+fx+eTK{$5HY80rWe8Sau8mjVxpvDjKq?KzZDWK93Bu|{viq(ZcG18%4(r{+AF z%z$VQL_jq7T1FT$iSsGzMc;Nw9PQzE;da7mDQf>9M!>tpOQF;Yw@clhpqr&TK(cz5zv>qLzzSlD_(M5A%NGa^ zl|`=(s9R6OL!=~cBDD#Yc9>(5(jlwkbRbW`8G#lO9!*>+x6*UdrJyW&iI_raCIU$` zooN!o>T6IYLgsMq@xg#9ezO)ww&qU+-|;iPx zAlhEYw)g@$xWEp`g9>)>F{tK5`ZxV`AOpL$QN7(7t;v&n#EXZvEX%7=)uM4BVjDS_a0O}8nQmw{v_KX zD>l@L6W(7P#`wlB$3M1y2Mb{Tp{*_+#bT2(K$qK(_mIZOH16rF<3#LOXtO}|+N zp4^{E$Ly7A?b^JEYFseIX@LN|h+PkH#$F|3+2B zYOp;4do-C>d_3N!+oJ)zvy81$0)!SWrTfIscw9rSTuiP+GatYRmqnr1zE%ZWsBADR zjSfd~m8!w`qcK`B+nEgqvfQ|UZw}*wC&2Ee7*_7d z2~X2Pb~d0x$TsEMLKeiZpcTir`k$yO966Y1!z;FJAAHmOSc>c=kT~MV&4opPjYVT3 z)+zh~Z1odWQF2c$px+j*rBZqV{;zz|d0C=}9uPb|+*C<7=>D$-SMcI?0*@A`BYW}# zC}cz~Iu%Bc4u~{@JngweR`*4`AbzL#)DW!2{Xqd==koO|ye_PX7h~Gu&x!JAf@5C_QO+%g^ajkz zZ)xDF+AXZaXslX%nAir4BnHId0)cG*IT?uzs9XE$|5)?v!!A3%-=tBW009 zdE`&5xzKpPu{^T7JURvaTo)+bwJal?12!>>zu3VSTf}=YNmL0s=jUzEd6C=syWg_& z;epb~)w=87)ym`0HNvH(PP7EBB~r;7N}+81xu_mJ9TAYts;-bIG9CU3$e&E};PH^H zF?e#%MfS!kMq2__a3HKh9bk37@00rd`d}H2sN~maUd@vz9u~?1&~f^kYKUm>H4!o1kfAm zht`xwr{@+UP95r4iqJFws^*wZR3#t=O9EClel;OLspKZkCRN!(T&!M;FmJ5T8FZk6 zX5}fq@QDmv^wS^njv37{*Al1k72B%o4~1lNixUXmr4bbIeh1i#X&-bPF0*owFZ>f5 z{^-Dp=mzm)!E$H3A%X?*Bf+xdekbEjP$w``k)pCv4Wf38j=&iHuB^UfED{2vV*=_R z47@+5rT8IKy#Xo*?zq*e&Yd!JW)96_nn$j^-9&u+C`bmGKAJ-R;7yDrpmX@Nma&WC z5OD+F@{Q(Tetl5fY396At-^S*j9&^_bt88|gvW>msJ@`fbMP6s$a#5E2q~o%PV$+W zjKr6ns)FQEiG6^PPIOmu`>;9oLWhHTh8(aHTuQRS7yfAo~Zzhi9_z ztj|y>dO;2<SQp< z2^*zEOn0j0vo(Ajb4%_IX@4!4JP)j*072t*hx&RG+^^xe8KK8FXu$O zIh6O@Uox`l!kxgS07@ct>fQFdKP9rUYDMT{5ErCbjX?{j{v2yN$WWvH+kp&`PTt0* zq#o~0njyWM4w_-;*?qW23dOVhpcof>Xe{120dTd`zEcG^@0a?_S(K=txcs04Jaz&hLo}UC;;DLUnB;t(+Zd3|^ofj-&2S7vMKF z{BC?Vg2ve+x-JM)3&AdmWz4t?P*BM-?tr90*IkcyXW||GzX1NwtZB52K`5mvoXM#R z7piqQ1ije@MxY7Ro1?z%&A#fWDWD2DGSn2=7-csAI|MZ)0I!3vwpKyKO=>BI0MWPr z(H;#_fy9^S9b=^RA3D-LS!MDRk;r4Tcwh?uY=0kN6r?jq~C!!liU%U1MwOEC{sS8TXLD`R@Esp06 z%07iZa0`fW0)AM=`+c>WfL%tQ0sM9!i%wueV4mV>hy4^RwD1XbzOm#DHUk}(QpSIi zyxpOWV)QdQK6h7L2EwPdvC@%a!YQ&zy@BX8rRtgnzJmSm4p%~mD(t&MXg}zEiM7ae zfmfi8&XE3d#@Qb^a%Mz^aK)&HF<~ zL+A#SMi)OLOx~o9X7@2;R1ep?e*~C=xFbOvKOg)4G4Sd4V8vNMX~On57>~#%?kC_F z5Ys)FuN9bj?xzJktN?>n141FpQGXh&eRaR`phEu|v2?E{2;@E81}U0Ooh~A^@<>a@_{0 zC@_Ec$-(;s1@-V(p#D~`eq!y>pK1cmA&GVif7M0u1jN;7tTyqp_?Vm!{g2iWN;A!f zPKgJ9q+Z0QV`PoPl6@%E)I&!SLD9^IX&faK-3`Z5F|>aDY9y#(du7`Zr~|+u#DS}f;u~%6~j_742JGdt=C~q2R1vD zC4`4wWbuoW}v38p4F-S#ya|P3TJ5;;2gsa4Msg|u|pq3GdsvzDD53;^~VCGM4;&O%Tv+RIsZl4((OI> zeihP4D8XRp`IF3-sVIr8a&tJU znU$3qO-8l=^5luFtQ*r0u>-@$0W~qjD|B{99cKGUGBq*Fkvbq#J#%(fuAtf5zvC_s zCgSgwQ3^ajHTSS(KfM(8DZSiLsug?JQjVJ#g=G(E@vw}3z=8qXdAlHuUF^uzkV(cEa{OZHNZOpizyW%mC#eQ7&A8ocNP`LI2`)$n-0T zRo#JL6=oo^dZ4$0JRXeAE36Xy6|g;n)SFZ40M)9ZxTd7 zFQ%5v&b4qf5<^_oZy9rs0BMosiN3C$$i^#P8ISl9e#Iq-7c-9QLg4`D#Vke^_a^nJ zP}C3)fd^jwU*AU_ej9t$;&d!8_C_^9AH0P{``O1M$p z9`-p~NrTW-Ef)m4;ZcAqYM53e;6}vS;X0vRxK(}CWeaHiWvswS`0IWHri|&l{1nHM z%Pq!(t?x%`l;L_PS%v9<^6P}KJnoc)oj3BJ1a4-YMx$EC#`G`MN&!RXA=L>7GgJ8a zQbzoJgu9aS$DQxuUg`8L+6lK!3p;t0^Q%{fp?qLc-ugpSO;?AW0Fzbu4X8QQS zgt`2iE^qiWvCf)N$Mqm5Fxz47V4F(c$JQN4frMe?Pc6{JKr)aBfqSc$JA6gR4Gvl&DC8f>A31eHpx_(nyPLh$`U) z>|x0eQnyXV2u9m=W8C@70G8bjkPO(fJsF<;F8l^~RTkOOgv{>aKjDx){D1MBT7L+{ z@Hs4?EYxy7a011Q(WC;~Oi}{%axVCQAw!=kZzbGLy!sUM0XZ$5h%d1Q#1Cl&ZE;*E z>3NH&Q~*sbT8iT96k!1xi1*(4qrZ1;+XX!I{V8l&Z1-&hV!~8E0a54AXUH8g1onT+ zS&y-LOK{}+>90B!iv@NIYvfhqo5dIb-WnIl9M(u$8)efMZ{7eak+mY{or+5QTSA4{ zi}5QY!r@N?wyp4IPpFSs)WRP+wk(FU%*tBq_crSN-r8v&;G$Z*;a+d8?Df{lUT-bV zjdW~pMvSla=dn5ZBCD_M=jNWk7Fv#EgY_hAzN;5NM(G0`f;t9LXGyrnq{9 zgVin30Rd8^Z9%ql{N4WC#f?2U2q`|?)p$jHCEEl&DA?HO#9l`pZxX^wI4eV|wucAA zIfX=W2TP0Z!W$ExOGvc0JX_&U66-}bcgHiD*e8GSWsdITfUz1Llk1!hw%^Xif73X2nkdcb~T~0-aiy7i+OsG<3GDlf+*}mzF>Wve}WDG zTX3*JCVJ!%PFxr?VsgW#Hpw^e(O&AB4%W>zi9W}e2Wo78uiU$KEw>`Ai+dl zJtGi|J)T!oS+4c)QFpYDWq*YVI5z|?=vhJwNxIn~Eg=!NNk=!=q_n<+tt;PS$5_s@ z#jbjfed5U?U6t>#J3Q^sPh0fUxB96@p6;%R^Ym15z0mQ93AP_k$B@-@^x6l;Nc7rY zy;END=9~mjB= z;CKCsQ6Uz%Um3;zWX}p2e;VF6{*dYj;DG)3ehhHJeC|dp8{*uKv`tIUmMsHf(^i#7 z-fKG+XRx>jbay?W!OcPyI>shV*Z^1n{VlmwOVmMGI@^sG^l;yBG`uu_75#Uvd?f%t z(*XB1EJGM^7{Z91B8>Id+12((CeS-`@|_s` zwv3U#$T)>f%b0{}g3V54f=Y}Ywn*$aU5$*-#~2yQI92L3;CnvN%pYagG3xZ&oNiLj zpQPD8`EKC$@vgcT9KeHlkon0@PVurXx zp7yO}m|YzGt;zuuK_zXtsGlF#UG#)#s3B8m{lVt&`>SE5!+F3zQ0j3`S~Ngbq8j;x zZU8neQ+ME^@3QElH7I6O<4&NZ;fe`EK4@^^^AaQN_T%mLUD#oVx3!7zlAy?Rce*!vObnJoFnT?jrIHlbl=HlH97VIqHmO%IdW@pYN4>Nt zTH+WtUPosqANh5kekghXK`&%1Fg4&>X&)-%?mfgoEdNI+5fFv{LPcQz9)@6CO{xVR z1cFI?5CF}B!bH-jW6w#tb&cu|EE11sjq$tM{U_UG&Hz(%tT*V5HKzDiPQ04)fk(#6 z5w=A9Pa*`){`V4crdHj7BNm)DP(CW$iSNWoYO`Fw=F?8q4I~H}`fBWVI&s#I4`A%o z83Jb*JRv7Q67Q1`@7c5e;OGwoGSA4x?wK4@Xr&B*O?2a#1n#J*^#`Z)axQy`j+C9Y zOcl|E&LPJWrO=ygnFGlO64sh|gFpVMIXIWqe71yo<&YDU7$p@lCg%~pvcWLz z9S+N{A2tvu;SJ+e>O&GE31T#T>LlNfILzCI&^tP}k1yfYotXj9q#pDUSgksnTQnFf z#DpMSSgR<@`98L>mF`A;g|#{#0cvxw1wKqa%2x3(^Yegr;v$AZkZ8-UY)2P!tu;xq zYS0UeTJ;H%m!M%izFHdm-%BafSmOY7b!XuQ)y_(^BVj4f9r`48GTJ><>W4JH%(j*< z&KxSpDgzVxV2CZIJKy8`T6Iga3?`F=CROh7hjB8JMolNQrBTx?d|7F96tXXq7nHX{ z36`QqN{jY}uJD$%w~Piz4sDRD(Ia+_Bxr_E;z|b1&WE0p&A>4T{Nv_2_Ob}|*-Iew zPgpX8VadR`JGdo1RlSEb9kLY1*i^&rbw0H_J*#Lw@)$i4$ z-GCSzcup4}=+RBGix zU3k!z9!4d*4&sBDTmfQo3z1P}g{J>~MKhTlSDOQ0r6U zVL3#WB@UPVs1qJq;`E0^SGEa#7z`|f^RQiC^%#_^9+6*tkdEJv)-g|<(MZiFfZ7TT zVNyY~`^#Xm8EtO!fozF<#LcwBzVvPd7INbNfil=I2yis07Wilz6b$k>r8#5Nx4{H} zy@;NjoxcK3L8{Mv^#S%Q2B9P86eiLzZ|n#>fL1<$j!FV;*@8fC^8l53UAQ*UTC)+z zK=<%vJZHUS>3riTTw;J~t+hE*pVOuPR~Q47{;?1h)a2)p)uI|IC0wowc#^k$FHw^F z4?5U38{RiXPlatpMbAs!g}Y69LGPQ?;TChY{Qj!vFtC_!{%VCElv{r_0v_lGvKuoR zApWf05!FQ>K`>!9(p;@=U@crP2{E&e2tgvc{udI#S$8vmpk)_L8J4~Z(8jGSC^V`Q z4r=f59Mr-ZSjLxl)7ITHK%Xs^Pi|Sp`8m*Nr^v+W3&h@SOT>6g$TGeHJHR}#Gbdqa z@Kf*4LE9aUW*EV|gYif9O}TF;D})##e2QNV<(ZU6o&2$yF}2G9OI8JqZcXt^8R`$@ zHE=Oss*31FHH>b9cF!W!GV?{-+%`k1>Wt17tLJ2Ms`9h#{=7j;u%Os zZ*7+IAFv_dJaQ|qAI$-khqFYSk|M{LbmWM-0bf4^yftKh5(%D2{~5$dJq#peZCuSaDNkrUvJwBKo=ft0lmLh zXff*CO~j)Hn@2P{Akv%FQCom5hQ0?-HY2;kykWpH4i~I<>%C~LgScOcCHYkI#o z*hu?X+hdYxGmu{>QO`qB650v2xw8^JD@@a4fTSr?g{t$FEDpgl=mJA~4UI^s=@qrfu3oUG?NB|OmhmL{1G|nIvQoo&P~c=fhXY+=Xh5B`m%(L_Hhghm4YppO zS7s+BA=~s;wm~wX9D2u|)D5yHrT0!2VJOiLcWRJdwu=w7s;z9O(Cq^0RJqSZ^dWMP z+6p))21D>x&}CW(srs!A$IWwI?rpxnl7=b9eG?v}11v;ip0EqtX(IVFY5x3Z@Qj-D zA@oERL@(fi=k22)lC2tG}=b()DYs8;-pHj(XYF18e$HQZnM3Y_z0B}HnefAMz`(kt-~ z*+PjLs77B%SA3aHUBDpEhgy{k+T&>wa%6E-2NIIKB9pe`R*|_`t-%47Vdnxm%06m? z@4bMJcwG(4%g$-%c^BDz38G1S5T1&6Ed|dQ2~gcKMZ=M&D}<*=ZG48H;k?9*ap(|( zZyDPGl_6`yV}l&KL5wh;fL+xsl%JSUBo(n7RiQ1;#~p)cGFT~bz?st4Npeqgf~8!H zHJn>*RyZrs5zpFHw*wLPXOXhcn5^XF!`~#YQexlN;uWWb=Zhv2@Cr%sVR(8@;!`X@owZ0}6ME@`5>{W_}|2>tr!ipv90( z2qlISh*(h7=NLtZ0YA%w{mYl|KxIBfCew1>k<$N0{>C|Au_HwZdDkDoSAQz7R)!tt z)nP*s+Diy|h~<+Hvu7*_ko_7>-`xZ%^qt?F^sQ>OU;4NnP0*PQ>P5~>Oj~F+3ZkxN3r zlM{I!fN@j2xl%auMJ0X&h03A7zk?E&Ze zvRKawzQpW{wkuLdU;w>4Uw$U<{56Hw!J z){yaVy%p2iBK87CKY$&iO9V(sha~5qAPX_`O^BZ4RAz8^MJCsZOcsGGtjZ@qaUM}mfmx65@o*%`l@En02+%;e1@V%m zQ3GzExcg?hE&ANNaFOyJ%l>|OGswohx-}UGoFV|RK;};@dzq9^XSs||a^74bNU#M| zLng@j5rYRrveYmVJVdb0awd;3Kta9)Xua$(cflZW7Br zNf7x7@5*d2G2;qauHpYEJ+V!#!&24{*Sun3En+#s}aJa~Ho*V0}vv5St@JSk^VuPY9*jP=6BEA}E6VaBvF(Ef<_R{Pn>5 zx{fs6MR=S+w-8hlP}*z|)gEcT3E!5OgK`~QX~rrtpa7x$EaM_TuCAGB(5rz7<5(hf zh^RW2i0Dm?e=>e-!^d%U$W2-oozuFo5VvijiwWsnVE)j4PU>`?Uy>uidx0Zqh#5U` zN)v289DjrW4D8o{t`$wRGd-d)W@SAV$^LP?M|Q^$v~~H7MmQ(U>OF7_VGpzctW)Gu zzy^c_;8LP`X#BOvH%RBlD|=J<;oLVY>xD$Kuv|?+UyPvUgyCC_#EWtEi>&Y=GL0ql zg}^$bR@RAggfQ7p;IeTWI@x!A1UNr%Odozx5r|)!Q~Pec$mb|+}k&vCiKOO_fZx1JYmE{mNJh|0{O24??BQc&)TUce7=Gef( zemaQ3un#XsyJQLE1K;TtGFxda9BH{IBaw%AC}2=-V8~_;BU6Qi@juCzB%O?~>U_Fr zOH}qp&V&0BABlhL^}~^FF4DpGn)%-3{tfO~*1-K$ms90ZyF;)y@@1rcxg`FB%DJ-O zqCO_Tt7t2F=8vzq+(AEbxkK7i<0<}|5a_`a9}$!#?^G;#Fg=&3o~x*l^k+oshtB{U zJnm3O&({Zmzp|gNd_X_LZrdhJ1oTgxNp}f{Wp}7|o)=%?GXB2iW%+$Re;Yaq2ipPp&+l*a8qcx`r!+* z3j3E0@wbow;nmli50)_)y~#w-Yh=_MsBV;j7&(JhC$96rREpnl15T9dS>>!xXbx@v zaXBg>8ITu&a$Vu#sTjnAP(PdI?N`&Qa$y@;Af8s?8H*%O(g=#l7STY)~#tYNs4?K@dvsl-?yN zb8`a8`wL-KL7!_~E-So!4O(kve!wRWkCfe`=PPti?DeZX8Uutt7Cz2i8`10Ldvvdo zO#-vX4moXB*DPmkSaZ0a8xu@N0_`o1$={RoH)-GCG zZS}VOTmP-a<+>!G0o<`wL8~HlIpes1Rt&i0et*w7vjx=le(v@2k<2;gU7z=PpZ$Ga z@2q^!{{pJHREF7}_s{mMklS_M#wi-8dcBxlu@jOR>Lc$`;tBfnUVtyT{w1HmGq@fF zCh&~*0krE9!`UD`Rvpc=#@?E^)XkCG&_DxcRK(lBA4tV=qY%9#B)TLqVM9+x;%LZHS%g&DMWDVU`K)cR0k zQ>}KEp5_|cvBv#Q(?}k^Vl&^8M?Xc8Ol^LA7O(id!e=KoNsZyq^@B?5X$xzTxBPx1 zXRm1`mqFzPnl%=r!;$o@-j7!?9A4cmLp+CJx_V#C{6_h`w(#R_qG0q4t9eB;Ggfot zr=qqyF`&B5=^^SRbvA~8#Ejm#luUTtRUyB*~YmvT!hhp@7Hiv^m*+R1Jums>Td)3hS3(*u_$vkCf+|yc? z*~O>JW~11GK6*dkENOiYxRL)sk$hYP@LC`K?y~uD@q3?>D}jP`#Ir=Fvy{moAh`ET z0>FqP0fQEZzcto|x1T^IsQq}(9;8K<<{j%p z?qDEG__=JpFGPADYiW3=^~p>P7Iw7I!ozDwyGzw8>b*S2y;a8(YbVpa&K4Gxl))*7 z&pG;*KYMhlHY{s)jL|BVQD$84$1F6`T{)yOvtJ&s-m@?|xR&mD?|s6T9=u&3YW^bo zz%1x5r;mt-c?XFv(iZ}Y7^P2HJS^5?mZF(^e3YY^d*8~q#6!EhUDoR-`~D;E7o7gl zE|i7P#7-vPlGx}Sngb_0?q%;^k7A4Sy_z|hQuczp{0!DUg+&@A;b>Z_Y7*}eNn7kQ(Fjo17L@=_2WzTWbo>$r`Xx;IK9CYxu#Qf$tKd!^ z(mFCT%uMUO2xd7;`j|~>sK}CD!z*EG!FA!g*sIO49ktNIjJEgZ6#(3v3r8@qeA|4o z;oJ{_V6e6lZkjVk_g3Azk#Xcp#$Gg@^1%cFTO`u^+rw51Mm>n* zDFxLB^j6Kc%7r0Z1|IwVQSuA-b5AhhGlz&foUiYX8zn~KbmI~%{3enxXa0* zS7C|OvhrpgU%+28+CUBJUNI7;8DnZXi>j~KwWX-On-?78Hf&tjVAFG$p2!3@2ZW3h zu(LLLt5e$ec1^I!BY0>s`yyv_Qu`8ozvVr)$0}I&4Ic#x=Fv>VHdp~Nw}DtCW?%8f ze+KXv{|I5AFzg&HyK)IZ4A4ofs;@g6)!pwyKKm=%#~!Wu=Hn&j_&4v=^$JY*P$Apo zTQKo6hV$^0icFc@&I%iYQtHsKw8J1Apv#-Wu8~{JRHI-?y{*k!bMoui6{79FLlUc7 zZ`J)aD!V7Amdi!|KzFjOE6J-sI92?*5k`G8<+AIeNM=Cm#jf_LsR+NHKh|PtU-ouC z(g)2{@C4`{sXpw z@5Ep`L$F1N+v0u9E@R910N!8Jicp#v$`Ce9(dSdO!w=(bl}c~*d+LCgB(`5)6PX+ck z0}=#SNfh=1vm>RiMN9R)^-Z$DDUwz#(9Kl3F=n}gmYFHGiiV@ifv&@O6>V7Wbl93F z-Xc?#Szn!NWt~r-%Jd?@q1Sc(w8AZ2>3&KMXa*Ob$^0XwpSL95j$+Pfso4}s?a|Us7W(s6ifi3Nq6)N)45W@w-X*#^CJtZ)F?*c#!}Y~`S_@Ly=`SHBt=$)T_2(Xgu zxZVdzUIlYqcrlVgrlAjg%J=VgtqoS|4WNI71Gn_`Xv13usTelx4dh#A6@3{scCbGq zRhX@5^KO;rPTu34#o!#<$_Sr( z`5!=tY^Y8yzSeSIJZDDws{P&TCuxnuKLMxRc+y6rGGvw1PJ{@5mc)vW9L4dQzBGQCxd9pz2 z_SOqRh}Qx0@4e)9cEV@ENz+%~dRM!TgH?@8%s6;s4nlc(KF6;uX4>^{)J{COz1xNeYnDaj!LU z9*uBf@J=<-@WTq{8WDK!+sCLsy~OVhwn{Ok=_BBo3i?ZFE9Bq>v&uu3Qm8jg=tO%M~BfJ^s2Y&J9MYHAI{4G{!1x& zRbzQ?$4Ji;=}1-m!wV{Gc`NvEJRicFo2s>rNAlZGg{Orattxiwkfr>SL7RbMuL2g3 zPl=R-*6vIxlZLi>-!iHx3Bze8M~M1cPr6O^WN+0Le}GQ=C#_(hzh~Kme?gnD zK0>$uL>(91xiP>08JQRxhQKbbW6`mcpaIbXn?(1#;}{o%!bc$l_UH9N&>96eSEwdAPXHTz461w| z%ZDTv%JVXE3!VQ@t!$5+jl|Ox1lpZoAGX8fj`Tm6C^lF<>#%I84Pl)r1H1YK((l8m z3-U?J4?5MmTzpAZ!gz1LxtCBrlK3LBhD4Xoa*ZWYGBjOjD3HuU=ASawij=+9+t9{t zvArX6!rytyF@g}Y2Zor%yfKUY_lk?mydN-G;w<)J)T1?OBj>xk73gvoZRnpnQ4koP^7tOu z+fu_;zAd751!Xnn2{IR?svh7a7=wMl)=W|4f%WIaH&k#laZahKUs);k;6T-uNznFp z9Yu_dC}Jb0KjBaD2EM9AUOEyaMhHL}!npJbJvj0|fChwW4g1W-^S*Th@o2N1p)q}s z9n%Bq4YI*-FK|=k!;P-6)A`+FWz1qzwVK~pJN!Sx*4P)uI?2YGmD<4cE7z+z!}O7w z#7>4ZNNwlZhwR;<3e8|v0OEzrW3%%13Gd2(XqRb(cim+a&I>6JI%P3QH%?f|ijCg0zxLHRhd18bR|*y-fDh2Mf}1I*v9`ZM zIH#Msv3jX`gG9DmE5Yg^|5>!Z+u}XpoV}Iv;XKo;&#_#OP1UW=4o%hPz?slTv_U^R z3-qjc-4(Nqcb-$X+TOpO*)ftTJC-*aAE=~{2Qm555m9eObW!|Fns*BNQIoTlEhnYfh5Xw-&$21*j(oHb^UIMm^yNphmsk4$K-E7RA-+a2R%a zYnl2=H<3@~{5B zrjbfN6%xO8i-q}jsMG#GG}@HtjISRU?}UMpdN`Fp!wE&d6dsdA*CA8H`SHPfhf@vbs;t4ms$jmv#};hN4SQn=4>+M85B$e;vsm-_gi z?a&cXbzJB66$#;8FM6vsgo3&NZ2Q}Wy{p_Bi~y|EwJ!>*BtmFUcX=T$(NznNTCpeW zG^95;+kzELpH2ZTqjT{+GlE(#bBj7SUmYM6cTf|cAu4~NOQ_GTu227-U%Ao`7nbh0 zmQR_JavyKAk2LD{q+Ax)6`&OXa?ESk0dGLfW|l2xNe#OK96do_dmm>%r2mCeO1NOj z6HF!l86WH3Hzn>swnw_#+*VI(r0vuAW~Ha_Ba%#sBnD}Asut2$b7H-JQna_~&VR6p zA@6^X8xCtdc3aLn(4e1qd4$!(Rb@X8k;Av<5R4nX=G0y8}#*< zUluM_T%QtNw5CVcuxNfUCOk#$%uHKkAyWTr)pUXnx!3RgB52WHGijz6RD=O{v3v&C zQz>t&FjeE3&ugeo+vN~Ug89{!An6-Zu2~0wSB@8@WihjidjW6#V2j0%i2)TEulmS8 zS$`eQ>u{ykijcGl2>=KUwQ41d`;pQMh`_cT(3T814PKB%RYW$xi!P*j^F; zjlaj4;AnM|$#x3B@LK+^%>^M8j}e@7BQIoOe5IQ@y!JJAO2b(d&Q<8-B1{J=)y>l1 z2{92Z6R$QWJ`59P*_80A2aYLo+WSK}!tu8ThT~sA#&_X~Pwcg;+|rGOdku=9y_Qyp zPgE{j&^*1I2k&8G_j8gI@m_2M5hhD_;`^>Gp3`f_X0$iBB11Sf(vBOcoW_HtQ3f0O zG`|z=k^+X%)xJs$!3aBC!85L~#{q6b#<}tw)ksc2Ru@xP;Vd!YDkBlBKyIiKcGfDl z6y3VxCGi0+W_X1QQg&6p{xqPu84IJloQ1btE+&&)>JtToe8ip~zAB>7(<~kRCM$;B ziA_le70ygDf~;5LN`tWoTsNY#>_rH|MLZ=3hB*wZtvg|)(=Ow#sn;)i_i7&r7*O%! zDVSCuLa@tF6g)3}bAIb`$0F-ev(~olTxC#zfO|dxA4O$_s)^)_{#!NO;((84g17b#?35Z(&O^4s<$y$iOj(jGCe$NFlP zZHx9OY3)9fl=T+Z`mFREwtCtJ`QpC1#l6Ua=N)ijlx0E~W6T!;x!!%tI-!e3|@Iei(^oeL{;-``LmeTpN znw|R^D~LUuk}T_LNshX!vh_4z8(-f)b|GBy%_054>9Xs=eBV@MrlV67M}jmkN0z4< zAnj;@Ro3x47)9doM(!*?grZb>G%sk6lVA+#fB8dt%pZ)?@e_VLSfQu&{ade(%KdOT z0D|Aoz+vyS-_0kZ{VVvv4)B^U6?$_`9Sm1~G+9gP^bXmr<30#Y`cJ&2zx?RJy{kC- za{l1{C6nOxQE~f*H9D2=5Ar9fv;@E!1IW>5A53eIDHs}gowSvv13BhlbLbeu!-E`c z)zF=e=k;B$l#!s0Cc%g{jkHUG;Iu=`+ z)4mCO@Xk0vX`%8XypEUY#jF=*uWSprw-`n24Ek+7)>bKVa^3qr)Mlvsag>LoG=T`C zy(bYV()|EKeZj;VRO|qXnPwu{c{#Uvua;rFR*kpbZXiUny?l`HZ1i>7OA`HLq4g{_qO2s46jz}*xnl(seb-Of0^L`ObxgGA&vM|60S#M zAclvnw9Z@JrY(h)a*KDLel~PF9RL7A?1O{RLCpSWK+p(T3G*TEyLupY-^v0!Z*R0w zpRZA&4r9IAsO;8nfcRRidNm5YXjE69o5zl~L$hz4WfKR76RW~)>%R=Q^$c!3s3{fh z4ae6HiNrf0RXwHicPA74NErL^L&BSvS8@f~0eKFUr3dMD&YzaV zDjyYY-on!SqJB;KLEegREK{LQQn?7Ri=x_Z!3xOUzp*p(o9)MExsA(w#`dyRGOmVnN>6 ztryCm(C|gj)G4x-dkuF$pU)3cX-mO)N5ii^ER9A$xOX=Q=>>)ZR=4_wtT32g1v&oQMY=f3an z7)_3f^gb@bb36mi5>zKb8Paq|v3PFk=n`h=oI;Gnw+8UbXm;j+Z2Oh+Oh}(bg9ZDE@~&kt;B{|g?@#l6tq5~zVA~u0!);sowH^U%CR;-%6E_pdwLmg=eoydi3@6r2nK?AsQp#DFH!$wB)~4TK3q<0V53eX` z{dW3gJtT(?caH+4TX#x7!E=~rJv!|V@gy;2M`%Oq;gR^FiV{Q=US>wY1fq$5MiQS# z6R&$a%#|wpSv2uZB=HYn5;81=M4LGFlaw-L^M?vnVcNj8BI82VMd)5 z&JF|I#1OHt8>G1@HmTsKo7vM8pEScfw@2d@gOmYmULmx?r;z-OZyI+0$@jfRI% zAe|$C`CCw-ZFeEtiIMz4@>OcQd9LOJ&J(PSE=+2@>Zg8baFOw4cIHffeMA@Pol2ig ziuwDHll#PLgkR!nW&nsvQV{s%7xc9SBnpH85ds^P7YfGlZH+@1<4vCLkBs}2Xz7mX zHVp$&wtn;Y>N2O}LcK;(UBVCPB{zrz{wPKnrMUJwky~Wxt)J_+H^(BKmE7*TF~W2&2S*mr{iQ6)v3%4HVk5?PvV`(F@ zkL_5rn7{_qadTOipX){@0NZG3__FmMQWj?0`lpYkK@q^5{4VKbEv*}xDLuB7-)QO~ zdnu_T!&(p>G9jSPd0_f541`4XkM)fgo5-v!-o7AvmRk|ev&Fl^nrZE{v80z_hy>V; zobUC=rSk#cK))ce36d~XYRm^0i?Ja_nO|9%pQ1^!vdX#8B=r4n-q=oUua@TK?9gtn zSQGXEUIr|4-VGB1N5jxD?&2=h&;@)wXw8|O+|JS*n~TH~|Nh*QPch#;HUwl-Jk8H+ z4p*19&PiSn!bg2BdVWRkCKJEFv|}M&uFQZPv=tP)J1>c0V^k(Wm2I zl+It9A;tBo80IfR%6hz8$76}2P_&d-0?H=Gk2I@eCsoFe^sD?fNkde`uI?=us*JSk2X=<68cs(Lu;jG=1GMcf8Js39oLb$?X+0{5{t|v%RH=25 zB8J*8_bX&{i_>fQ(vMS`F|@WNN&K_Ln>9xZ+64`J>U3Kor+qi|05Li62iDV_`MQZd zJvr^)V|Q3@M_X^9bhRq0`!ASccS*?Y9beJQ85_U1wE)d_0|7dn-fmlEndg4O)c9VV z!(mx8`PNuC{$;<*f$7mz^qupMS`ytAZq1X5IGnr3HtQYkeTIsq^IyzxZ8a-y_Pw>< zADjFYcS}Kif5pvU<*#_Q(y!fy$(6AayGySy6jEO>T*}*sB5LrA?$W`T2|)Aa&kXk1 z&%F5%@S+84p8_38r$wE5$B#^x3O@XB6RT7#cApyBxx3Wh0=M&z2b@W$l}csaFQ7j~ z{14A>OX8{AwumNHdsk<1Q4HYGdxV%c*ET)K0+e`vvgd9a{3T87pJp}?Bztm2xc70N zpK1Rn_^0M+H~z);;rTS?SHbfLje0j`-mz7lbI+SLE(_Ci9;P1FPTNH&)K>8pajcup zH!K=Y%>ZA=F~UNawGKCgA)|*7JTugu-YP<$zI#PGSzZCBa$wOOg2sCH@_u_*b%9~k zY_RIlE&WQwPc;Ak9G|9-&CdOs@#(;?z^9M^S}%Os)6itsK4^kYxGFZXFPdZnEeuuC zh94*TrxNRZYAFic2H>JlXjAr+mvDUid)R{C5%>2$5h56^>5UyAWKh6hNc&`Er`R09 zf}8_-)PkKzad@-auyTGC_D|Erd#f(xi@m&fN4FFLCG@ozYvFH8!{=0?O}BIl*T3tB zb{ig@QV{!ZeeOs1@5`15k1>--7O9I!j2-y8qt&y=rp7!CsVs3O_n-|SgjHjYi#9C8 zf3Q0n4%Ofg#Vaix!-H6P;){k4o%ShMR5y>SMi*a9-KOL`kbd*R1&UfF%Q5Rcu8?13 z>BppiU#L))el%tA{kJ`eQ0wt#H)_o%`CNk<$#HqEF>YkG;w?q;L)dp|h~uWJ4x}M0 z^`4>xaBI|cnqT8?am7^CWF01%IrR4y4|#rdGn!1!_i(9A@$r_#hkirvP}ci3_0nk| zgx#+sg3H7I_L9DJ@Qu>xC-|%(YuZf5X_pJ4yOg6-giq>bPvwmrSK$LJ!Z+J?{pe0y zMtO)!@-gB;8W8H%Q z@vch0Si@7!l85^a%KMr@y_y}=Bx-3;YkAS^&lvBB!1~%|X8dD5YsNT0N|FPz4$1L& zHJa6(MA@z0YYIg}s*sHN5F%B2KYc@UKxrfD!t?%nkwOa3w{SS8oxFmeRYPQ7f9S3>uGC;Q9C&DlGCnt}wzi}14WzWSO1G&zWqq}`*@`0>4@m{UIG8x4*sUQsFFqD4WC$$ zrT5#TvnUM7&Z2NYvhyhX^K^&mGNm+!L(De=fZp}4#Wo}Xm0&@<2^x~rq1yBhfI>?@T&q-S9WMz`%Y#;Pfckb8P#5qe0F+T=+yuVC+G&0+TKX=sUFCeVfYwU> zx5HBKb!PB_w&fZK0InqkDmJ?{@5)|MPms(Zrh#QOR|;hIoR}&jCspUh+!u+prsUE+ zZ7>%CXPQcawL*;>6-chluoGLYJ5^9}S-i6{((qVVzVnh6XZ+{eUB83CRjnUjsCKTd z6)GG3`M1`u)G*&?x%&X@7Vz_}qyD}1dz?}AP6|a6Y~I9WnBQ_Ep05Y!#oWB?@~G3JzyVgeLIgcuR;@G(PM5)>4%x!3*-}U+N+1ym=WrWdDT$m zlS)!!*N-`KJ`to4nTBzdv5KV-nsF7GmxWT9zpGupCk4T)Cw*;6yp!2e{S?tpw_#Fc ztVIlzBH9#L%GFxM4vXy#MbMY@o7g~YfAF#@z@+rEyi}Lz?(C0;gCCiD?frE^T;iAk zQ7}VN8G`ZYGlcfk)SwcOfXq-7N=``4E?KyHU8f8B>A}9FBr7aB~%p2NvIpIjC-wWQ)^hbFHCFH+;e=08< zHnyJbmZJMSnYoVp>x=u>i8YRGDk{eyZFQfCBwlT)`DA`wpxr(5T>vT?r!+eH!#ONP zEmALYxSA%e;*qqBIEG{!#CH4}{BERXwExA(!1{kZ-7FJ>Yhh_ylMHMCl+rlE!nte-i5QA z3pdVkUX&LnRsJ*U4ukO4@BYN{A?+7?}L0s7a+&S@KSWBw}# zy_k~C5q*n}d%PR8yKI{GGfn5b3bfqm-hafF3zFEdLL8Z-|`vrwdY?&RY|t>HIp~azP36 zkBHn9?#CeCoE=q2om%Prh}lTbz;W;rZDG?^IFRlsP`;SxK0!((wS|6~%O{tsKQUkb zr`y)Y)aR#E3hMW<_sq8Qmrr43Cq&QNhu8+fG%CZXsRQF1dZNi1?Yd}<=Qcd&T={)i z6SA_Kz+;SR_FsBTqyfQg1d>QjTR&bw>a=K6u;JEyea)((V3ksv?{q9)?DHmOD!oG zf*B3bTI8~kQF%Ak@J;SBF?_624Gb*tLH4*?em!Vd_Z7WB+h#9c?p?}ACML>0m1Nqm zxz+N~jAv%py=L|()?r$)QJM)cvEJ&7*~*fIH1<9XM6t689YTrRC?ikkFchn<5{({r2AGxm2ArE+*jz!S5l zd%M+Y71G{rQ%XwOrc{(BCXo0&?d|SA_Df8toRk>z0djP-;e*zjb#c@N@8BDRd+4jZ zt@p|EF-?lJ+4g#?Hry@WF!`JqionhSp0ByLn70m*oVnNYZ*T9=H3ob0B&ZeUZdUNh zQ8xF5M+dMsS9@dee(;?XGFt3NKk{ZYIy(%++(KqS0u;Us;NRr?V^*tI#9Cr+pDSxlVrTf)f6xgyA=A}8jmy3Odb7OcOGf1S5tvYA0d zoH|DvadMT%FiV^E_GuF)Q7E0R?1`3cFxo@_pF-^ov__kjQ(OBhn)m@AMcoA-FQ#$c zvB}tT>%4(H$^pDWE6?*gEkX}^Gq1h5kckZN{m03p6W=nF#X=;MJ!-!~lwE6xMPx)Y zxgQa9UyZSx8!y6Gd31b??ZAMoh zYyW%U_-I2q`AJEpniI3(noKc97TX+9jguJk#2qE9nqfwB# z2l(7_!wETrJcL(r_5sEtn-q7%?kL19-}Q^1or)tQr zTA7%D8okcjo6>Z8hJKglCp)(08zvhYSTxx`=rK3hCTh1$83Y0S!E7cwM~$zwVXdPt z$NNVx#MqA!a(DBtI8MVaZ?$skgKwjb5#+g*y370PsN7%@%O$0_@#Q!(iX@daNT4u- ztfaC#;|X^UJUEh?0u9(8aph06!U}}Un6;>paY4G)c{AvoL0R920ULGrj~moCQH)() z1GTi|MIGy!o0giMh{({w;*NjABg5vfaK3xxxAAKI?t#goTHsQzz7IReCqW;wMxr|m z=w)v&8^k*A2U7)=fw4h~mhSiv6yQhfEX)xEU!Xvgk6+)fWZq1khc)qwH>;d0AEB6r zo5Vy$F0dNFwRNC#)uD_EG79cMd7*iqBN?nLIq2LAW=SZh7kg}!pp-ctGYHKi=Xa`$ ze{u?B?k(GC@M#(-Z14{}cQ^K%g|c_<1^G5XSi!teT$CA4n5rL*{FtWczr_q0j>1E_ zJnwE59fU+QQr|8C3M@+nugbb7>`|(BRY*yq*eeAto=H zik%4g6x%f+<8vk}A!FJ%QS1j)ut3IGp=YBIQ}_ECik%!$C}W(llP_ajMP;b=1$+c3 zZD7I-pK8wtgbO*(0DGtNqfb?oDSn?RD&TS0xjHtJJz$1}%uyw`L?PE$;6}4bsJJ2h z!2-u}6>JVr$hk@(>5&vcmx)pnl|E--!b?Ah#Gffk&lBSW7K9%YLt>wQ!z--qxX*rp zV2(++t~0!OWvSDy^N<*KhYoNaS#!T6`}o%VIp#=fk^4*bV|93iP3SoXROMIcW9id` zkW6F{YfaP_tJCHE@F>0O@?IEE8GoBSU#%^UCGD%Y{ZHtlfVk>3fYBRciGQcIxF^9P zsD)|yV-&cGx?8?GaLY_oh^(G=)YG19nd$a8oX0c??XbxC-#>X(kTe0{Bky;6Vxl~z zpsgngzb@6+5MLF{2J9@tb9f{*9zANk^r#$>=ya|`gJtwRS@2(>M?XW}t~PXnyCfSo zrk_Pb%x%H7jCfW-pR*#)!gZdbj_;(LrDveW6RS;iW6!J0NKL2FrIYBxEnS}7@q>BP z+Fm1%N=xadpw!rZFj->gM}_Z+70dhG{iZi99m^4x<^7OK=3%0)LzjwpPlIe;kMPaO-m=1`j13`zA-R()sNV1ey`&5*#3;9EPavL z79b>A>c;dP$hZJe2?7L(2ebHxUcPJ8x&7sNO)aI5wUj<(<{ctE~THJSIegp2bA*dW&dPlIR4rG7cb-A>9J+RFNWK;hQiJ-yQZXuMk2jkncq-% zdh7|LK|)vcrE^NEtTEEtnOVjME(d3Y@C0lL@rCo-jW}7;8Qw`Oo8Dd|mL)z#20Pyy zZ*P6EY=vH(>K$sYd}&Ns8Z+a)P(i655s{oZ6n5hc_6u?out{#0s%%!O`+)f10;%q3 zd9jM5x?67RUt&ixycHA`gXpLw9w)QTe|dNIWh zS^?TvS;$V0Lx6}KE|#sRDf3SpV$-B z+yx73Aa3|u0{bTK$g^^YHi1{VMn11~M@hNeQu9WHkn$`4O8o*pe6t=EH9@@D8xnIP z)XpQ?qLFI+{WBQ?BR{RJz9e>1fY0mq__}UxEAFO_M+_}KKC7Dz)b03Gw8zIPBQ}-V_`E_sM!b3Is4q$xffnAk6R1u@DO7{Wt*_TORbV&WgI#5FKUUXhLKB zNKKwhlM=JeJVU@UP3k;iri#|K#$VesYdd#Lf!&x(99h>5RKp-8fL}z-XyS)G(Zo44 zx=|rRSgVwJs9|O6wVB;n9k1gG;c6G2@<`%ojAE@1r&pPrw#hq4YZ+{&VsrR}=+&-tpBznyQnXZlyQ zd{xl$Rg}n&8Gr<~)T|x5Xw0j3%r%D?){Whwi z*fuGp*Q&&vqF%u%dTr$2(!hFM)awcPUJvzqwe`>U_h(uQ`n&U;-rnu>7b@ycsP5kH z@^98!Uew<|@l6HGvHkwOpYLx8ZEdH&+lVcW&RowW&q8$6boxU#DCwV_pH2h{(amtO z-kW1xzCreeSglPF{|d;4{aw)7ph#sOo}ZFikN(VfPI}CS_k4IZp5}8oS*2B@l4rYN znxmQo(7TD_ARd>5qRD;V9u#o64Kndf+fiXo81*cpG~nk+G4{#bIh7QvE+DwkK_7dj&!FYxw83{$iuD{*CsXyEbh5bFj z<97So(eF=|?3{J%yY$B~zHh1TBmLj|>i4ZT+xxoo$7~Go)9wj_eEX0UioL?SQ1^tv z_Uv#$gLspPl_1B)#m>`ADLDK@M+wxpgV{|Kn0fmR_R)2c^|jtRkJ_oRTSuZui9HA zHeXr%Odm{(e609`QhwyL$h-JfAQ~Sif>5MIo^r##@2}cvr{ev66l&vtw7<6|bNhP& zZT&m?*-7ERV+GC6YiN6yeeDi^oJB8?od0ydU=gQ4=15@qjM#O8;-|F#=Mil)!esORzK-is0to3 z#NQ`pV!B3o(8f9||!3tZgvuI; zsgR!?_#fzli{CREpqp2M5RexTmI}F2fwfm2iHQhR1vGxK9u2U!I6lrEbZL%&pJuPP zy=7=F1jJ2pdlq3_1X8KBDyqAsADJDIi-Zo|WR1XVlBZ>J$q%Rt2^!YM0 zknVpg1Z0bMz1ovY;$_4|&S)IY>Vy-UE#q~%gXB6NEhqxPA2%Z{q2|UPbAq*6!*8JZ-2f7ilnnXY!S8``f>7f3ycY8~L|vd+=O|uJX0>yExz9Brav{JHI0?5!$#jd$Q~2 z>pu1Lm(>lj^V6LQ3GQU+@s5|$%~7Z8DAj>&^=y){T=Oo36^d}{7yU4eET{}C&E(@m z@VwQ-TiyBS+~=aYa#TFtH8B1L1i?Qmp5PXy&2B=+?U6laXF^$fqYm(^hlz>N8~unQ zk_xI5(bbQYmzrsw=q-O`U!q;hGIk{p<~?G8ZKZujG*p$ zo%mSbwG8FnVb;9K6 zABwqKD#DKEc$a>}mxaA*KEQ0v#2o_~=~p#W_Wlr#%!}mY_WmG!xPKb|4lKe|=`b_o z4c-+83|PA{mQ0wBXC-peBI zY^{6dHv6Ydw91P2VujVs0r*`M>GlL6=D8J4dr$h0T48YN9hm?c-uC0Y$cK1-cKUw2 z*VKY|uaB0B^{(>{0Ob_#wb2F>O;*T*>zh?(Frlo~hz)~7Ofg|>7>tM(ihvo>HtJDE z_}&BOrE(MUm7}+;F`npV#(zBh1o2)2zDD5FY#l)aBG<-Lvj*eyL0?BiNEQV6~Wk#=tZn>9ucA9wcCVx z{qetqcZ7QRsCT#AE(du(;VmE}kA>5b)+-z?SS`A}E3(DAHOh|Dz|=@lWZ38>5|#7t zmi;%-VJ+NP;wcILyoUw`5@mrkwjkB>vc`XlmF@`6J}32yNoU*X?WWv6}#=}-L4TJWy?frk9DC5?Qg_2>9) zL9;ahnjPLA$jg2G9TGV?u!r1!Vs$NXv;FcBBn%6p@?G2Rn~a-cgi@{~a?4sI(Z0k6T<9NT9C$yxTJHpfQxfu3`KOC|oCD`7OA*JtXr z=xzoByykNdFGNR|@D6?u$^*7T`H~b4F-lyi)^dkQQh-^qXuh?eu7&-yGy79%f9i|V z{yaxMMfOjzSrga0OX^xy&`qdv>x#?^&`$lA<5z}H|3A*Zw|&+5x=Z=;e}BG?^CgSl zTVVKx&*nMuLXt6M2G6V?na10zzh~coobtBRz{&KFe{+STzK}dJFA4qt8{T?!@?$mv z4k16&(gy zX3zbkYkipnOSkI{H~=0f)Vk z51jVr7zPuU#D6*iz{Vm%Fx9ql>}9MUmgh(j`_u8fVY%$?zN(QCmbN_-=1)m%8C#uk zOb$g-Q~S~5s0as=YF6WWn>SNKVkI6FXL6l!&lTZ!gnN=opN}-Gw)Kc6CXWi+dYn8` zTJ}sbC2R?6J(z=3X>+;-U9n@Fj<>~IhG~xWXz2r=Pb&?n*=!)o79lULB63u#YvAP4MHn*H zd!03ED~4%<_5(;c?F$74f7Lh=`dsU&aMEqDHH$BO@pW>gfoGQhS(C%g<4`3D$Pxn# zK6fDit8u`V>F*{7L{npt9$1>L4Iul_N*juI1Ov0v9gNF+@IZgY-(exMeiiSe^YqZ= z4O2-0z6|(L#dj1TiMj?*y`BOSNr;6)H8G?(R+sW z{+t|S78qpwW02a!+}Y4~6JPg@@HqX$LU`P)NpZ3=GdMVJ226sD08HK}b4D=$XNNLy zH+!iC*@istB&@c%an))! zS~~^(8;^R=X_s(U;1Ao4b7=lnBBfCuFihVT40-)Fs9}PrcGpUI6^8YfBd|SKO6Z!{DA%~Xdtn~hNyjF z08ULIhI^ndHl7E8gb2)YQ&UFirKq5Hvj6f-O(5Roy2%mVp_8oKBsb}JFV(B}C2i_O zOlakj>-Z@`i;(i}y%GcAl;QiE^#-%aDg31mhnr>8e+l=>CO#vh4Nd)06G{G5<5Q;a zO#vT8x4~F0SCH}-^0bx}5|ngIuMmD&`NPg1KscWvo43WlJsVAOW~KaW;y()wwvpr> z{!u1npOTRk%tnhL6V}ev;v)@^Ok~dYw4Ly>LHo<&lEZN+{67`b91pzaoYz z_>^}S)iaMWnQPw_L*+Vk(tXyNenH3kyU88oas*a&tFI#;{iv@b)`h`s-R>w{SWX zxRoBtXXS5NtX6aPCq+3a3C5)VPBI(W=e0h*evP)HoSG~SDOcUpsqEt&Ta=A9v5qzN zR*b{spL9Tzof+GPzZm4C3I2W>v#(Q0uWscec-3;h zmN$Va25)8HGz~oOkKt~c^eOa}qqmFO3dirJ77G`1^Wpin!so>GLUlsLbMcTqJ$TWM zMX&MNKLwxTD=TaV`1@ZH<6Ee+OwCWkX%xl#%@728|3+>d&CZTT)P*rxeeZ6+T9v4H z$gg%D)%?T5Hbc%3_n{}n{z+CAU6Q zsLcX&ly`<-;Uoccl-D~*VQZza5$HB!?G;;pFyj`0Ymt&w$_M+uC@PB++c7fJs2MVi z&Xn)YQ&8MTxnlZMG+*X=_9r5pvfF?bK2JzbV<+XttNX=(N*3OSsrDWrUP}E7-1UykGsxU$9zsB2-!kUgo!a zxIk9x{jLIN=@)b4zOlR6%-L)Tfb1@P1(3CSVx4&cTmc{tVh||t4yIvolv#k9Rtcok zI@kN%c()yEla8q6dVg8YP*YTp?+TBUh;2W$fdm+$!91u%V%p9^XX&czY+oHag)TEK z#H&yC8D3Q|q+6~8h(|tX8={nVnH?WAWd20HGKPFbmH&5N0eeS(4C{h#b*LVKq;4h6 z(T|oy7lb*DuLO$Iw2gjsKisD!@oY;1h2}-k#pI>Pz^9D_V-3ZDFyLM5{T6+T_1*($ zUh^m8KIAp%UOdUYphnmAa+*`JT?iy^q;I&mB1r&hL{WMR1=R6yS-)VkiZ zQEAsv(lx?zn`jOBVFp%l4tv-!{bQ9wJzC?Rgw6L(Xk}c#7wl)Ta&R*@?L>rm5P$c{#qqRYW7o zJ3|u$!P<4+;uc`PnO)l~MV*g0W2AtLVoT)gXF`FH_uX9)e^+yrvU4N%F=Lnl{t7F> z{_Gt|GgvfUjHZU-KGE!kjd%kTH{}2(B*RZ`B-@VSGcpq~hG^hxG6Ms{IKO&SW~A;{ zv84uErT;$bmklY$UI<;=yLBY}HT1ONQly)}2b+0PPmMvk^?E2?aVGvE{vqO5fr6Fg zZ`;BXb3gkZ_VP?L^?+dS-HavMcKUMftq&{~%Xfb!FK9HKl?An}R13}#3AM69z$Z~N z%OT)HGq-q6M`+p{w-m%u-)g|{kXr?cvI-B2{bjTm{Fh%3*#ofq1CLE!?|1!1?o%Ty z)F|(1b**18w(O0DP}&#u8uoDJ2zG6Q*ZM$ae!ze6sXh>V45K*f<1aI(`3&YZK4clp zjX|M39KWT<*sbzocbvx@Gc`V^xiBcS5{1e>PUhow#{ZGm%1WjMAFg3)Wb_PrGUqQ> z$I86}L@1JzNm;F@J?v?G<2I}4#uvIJ+?PpR=mLim0p z)bh($`{CiAU77H*M`jLyYl7TnakaCJMUNfrPPCd zgexInxh{n7IsM1S^Cv~8P8=pPW;YxTbmgAX40Dn<2yhrj?G$tW@G#rEVIlOPR6zck zD#x>t2X>ZsD^gdW|KJ%C(J+-!_tj-ppY+5r+bBZ?V(FyTXjD1s8USEzIu_L zkF?Ih`SFajUHCmRD*b7Lq@6Z{I*Fl*zlTGG&&kDqq*xxF$;EdRJ-f+-#Edt)LXJHv%lG|>TCYBidiEll2{!qJ=S?76g=vMt4zZ!p zRHQ80Kw$0ax$mJK0sJC*mrN`LK9pT2m9 zLWITaX2k!unkaFuIhz9JRJ>D7CWm{KXl}%aWE(mzXo#aR1q~^|`-tMUNbfq5GU12$ z2QEQ=)y$z;eq|$IQ*!I4w|-eLgr>w>L~pt?^umdL`q%tKGyk0fXo+7GbwUPM zTa~A?BZ5yzDwrliKm2iqThrx|c{;qTREbSDH*sz$-Y1jK_Vl5f#rEVwkD_q2F$@2q zk>u6YM4}7M(X(P229+5VK7YrWa{?xjFM^zW%W zQtz6%s+TO^^(8T_#!4T%>?ogp&Q|gktnYQJGl%8rTV3a*MAPU>HyF{RM09jW4?=D^ zwz$$}j?+HUS`HMdnAt=6yBx;ujy%^=)leR>7OiuY&L zB`*?@k(6~7rj3v@Rl~yX?gz%{AtYX~&+D3ve`SjKmgWj#NOIgHb+H>s9;1ssT+|j; zZ?=I&7rJpinjkZrGr;i@J!fOgW_am01NBkTCBw?AFR&W&`Lc`AV_taysebbs^9ptx zVO`qXj$%?D@-3?SHZkVX>jEj^r-y+9AjJGPzEM9$a^=Z{N~b0}9V?2Uey^#Ya(B-@ zOygRq!V;`~;pqgzexv}w8Y>y7WnP#J`aNXT6l5o+U>tF+cX7s7_tt`5jO!4_MQl?@ zY5@s55HzM$xWp)C%CD8qYAz3xj}Tz-qfCy8pF4h2s=e^i|uk!>gv(=@Ka7*_K?{%plr5)0fe~L z8Ld9;T~#h1wU0KeQf#-HXW(c4-3G3Uk789^ffh}YEMk36W_XStnp&V$uOFAVar7P5 z9iEc3H%^16NpVx=F7L6^evN%ceU2vU-Qq|D~%#MPcMxg&lhB^?ZfI`(K0Y#;H1V@*QlNA*hUS zXHGsJPjceq^NoWh%T}c)+V_*$H)-+UsooJBX_s;U*3u#g*@T_bG{R^qxSjCE4n6^* zj$u?z!!JOkP2QeO64U&1Uh*GhBHj>t<= z*$;V}SdLsrxyg7NV2vi=~hH)HboTe*262VJ&q(m3qm{A@hBeh5PuUr@!qm| z6;gF?;E~(V!;9C09gB3qT35PX*wU8n73q4ToJ^(V2}T7t_&Mwvev;qxf;F?8InOuo z=37_mjdS6?H}Y5foZsFo=U?er&fnkVH)&4iy%^%fCVp(@$KOBsc&xMNuwD4|v3|vN zspRKlk@)gZ3s>`@uweNhaYoz3)X>%FI};N_yYUH`eG#wFMv|CDH0Jv&_*bZuc}*z3 zQK>#dfg0hj0{ood$mQN{n9v1yg_`*hnEz6Y!;@KiPHD0+LG=mqm~CT5B}r2^^7yO!*Fs>GF62f8 z`{G|-(UQ!=ox|LABX!4=z3jQ{WvMSKQ zw@T>}_pbH*-PF!)bP5$M$`zw>L9Q6l36Y%kJ9*dLzZA=1lTd756-ky~N#5@5i7C*H zCLugwhosiwvUR-qd*=87*K(sZjzZpZ8_us@;IzLavYl)*#VKnKr`-;krGmi`C8#?GrY68acTR}#ZuNF+jCkHp3d(+jTmy_ zYF`X_lTMjNc0riiIeg}t4qpj%y$?-!I<3OTyzHealhq|)`HE4@>6`D*=5)mkv`7|@|ZuCCl;6;|{7^{(b z@Ur&`we?!zf5~y7aKmHHRTIQV5GsXLs6pu?c$S^yR~WsCf)||32kWjx-qN@>c{?*c z6^VYtWr`q9NvyuTQxdt`dRTlxsKla_y~!JCI8`+P?n5Q{ZT@(G;hL)MKvm4Z7E9)C zFCfC(i~cnwL(`5^?WD{m?`JfjA%yuG(AUNseck?kKjx{g+V8&kB)|WX;hl^5PvL%y zzqg>{d8hp|z-0F_aib;9<)=mC{TO&-xPw`sVY+*-xexpo5^#bD;d`d zqRH~zpUiJJ816vCEKPlC6Ka7qUe>7R8FlX~MyoNeFZSQu$c7q06VqtIMM6uI9h`oQ zR(*ZCs_O~8c1Mz+)#UlvY6p3qO`>16nNIo}gJd(!F|PtFj~b{X`aUg^yn;C$;(H-% zCrveRUV*OKNyLTNPI{i_+)i@6-PURGwi~DK@1$w|PTGgzdHbTzN&1n1*pe81a3ooF zu+B0xVjS9)0$h(f(wsjW*kA1}IUIJGXgavUP4-VN7}}IvpgrV0H7MhY+P zWey}{>Ow|b7;flYcuB>oSZg?O`N5p|xcuOqNoj%83-=;aYKGJCSFw~DZK*#TnaBBq zVI`53Wd}1T;6Xg4_pMRd$eYO=58+-=Bv5%5Sxx^Sz;3pK(%$>~Q zm`@^&l%RWIenE)>6QM6JG_vI7GVooueSE%P^;hAu>?eixE}o0+U*Tz%WNzo5^eai0 zEnblfPbHS-GO-811`O%g^vEjN) zeh_)Q;#&sG+P95;NacN7P`jXB@|86MerxTINFJy5w+@Q!9^X1Nwo81&m+`HGTl>?x zZ%^8}G;d#ugwiYb&GBo#7ugdT|8a%m=lj?4|F%m`Py@uu{NG+y zn7bZk?QEP>3-UC$8@!cAX{;-Iz2`Apc@-j9)svf2=Y&ahh)%{*o~6!L1d6 z=)R(NHPPtfZ{&1Ka_CZfi2NA-IdkaJsIKlvPOME-(B;Hh($e^UvBQ&TpOle_N~Nw! zxD_i%lQ*`O-0he#mrbl)TCsw}bYp8jwikpYn|U)>kMOkk`Y#!Q4^ZTt;JH;mXv{8X zPM(QhGHrOlr|a}wxW0M#5F`+;bnZKDGWKbMLpn54+m1y4N_W%cT_0xE?wdRrgCnAC zKes>E?P87fL6)b7xkl3KM-XnI{z;}DX-r>_QoaqovEC;Zu6JL2r~V+0MVM7`q**Dg ziQN41_Vy4(2e*FTWW7tE)myxKj?tzE=#xX!x7Vkin z<1TjY>|TrfowYwdV;iL|Ieyxs5JsX<2E`iVJwszh`KuW_6or<=Lh%LKDqU`B3|>II zMSJM=qm`<$U}*o?Fm8fbczlU2e(8FrKaItEhPQI^1l9A#ojwK*z=9t?Giq|Xg!vNrxregZ;7see%#na z_e`{6Ro>oi)7&|amHyH%Yec)3ff;<59?*guKKHJQ_f#?^y7?kNq0q3^pPmVgT@s%AWL$FFusxZ-v_x3hXUhkaOiGU>_;PoIc28 z^-p=E`ZY+NFvW+eSMfKTc%ja8(0X)tS=$T7?>65 z2|TMZ*Hq)~+1xycJfOejbqmGnBkZF*!CX%=gLsdwF$KN2=qG&4@I7;dChdpG1uMK>sd22_gmj2`_}h zFR@kA?ii%vkjq;_+ESamX8yKNJp@0!{#uwJ?~dc$Q+?p==HM;B{X6j9K)C{Vdpru> z52`xwzMsEgowt2c69?dr*Y##b=H*A?naS-wgX4n@Z^sr*Opg9%xV!lTdOp7x`1e?Q z0r2l66i&cz9T;xA;>40xj{5kSfjn=_vDjyu6X!(nkIpEGRfdzz+|PLN&6%BieM#RY z2QTB2;X7$qGQ0&{767=|XYK>|(YhRfM+N{MvzGwdEV%x60M{*h0@o~k4Sb8=Y`<6m zeizs;?%)woY6Q(Z#b%pJ;O4hb zG4dS$aFaVfGb=H1GOFb>6-}vd>8z&2SbM7EsbB7CBv1WwPa&Sla!;dpD$hOD@-!g# zRL|2u|A{D1w_#mtiVYPb6vL-~x&HAb^sZ{%__d~(YY&k~UucS{k=*=b5xv14gVDk4 zG48hZm^{CnW3Ies6-zQL1Z)C7-VCGQ-$_oG=KGq&sm6&@9TRY>?@AHLajIzQFrQQH zrPtv{a;(ZhOmACsJUNVS><)Lm-9LF21;npnXQ;``-4s@F@0K$yw(=OW4>VE0j!4?K zFm}Kd-a|hT!Rb;gGFOzcv7`sga1)sE<<_Wqf+Iv2l^>gv<;QMv3Iz2f@7w>B4!spC zuFn#qPV*)kz@XN44K6inmXZ{%Q8>46W`xg|pf-r}ibo^wm z#9}vA7-eueWD3MwJyj;>dPxG;vo_N7f5r!T&azD|-erj1I7|@;B$<#{IOZ5$%`uBX zjI4<~-2OVFcul$vY9Y~SXG<5GGSVADz2xNC^fb-RZ~_*%N;Z;!hzT4DU0(T>3mv z7)doZhLi5J)Nz~RTl>wO5#KUAb`kEo4zookPYH3oybLZ_3YzeSK)XY7!8g*s;vEkU zF)I)vzJ=7+chGoz3z^v0muvASG_IU5Z8-13o0}^dW0TWs`0W-n2?mFt0VUj4*XM0N z-WGOq%-(*3){@h)l+Ub;DP-}brjXUWFL7kBvt*Yt0cF@oUgwg5bDp`DDn!_&KgALg z3=QVNaHdqmFWIACD`~U3yp>0o3mCy{ipA~^^8V_-8OTg?F+!T zmgE&vTavBQs8i|9qRn_uf8Y5jto22H^L+MJHBRVHN_qX49eno^20wan{EI>JYw!Oh zLvwET=IzJv?_-^~QlST@%-*n2r;VPoy0m0$chg~w2paF`_I2j_ZA~au{`pm!@6fyK z-a#5DbJ__$!|TLJ@{W5cbN{UGoj)&pCsD>%}Njg__qKaCaoSoYA{=5>V`*?5F)@Dwe*6-uA`-286$(ibO zV3`I0k6SMeznS?)taaAkWH*vJd4zv?6A=!1hx3JeE^s)v^VpI&j7%PzW0eumydoIq zPw0CbfUhV?DKX%tf3|4yNe+o~UVO)W+Vb zU9&BHp$dp1{sced3C(hTZQA1Mveo7hr()GMGzD;h*cMcixeN{U|FHHZ@KIIw-+u-Y z7}lFWkZ3`IMkR`rSQjEL8JvL`oFKF=*iuWSrLm=SCd6DC1!$3eQ-_Sen2w6)d# ze%M-2R7`>pz=f?UO4UeR?l@4u1p+Afzdz^RnM|TS&;NP;e_ooo_uR9e@A;nZekgVX zz{|EKMRb}5A$&WAJeVzcXMV|s4dgeS)>Os^8O;Oq+f#m}->b@in9rHmN@~iRScNo+ zfIyf}bJ6XgCEu*|9XFI9&VZQ{xbNCp-FtZm)x2>H99vs`c)5M{+pIqw0tkH>_+bz^UW=G&RBnjaqbrEcHx?V@n&oq+ z*4>WS;c{)?9#%sOMUW_mJg;GJP!=QQ@cRx9U!%wvMdMP3+oTa>Hb%l2!n$46rbMum3)k9^sK{vTtDR-P#Wlui zb5dv0QZMOTlBoR;?yJ}Ah|YXIFJJ%8q+feUM+Sf1d6d{Y2Q8sYbTJmht@Y80T})*( z`EZ3+kqugdqi%6+^5*hL@>X+7a%L)`5jH`P3_qr5prfMQ<#1D?EHaqO3>(Va#an5;%Va~2j^m*5 zKi6q(0WMugIYlPbXsDO1awWWfGBsQxf?^ySuh=mBL?OF(vQMJi4FqaP$n@%}@Yyl<{Zyk>f39tnU`%^5CEUXX@ z>aVr&TpJj%_lA?9Q3NSL3v;N+A3H1Y!(xt2+4OVX-A3=Y56stE)1N2BGP%tEHy;^` z<9#zDt9Ixqc4Fd(rG4Xr$yeN3GYrI7aEL1}V`DPI^cz2+VMqKF#Pr&}>VEvx^h)wn z?Wnu8*q7Mhqgpuo`w!qZwyV*RT`n%7Z6sx$ru3>Rf$~1Fa!E?HToDeyAl~9?vxOspw%h zZ%Z$qG7aOiMG;^U9CI`;HmQ4Fxn2z7@H$O%;RIN17ap+yK@@gH)jn>h#S&^z0AwoL zw+_Mp6Lfcf?A!p+EXE|-zX4(YOzho5&A!-fySZb?Lzng}$ZW@35z_Q4^EA0(=L!bK zoMbF`aE%&}Gk_)AU!&*{KDSnL`+9S6d{8(waeC{-=^FT<=JMFQ%$#8I^3tF^WjdE# z3|v_GSV2?}asQ?TC-Xgi3W6;mtY6$NKz}o2ZxZ4A95gv!t;UJeqZ%pOFLrVWp=&Q5 z2hTqdU7U(N=@xT-O#zn@2_K`AR{2ShB!lj0V97j4OykzE6}$t%r4Y^YSTQhTQIYp`EjNq!4$jCZKUCSURn6 zHjKbomG@yNNIu-!i*`U6m<~Co(obdjf_~j0e1C}=9B0t)cV2_WWlKcbC!yJEUcIE1afj! zT@Q?LyYi>q-n;8dWRE;>6}5bxJ#sgFKtv=qP1VvAa!+iv^V@UPFZuj_SNnlvy>LUP z{4yC>+@*iXz`Snnv2O2+y1cW?#*&aHUqCaF_wKoy4f4^UDw$#)}Zs3n%uZub^hN50*3#OfHBidg1xeB<^0x zuZ@Km%#C;Qtit=TAwxQU)L8{v1Trf&F$&&^zg1)XVk6?pLq_?R7y2oG{H}aVmOWzB z`#90{9UaN({i}~zcm0*&C8rnjc&DVcfY}%S3do?@6sLSEDq38^Hgi2$ve+f@`v$6S z?Y~5~&z>9*`O6%z1vg<_9UCOSYwT)Fj*QAzQ{VoFRo~Pyw56~*+oFA%VyDOzjc`5( z1CJ2@#e@h;hs(5;vB@#7>!G1mYqzI{oX8dw<)P{W zR^w51E?HX~O~#pTEcvi{eq$(UDzQW#&5eD{&Ys7il2qaW63NZUgFV-H)-#&Ct$dZQ zYV+TGo%@xmi3%-Ukt8KhUGqKMICN6L`U&sm#A^xpw}evRZ6x2n)j^Q|L z3YND7{M$qR?ZNU*7zanHUx@z?08FqtnOq{I35##45j3pwIaLs!ZqMZc;+*1jzVSYW zn|`vl%oOP8-JAiDSubIf+0)~!^RJ#-NVdGIr0O=RP9KATR%;Pj|ug+CzZnl6~~9WF(E{j ztbGU4&AvwIh4H!RYt2l@7e$j#)$x_f&iqz`EM0i&MUXWbeN1PXqcNtgB6`|5xN6uFet_jyXMmM|Jm6B}i%j7&U>P$35Ww$#U^0nbUqEHz_C6tp zJK$LiFL_meZ)UB=63`?2Y!4M1#-z7cuaCI_z&J|{xn2z>>mQ>OAF$+;<;L@d;hE%T zV;ZC4E5r1699CfA!g^MK32c!clcA)lvhV=Vg$=3o|PiusDi`j**z}SuoCob9r)&5iUtYf_{_6=9R7H>87#SBx;#_VVk>+VJV zpnZF6a;g-r%pD>ak0B;nKI>LDUEG&9)U#AS;upxa_<+ngW&`LYc19%ePJ0!$mUXH% zlq_5k8edpprG`=dUmwzAVb`%jEw>Ux?V1-l6}*{y#?hyP$ub`4Tz^|XJU#d(o2G`D|I zM?+DBol+Z=^DNkM&Uk?(u_uLr#t+>p%yBRv$Z?Q0S;s4+3B=xzEuWlJW_F|TW%VkO z=ZYJzc+ynrn(o#$?(@5I&Eik><*ds4531#=%S_4X$w`YF zo0gm=@T&ptuBgFk@7u%8NM#S(_Z0lG*ORGw{o*&1cWFS4o0p7L_8^&(S4<`UKXwa9 zuVIMhG+*toSJ%6ltDjx`s@ue8La@xAE} zxx#PlFX@Z({ZeVjT!Z~9b+O+?+%si) ze~B|P`(6Z5l^NrdWZ&!cezN1szMH!N2Ra7_d*vUa%i0$6G;OINPK;e8Q5){v2OY7z zB=(A%L}!@$I>dV&;J(gwi#W&CztoVGU1~_XiG#9<2TgoJ@BZ?v_bCXyXwH4w&IrMP z{~}Rl(9R_L+++}Tlgv&Q`Ni>{8BQ|!|AsI-)Mfo9C;NZk{0RsXd4{e3;rPBz^832= zu6>or=5okLH>k(8tF#8FGn>Si<*ceeN)WszT1p;2x{#5$B^5;Xu{)m;w#xF zjiqV{WH8nx47YLV&?`fXOn07zl+a}VojxjFSEs%AbY||i3o&jS*4WfT&3>yf!qI@xx)3AhmO$MWSjZMw$fIH*c{eQN`jCHTpsooP zvRy1BNOA|kvs*&t@RqNJ$_ba+LVfYaLj*ZH$t97D;s(wU9IL>yj;^f6$rHrAJ2qF^ znd5&kB1MP^6ltZsI7Nxdwx_+DB|N^na4x!E#IQW#3}hYwx$*+#@pQc8vWw1 z(*l(b;Vxn8Oc2rJ(7Fr9#6{#Vw~-FwjzlZUWi9u{BgR6b@mZQm_Xh1^pjInlQFHp2 zKdZ@SB+hsXhpN-Li8z`(@6KNv4$V-*fsPZ9fjT7{i!C)HAmV40I1w zF|}tfwWH6FhfZ=RbLdyZl?FbAd(QQ1S}Q+6O^jkkp;>~aYw^=m(>Eg>&*4P~lS#aZ zMA|q1SAn{VdXJ$g>~G`yGAmrZ63BqXqf=6ZNvbKqak=B)=aY!0ONLl|mPGX{3C}tUYPhZZi<06;8mR*N4 zOJWDjWzzMqtd3S(gw=Gy+!eGQ$v#8wnXi!?Zkpn%5#nvDHP^n*ljqeYxeQ^8)c|P$ z3SQTvHuY6stzDLy_j=;^)z%%WNhUD)?cb-jv(8-;_8sqdr`A@HSUDPDE*&Vdo9o_e zuRAg}enR24T9&1HOZ+4wo4^!~@KXh3uWB-F;NVFcs|Q6=leuiiAF$c3|85V|9UE&k z%EzLvWm{8QPye=vy+!#OHwtQ0Dna9~4`F-a zPSq6Z?HfsbnNb(pTk7_-*Bu=jKfkWo40luJi>vx&&RW$cbH=JmGpBO#_=r_~GhbNM zJ2P}u|IFZ3{*1-VDQ+?lrKZbinv|cCf)Axr zVtNA0WO};Z&3-ec6#$^JAH>u1IYp-{586%9WM5R3Y;xF>fs7EN*ISY0?Z{MgoxcZt ztI*eM(r#eyqf#}FSI|_YCE(>Tu{T0m-e*D7>p|4VPO^Too^&a<)(8B%AN0jf0EL6A zj|x`{L&w*omr+}&0Uv0a2c*M)Fb$t#_`lBFKLz1`;0rap8o$v%R1+;jSfEWOJt zx*Ir>Br>OQ#QEyD1?NibU8Bj8?_a(V&!xB2685)720ZpeiH>wv!9gdb#uUaHH`(Nr zvACHMwX>uaIkNK?OiuMFOxRlc8z4KGoeLlg##yUYY8Ae<)p@L!x%~_7C|mcc%zYmJ zn$;(mc&{|`thuoHg$Vc{S%VQD+)MSX;})FPt>e0DH&WRgNgTP`NN~P6k$JOw3h7-dLW6 z(HM{KLaT2z{+aJtxhRXNPGScWcFBz7kTGT`ieTuh|Bavk4^t5t+~8uQr+TH3v2nzA z-du{rq8)Xv61K-4U^;U|Oh^g2H96${OkwE8pK4bVysq7O=q^b@(V80gnCT*ngU-1) zCj#9QZ!p{6`RJe-vd$luV?5fSn2s-r%7NMe=#Ui3c^jeo_W5Tbw*!Z1CC-tjPpOD? zyP2Z}*??05gGFl_3&$2<u3?2DahdUQ#)N9d>A9`(-l zs5vtcH{xF5^GwsFy^-vmN>y~o&;aQlnc5*$TAUHt?lxxzf!9vRcGpsOO(0Data6ev zC5=APJ)eQIY*-+Gf<4vZtl#1S>#v_hmq=`NV;og(NH4YSMiE7o%*b|8V~rNx_{#{x zgEU^?FskYIpg(>w8US~;Z_HlN(CiRMe#o2O#m9Hnu%)%Woq>*j2kNQ|tj1TUko+}; zKtP(QE->`qb~>b;aOrNHwwL!4V4#?9^1JuUETSTmsqQ^9*6IRt3}?sQx5?pBg{A;g z(C{-VL~oZGaEmEnwA>wSbkt`q5NS%26W^Ty7vz7&AT9I5Na9w1LHv?z*D^QB9JZua zS~|(vWJz>9#C?23?(;RCrO^sLhms{heU2>(*job4@AaI>;WdcW4OsVYu@X0e6f{GO zc#G-Vdvi1zuW!&k%X?)eTLgG2>6IboEum<7WiCt>WX`pUdn;{BSaHjHWlm4_&Oj?c z&5?Lw1l&(zNg(OVaPqkmn(P4`DU6jD@6P0`Y$$n8)sN{ zDNoCSX-^kS=a0;M(||>b^DEX+`_Rf zFzQ&z#}GNc0Ow(lq>dGUUL%yXhn_}B(8Yk=y#hMf=-?Yd_5-Ye>#n0S!=R5&dNC*e z<81W|{8@|>Ow%|QnjKYbt+`z2Yst6mO?7Yf{+n;d9&m=gv^Qo%{rCnbZFQj@Sbk!5 z9yl>+hNU^+#CDlgih&=S{Mu9QR=UmP&TXZE%l(<_Y3bH}$-(Yo+NDT&YVpUJ1%p^uW2n5 z_EU%l)6#q34nma-_*#BT8+*ZV8^?@Z8Ot*V%JlNgf;dsM6T6=u=6rN%=r^R$rGerw zJvPy+i+;^Hr@mXQlZ<&@vbQZplmQu+z?FvHGWYkIJ-x`PirL4HxlTn_TF(4@6VM14@nlqq>5frJ=vr;f76qp2$9zS*wG8 z)JZY;GHXrrkAm#@31atpW~x@2-?}3`;-_0{YR#FQqCxkF^l;CDJJY{rEH1xE)>s5A zt}x-J3vtwGn1<+6FtY2ww$7rbNfP5RmAB0GLNXGjTMgzyio_y6L*caT$V}p(Vo85F zD-U?;Fq-815Pd&Gp^V4!)?05U>P_E{Kul%&c`ti;5tf6RY%p^UP$jQ2T?#w@k?Y#S}WZo6UZwc6xuATh}h@TS`k0UFA)IE1dzJ=<#&b8F7Q>q zcR8~gW+szOIxr?suEYG@~ZIYVJI%I+S?)L#irRGSR?B#xneN z$Hwu0SMqJpF-b`@IaTL8kv-C#-||@9emjv;4?6dn=Oxc$hSt@JEI)W!a;EPc((>P#K|0(o;= z0I}+bj|HTbJ9oa9qET;VayRdmD_M zISa9e+oLRzb-+2>&4G)a+pB%3KJ!~!nXDJI<=KnYw|9I0xZAtV%l!NYy1no1_AYr{ zettO9F7FCC)%hKG>ShmXZ==HWqeHX=H6YSW;pC5+Nc!w}xxo8_%3qj+cU!8?bRkZF zrhMmq>{-8wFWu-3%0mefPxg=5{bIN2{ZXt5R6bdc@-?r&*6Mo6JYn@@uORt_ORwba zzxas=lvWr147sU`Gn~6$GazHuMSy!1&3Wr0PCbA9yVm#Ck3X}%kXv6#9$@$AT4i?s zBz<*@`YWUjT@DHZ@@_)hxbHdqLYqi`3OTGve_42RK{GwyI?{Q(>t2uFzaW^^l z!yaIU@jK;T{L027J^V%%rQP<;aB@W(->7LiHR*Whtn6wk6N>w9 zz7R$s&NX!ho$cnu7k^SO|73l`)d%ALqn9W;Np)6}e$B2b||k&V*Op39!h*C@#3x8%3KO!Wv&Ek?#Igzo{YbOgA5Oy}}J{ z%75GxX}7L*Qzp9=D9}YQlETGhsXDNz{RLJN9F+DR*hJB!8hz zfpm4MGvH|e`e_4~w|_q^v*a!=)|Ws>X%V$rFoe#SpR3#J_4p+{g2i!iLK+!NPMqV; z=+%fRxVph5C?O2Xo$6`|)2Auwg4dWfuuNfAhLgY8q{e zb;m*Hme<_rJDJ~4%ijZrzcQK(cUBT>-EEJ}8B@?kd+hT0|1fn(F1N6mb}{i%uEnoq zyLge?#ct9!ZW#i3`r9?j8L zx2@45D$j$?Pt2p)u@^k1xxbmrbVsZ~Ec2<5xtH=Ea z(>n2Y#QrA{-Be!-^=WN?z!(I=Kl#0Wvs?XVrYu`sUu6ZF8d7$R0a9o4?p)HotKFp4 zok>r7N%xb4y-*kY-*s#1on+ z{MJ+Ei@DRqI57VS<0ONyO_EDT{ggDLqP||4fmv)?9-LE(=^Ar#( zeb9N>%reByE6%+<8ZgeqOsGMogjc4*ngy>x<}^e{RqP7wfJJWKe@n8;xUZ6?eZd>e zD`H7lmPM#D^*c}8oi@-SLVHI*pMH3%^gqZ|_k^s}3SxbrG^uJ_=5$E!2T4i(RO6RW z|7x8!5^?d_4D5%L(+xv)WRRKlqA(~5E>7`|c!%Xfx367diBOgpJ!?zl?xM3 z81|vo3O-}z0yOCS_toBXc#T^tw8g}S;|ktz8}-l$F_JY|dPP$+ZgTS618VzH+SUr8 zALmIiH+k&4T8qsYg{bVP^W+y?VEKVLW>^QwL(2JR*6B^>W8l~#G? z`e+VAz#scXZZTVxFiR2X4MBt%j_z4E-ZTeHtj68SU`%gJG~w5HRgjwhG8GlQK{x{= zrXz~ECMFwxvcZHqLNP{q6X}FHn$nHmF@`7;?4O;l11X9JqeN|jFXt4-J=tzJUqd1C zQ+WK7rjG1DtcGExad(X2WMO;syNA{LDXG!t6VkGW0ClQbeoz(Q!4j6sWzhoq%8?zh zLj~!V`O>XF=tE0Pjxf<*uRvVq3avC#Mt(C>PsneYoa^hT7E}N|zzja?SNC11Vr}v} z#Fx&yw=?-OGZAJcLr5BtN)0yXNuknjq$KE20c73TbIOqbX&OGQdNcwN0@?2(g6#KX z8hZ8u0iD%&hH0JwN9?c5+k>7B7)b_sa%m^igG~%pE)+l7qj?RUkIr#YjULJ-+c%zH zK4D|S`NE5c2Oc(4MnC`)Vs@q}uML;_mPDy-&hi(vb6Zsw4RhK(4;K8F5}_WBIAa^J zJW5*3AL1%a5L1SLN3mU;-`we*iVtZT?DtuawYO+NLbABWpeS~-40%zFtI%{=^k#%LRuAF@*>*rJNy%f+)= za$^K%i~dqYzu@r?Zt0aIxlj5?J#n|5>8j_Vyn5>RoULcM$r=DY&?yJ;Pl+bWaV~Gq zjLDN9xwWd8`;=EG{w#QeGX@v8$*GIZ(XB5L6M5l?bM-%6^mJ7(noIQ`BiV#7J0`=W zy|{Wb>;$*CIle>=Edl{<$mR+YltJ2?a+4=)ACB6`kpikNdw(QVNOevA$*DWfGuGT- z6LH8wQq$R}=N;fBn)I8S8svRb4%%jAS$pR$Gy<2~4HpOp5Ssr2$7IE!__FeF(yNA( z7~=It@dc9jpoBUq!2dm2o!dEuRQ^F;00}o3Yvb#NsQ8&N3FDH03v>)dlPKKXwpCiI z;`|tSi%LIcO1nmT%HOVc0-}*mv#V%z-hBlZY%`yBMeSoz`=d$r!xu>SfpFOfFF7dP z%cCRtcM9Ng<2o5uV?cG-S~^3$(}j8^Vf%H13YxHP3^nds5{>9uf!z`NKY8noZ|E@Y z7Z~O@tMs2Yv}p=QM3TW_g7^_KWhs^*^5qQIqrk6MaReTwW@?$78g@P`tLA^Q{p9&g z{IWGA9G|M29cm;9P?Pxq1&x#Tt_2fXCla>;Ki`Ajc)VJ-oBfClL|5OHM4C_ zL?w~_OIrJUoj#Z?APd;K#GwRE8wg%_rJ!K>8VkDf;*_z`kr5#!h#H=e3C_;52H zM3R4(U%i*;SExKSWLcPFlusvwQzA7^gMZ~N3;9XqoU*Q}reAzqieI`$*??{-(mkDc#fs3g@fcXjN4$DL$N z!G#e`LH4eWA!IW4#Tx$&P2;5e@#Lr7<=da7k9qz3RQ7rCBD(8iy6IoIKjH$}D2=FN zrHQAk@C}{t#%WdFO<&VRpF_OdbMwFReqR22H~E4N5jkal$MC~kg$bvo0JPB?HX*2z z6Mpu#2oro3Sw(&@RQa7K80uO4hLca4`vM?TSKTP~AyOUA^m@i;@Fn14u^6h;4a)!8_c#Mr z&ep+4zyekV3JXGIPIlGP(~fH#uQ-blM#JRORQ&Epr$ggMoA^vuXPPZr|BT?S3l?(& z&|X4mG|b|F9)NilN|HTP9!k=Fw7FhkPj8s67Ne8xf{y{%Zu>?0(J6HQ|HFR#lgxD7 z{mB07qTh12W0(EeB|b{`?>YO;q`CiPIJU64`(F+oIB-A$(0u(7`?n&0|7P{AuKsl3 zdT|A^0v7F^=+w5dnHrelPwTV31(_z!!<1*!z&A+vzM;ibWHgcGS+t5GE31E?T{9^86#-0^JV)SV*bWGr6Y`Si4#V>TTQ*1gN|ArBy%Q9M=wDW4K=^@C&HTb1X zuM9UfIm4RF*Ah)u7XTEjU4hz)qu?9dRmLk4F=v3A5_3}!O)0`$`v!A3)X}E`>D!ED zQn^vM;f1o@c@U1gsskW4sy2)dPDQ@p%}>;>8P!@-uA=ze(B==xT)p8og?L7;G=M0v zb&DzrVngv&FApS+qcho{yseK5EoDlOO*AUrXfj+*6Psgy2+!K?#^Sh~tq-z}_-kFG z;{j0<7XdTu_>VH&vA5A_Lq5V{;~FK~?8ci7>UqVvmf?hFna%e4n;rCfNf>E+sf&+0 zjQ(IF>DB9RgV8%EeIH#m996S3oTU?mw2Npp!2MJL5l`?1?HVTi-0c~*D%Q|Q^yS+l zO+>TvFytOnJb8jSZHc=l-PfP6Nzuo<+>h6}9|e~wzDQw_qqn-imn$FF`L&W0$b{a5 zuGINOZQ>YQ{p<099DPxZ$FEwb$A)1|N zQ5T;Jwo`?=4+bmE&%F=kx>^69&bu`jWaa43(cR9|?&qJ#&(8hXxMR`4>S?2v=$?i0 zwETU#-H(yOml#mpI;vpFrLJjR)xIqKcX>H@u#tiuig}Mmb5ON7PtTL^Al3&_{|%!S z|1;AwY8$So6UB7bpZ${Qm-tZUhwua46*;4 zofzWt3EVjh0Eu5FoIgLEAxr}H)kLeD;&-)WfX+9~m?xHp?3+dt;?Nv-IkJ)HJ7)81 zAd{1$9YuO2L?QBT`eIPb>FE|TSio<{6cPzJG%8C=8Va%-a+&{KAr~Zx#ARV4nEHX+ zuC!!6a#>`MOTTW&#p0baJ4;iZJNNUEixFGb(McD-{COt$<)Rrbe%WM_PmkDizvu$K zWHAeBF>U$>V2L8cq-2lRMC>V;GrQ94sm|I}0PCly{%?uuZ*%^-PQcSj$uh_QcZdJi zQl%Nm_SHAhTR9Nx=2oUcXf^Cfwp-$cO!*=GdHEZfPA)+ZCcKaxZ@B)no`esUZ|lSd z2Ms=uAjY7BPo5$R=wObA4g`-~(1D8!CQ^e(_ulOxg7qp1RNTOC9{p?1KQI0}B8Hcv z$(u)olh=+lmk8Of>LRMf-SLYfsfol8YHRmAdn1+GxQNkOD#{`3+h$zgrXeU{M`-=R z_B6P?046Mjs9AjB%GaZ_j^mJATiK3rVkFUSS$Cu<%6HZ}FbdG@tw27!OZ{Oa+JtYL5eRSDg266hz6+pKgxD4=Lh%BWm9|F5L54Cg8-(SELQo z_ZFw)1;L^oO;(22I1(ZUpAxwTlm0S}H}JU5OJoE*ASG!5SfFj9@Y_rylXuT&MD+V? z`h)x5j6aXDLvPdETI))p*1CWXU~_K%F$q9SgF?b0j0rqRUx@O899j=j<6HZ3BmS3j zPV@u-U85%^&iK`Fw*Yp-=FC;i&(p_5J29gd88E=I2jbchb1=>+`KfzG8sTg58oVkd z;EOPMsDh)GO-vP{{AfB1aP*iz3M@C9%n4%<%ZL-~L*Uf_M+Y`ch|MhA6pVl|O@`@ga}-sYJ?^eEb>owPn8GW{bb_m}HY( zzhmD1$~Y4_|M7K5P_6s9I@MuMK3;&JlD7rS1~%oM=CdS)9U;h z&Q)_G_2$@Y5qzT*+hweC!}qv}CQ*+6~TZSQ+LuVk7Thg1zMvk&17?uUyeyqPv~CkvDarcZrY44TBtB(d2ji zq0~Ys>7p+&+FEN}MK8cbA#r!^kuQ9rWrSQ2BgyJWPQ76*eOHSt-3B+~g7e?kYYLGF zY(^yU&kigTqV^e4doHw^XMnw(EP+HvKkE)|mMnNoQ%c0!_63($?UpG37z3=CzdnZ9 zf~DN$%wNWY%Td6S#<2YeKG5#GO1c80p%mGXmUiGVEsbim5)ZPTo`nNdgTq&v?F{92 zz&S`P_J!LBor;pR2+4JpZ} zp#8SU_;HE1eX-sIZP-5@@}IEOX0qU?5VxECzK3y&Nxehe=mUEQn6ck+jrh#H43TTX z#@9H@XerXc9YfrtB>N=p>5`RRtFv#jdfzU2yEw;zfTym85?9vshNW!3r3rrwQWJu+ zj$RaWhd+fp8f%Ou%}tlOLnhJUCqQ9MG3cP(34X^%jGe@iLClJJuT#}(c(E6nuYJG_ zwEwuwX?gS_*ES9iIN;Mak$}Y;`g4npmG}esBLozIIvayG&6s{B>SOF2a|_3x>6W!R zI;QV~#mLV9pu~|PtKktqlgk7N#L4HiLLKSD%D5&trZAlB-&--EegWyH1XSgmRfR1^ z?djpha%bdG_ObBwfIcc09V7P~Yefka6MX>x##O$+jy9aKLjK?o1c$4y!7VE~rm#t_ zQkcIN6`aem&MI9Af?46zGGrvhlch^h z)*c26_OKG$Oa^Psm1AJ2dI@Ppad~WsjxYLe1hH{Nu)`B7{Xb;O$$Q-Dw$Pg$U(y|b zr7Pjc4-qf3$AXy;7RQDV(y1tB>DI-*Zr1I@e0q>bF^^D-=7vEx-CA;Zo3*AXS=c*( z5WDf~K#e<(Ddy1!@HF{Fa*DSM801%y?y2cN%7z$A0t-W@sc8o_?XcGDNR|!_j4!bo z2b-F%98(CJJXA=MO<*;A0?89ip8d*IbofxKFa9MuT51;cI~;rg_b{QycKvZ7lvnX3F|#20U2?9PXX8s zdAc`GYmIX83f2Y-O(GRRe{!Ui(b9xuVO^HKSWwPvT8$r2Kv6@R*Z_b13LIF&F;db; z_`|H)E$RD#F0W6%&+XH%^ZOK9zL=ieb`01^G!=U=-8h>5q~|Cx>9d>b-z=bO2&2Ml zSwTH_L`H7Q4Cwqum#o#>`fQ2zfw(RET~v32vJaw?<#BTvIG87A*D$kycjQWu*$E$2=6kha4BSe zM_aeL&7}L9!2rg;M8}CpMdys)vU{{ydTRf1v5x0Wd#S0*^QH|hmjw(sK7BE8ta%?4 zNDg)9-R+QF>UTjX+ZU^|FD6GvTWI-cKLk?x=n*ZVp1Fqp6 zZCbWxvR-Qa>1>L5dxW>3zMHrEc?)x~30M3MAf`)jKw)|%NnB^hvM=Mwd`K_W6S}DJ zXJ0i8Z!<+&WVuf7C@c6i)g_ycuep8EUo?O}t`Y z!+jl)>|9>tlI#dKAgyXWy3bnr0l5tA7hX1)W%D1oeDH59q#_|rNCAorm0-!M59zfGqz%sf|DT5MfaI@M(`1Xc!lZA^YYKy<{SRR^JmWwwV-GljY)4TI7TxN z?z}U0{pr7c)D1pFU*_uI2uFUuGeW=^5tPwnH7+xI5ML9b{djCp!1ECgBzp%?0N2`= zxCFG@gfor0HTiCE6Jrzb>39UD;`HyR)8$vY`FpAFn}I;Q)F&33#o)>kd7`Ippa}L5 zZg1=NO2%$z4&+Gawzi6X9vgT}%47OGhRld*FA&pRE}|Dg_%{_}`G|o&car$AVTTg4 zZW+hvOgk9AHB^k_b8ACIm>>S5d=#CYFu(!lblz8D{GnD|V+V5wlf)za*h8779R1gg zULS|@&433%=58)_)**8?bJpVYql>T>y$LtA87wcsOG(gL*BerCq}AA=B#d;E%gSid zfbA>%`~6ZEB{$)fLH4vop3%AntMgf4ummPo!t zMznWkE(&r5yHTzcVPQ|`e{mh9I`Ws4lw403@T*5 z7DYp9Zwg{a4+$IFlw2WD=xDahZ{i1q1@Yk_T4+ue1?oTXfyk|;;!uOto2`Uos=?%n z3jK^ zPBI}E`=5#OwYIuBJ|e=7t$YuWEc3fNTKR0WdgtQ7wZ3i0RWo14f2(@`Etg06T3d+- z4$5NB&{TCfvEFC#+KHI zlmHKO@Nqr9Dp5C5&A+63bbfj%|C76lMy{QHok{3&e%CDDnrOY(K1R5}5!M|z3$mq) z&cIxZsE3QL3t8)GE)7<;+Q&McwVv9Y_@FJZek4b0qN9iXM!<@)V!MO(Cwc1?viA}{ z*lfnr+PG4X8Y=pSDxYC%?0k#e6GAxFXKQWs>#`wwdZVh=Q-DC*)ZvKeSz+XF$(-vvxrF1{sY7iDrVAvsF z^1htrzV3$wSH=_E*H-UU+bS3T(e>x$s8Z}_@H>Lmh+onL^eaVf2}%B(39Feac!8

?;%>BSy-_ZQ`zhr#5JU5xN!1EyTsyDjM3<^pQa3N;1o zdVPo{Z6ShivR>N_s5JP1pepTCQiU$q%7#95E@IcJNcExk>4LS&W3>W8`;FSl!;$JY z7M~RMVUt{yxyq|2Gd)t>e#<0fid243Ta5|F3--?WGqHi~6(MdN!ukc#>ei?=ffHNw zf;0Ilc{yM@zFPeVCC%=JZUD~{n$L8Ob0l_o$XE!}yL*4TedTf_NUqbL!UtiN$B|&- zv}|;~xJFde0c7VG@&IeduPk54{nY>Gh)A9Yrn?L8a<-i7L?e)qCjTuuC@2q+Iumq zudPm74d+u|t$nN(4@7ItP48p+R+{*vN4%86;1SS9(EcdnTSxS36Z z3wWd39J04&F6@GD=}%>?#`mH-zUMW*TKg4+i0vGo;~M_gN||u5>-Z=vadzJLzN_(l zw{v`5a@@7CW@y3e)|z5&y-ogntbjtR^F9JtK*8V_;>Q7tfyWqWffJp^X_Q>%W`xn% zOh#+Pdj3X}KUa3aQ*EmM(!{!Q-bnqO7M>nlhP1Y?2*lLz=Ma@eQ|Fz|-mThPYrmYg zzJcU5h1TlPCru!z+&KaJMZ}OC$hAHPAkiIFF!Qki_7)x^hd<&@tIPmS6ymQEGwbk2 z_BKqwDw}lGm9Hs$vFK`4F(G<{2d6g1K5E%R5Tb>So`=D=D5 za!8VPGT(<hrs&!aIj%{)^|&v-CNtQp4?;Yf zcpn4TTL`u5&lx8hzvn{YB7T}6Lq3sB?pqRu}j88J^V!+D58q5H2n*>;jLD%hE&X$ z`_mJ}+j|sCBJ`wgc!x+|gut;8+@V+$o5$b&@xg0BOTcgwcA43b?Fh^hwR>o`Q)c_?_9rtqVLYe-ki4V4W!Y z%nYH+PWcRR$eZ^O)NHCRY`f?S`~%+zD2=Y4-5RWCgV{IM7xLuik#+ITNK|?qO_*kb z2R2CO)bI&XOfZ{SH9&V9S4h4J78;FZgo_80e-ze>j{l>M&iJxg-&>Ky$9=F=cxQ5| z@DJ1tYAdaAPKkAA<@1|3rU^uWH>v z{F?tI`h(5R&Pk>O{sb0_O$3u2t=_!go7!FR4BJrCVy*E9V7}LcdmP@*Qr66#U`Lns z0?P%L76KOS9Wlzb{Hx3QAa7~vl6S_^!jR2%28m-G@jaQ9-i$+96|#tJfL-Qf%1rHX zMQYgB1pB`%6#f8T^NFD33%8^(*Qx{S}CNwmS26=I3-qhgC9MjM-=Xo9#@XK#*i}vVA7qsEc6_ zyZNF@cN^~##gG~@zF1XFyZh}{uiQtX7g9rBa8qYxOY~KVSNN8*U+hA^V!z9D6N@V+_sde`?9z69 z;2bw0qO2O-8Eg>BX$a>*_6J4x;KxDCgC#3IK&h8K)#8IByr!5_+o?Q z&>{1)FxGQn`|2_{0|+JHR-ul)TNhd~ds)R74WJ%z$~h%Xw3s}6`x)y85#kyI$jXYY zYT@$24J6t}+_E5?nplpMLu})%*+pe-50F)M9=Wx}j?g)X>t)xq#q7ygNy;rn^CXF~ zW6W-trb^c@?o&&=ww%E_dmq$@

documentation:
+//   summary: >
+//     The Google Calendar API gives access
+//     to most calendar features.
+//   pages:
+//   - name: Overview
+//     content: (== include google/foo/overview.md ==)
+//   - name: Tutorial
+//     content: (== include google/foo/tutorial.md ==)
+//     subpages:
+//     - name: Java
+//       content: (== include google/foo/tutorial_java.md ==)
+//   rules:
+//   - selector: google.calendar.Calendar.Get
+//     description: >
+//       ...
+//   - selector: google.calendar.Calendar.Put
+//     description: >
+//       ...
+// 
+// Documentation is provided in markdown syntax. In addition to +// standard markdown features, definition lists, tables and fenced +// code blocks are supported. Section headers can be provided and are +// interpreted relative to the section nesting of the context where +// a documentation fragment is embedded. +// +// Documentation from the IDL is merged with documentation defined +// via the config at normalization time, where documentation provided +// by config rules overrides IDL provided. +// +// A number of constructs specific to the API platform are supported +// in documentation text. +// +// In order to reference a proto element, the following +// notation can be used: +//
[fully.qualified.proto.name][]
+// To override the display text used for the link, this can be used: +//
[display text][fully.qualified.proto.name]
+// Text can be excluded from doc using the following notation: +//
(-- internal comment --)
+// +// A few directives are available in documentation. Note that +// directives must appear on a single line to be properly +// identified. The `include` directive includes a markdown file from +// an external source: +//
(== include path/to/file ==)
+// The `resource_for` directive marks a message to be the resource of +// a collection in REST view. If it is not specified, tools attempt +// to infer the resource from the operations in a collection: +//
(== resource_for v1.shelves.books ==)
+// The directive `suppress_warning` does not directly affect documentation +// and is documented together with service config validation. +message Documentation { + // A short description of what the service does. The summary must be plain + // text. It becomes the overview of the service displayed in Google Cloud + // Console. + // NOTE: This field is equivalent to the standard field `description`. + string summary = 1; + + // The top level pages for the documentation set. + repeated Page pages = 5; + + // A list of documentation rules that apply to individual API elements. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated DocumentationRule rules = 3; + + // The URL to the root of documentation. + string documentation_root_url = 4; + + // Specifies the service root url if the default one (the service name + // from the yaml file) is not suitable. This can be seen in any fully + // specified service urls as well as sections that show a base that other + // urls are relative to. + string service_root_url = 6; + + // Declares a single overview page. For example: + //
documentation:
+  //   summary: ...
+  //   overview: (== include overview.md ==)
+  // 
+ // This is a shortcut for the following declaration (using pages style): + //
documentation:
+  //   summary: ...
+  //   pages:
+  //   - name: Overview
+  //     content: (== include overview.md ==)
+  // 
+ // Note: you cannot specify both `overview` field and `pages` field. + string overview = 2; +} + +// A documentation rule provides information about individual API elements. +message DocumentationRule { + // The selector is a comma-separated list of patterns for any element such as + // a method, a field, an enum value. Each pattern is a qualified name of the + // element which may end in "*", indicating a wildcard. Wildcards are only + // allowed at the end and for a whole component of the qualified name, + // i.e. "foo.*" is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match + // one or more components. To specify a default for all applicable elements, + // the whole pattern "*" is used. + string selector = 1; + + // Description of the selected proto element (e.g. a message, a method, a + // 'service' definition, or a field). Defaults to leading & trailing comments + // taken from the proto source definition of the proto element. + string description = 2; + + // Deprecation description of the selected element(s). It can be provided if + // an element is marked as `deprecated`. + string deprecation_description = 3; +} + +// Represents a documentation page. A page can contain subpages to represent +// nested documentation set structure. +message Page { + // The name of the page. It will be used as an identity of the page to + // generate URI of the page, text of the link to this page in navigation, + // etc. The full page name (start from the root page name to this page + // concatenated with `.`) can be used as reference to the page in your + // documentation. For example: + //
pages:
+  // - name: Tutorial
+  //   content: (== include tutorial.md ==)
+  //   subpages:
+  //   - name: Java
+  //     content: (== include tutorial_java.md ==)
+  // 
+ // You can reference `Java` page using Markdown reference link syntax: + // `[Java][Tutorial.Java]`. + string name = 1; + + // The Markdown content of the page. You can use ```(== include {path} + // ==)``` to include content from a Markdown file. The content can be used + // to produce the documentation page such as HTML format page. + string content = 2; + + // Subpages of this page. The order of subpages specified here will be + // honored in the generated docset. + repeated Page subpages = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.py b/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.py new file mode 100644 index 00000000..e3e10aed --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/documentation.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1egoogle/api/documentation.proto\x12\ngoogle.api"\xbb\x01\n\rDocumentation\x12\x0f\n\x07summary\x18\x01 \x01(\t\x12\x1f\n\x05pages\x18\x05 \x03(\x0b\x32\x10.google.api.Page\x12,\n\x05rules\x18\x03 \x03(\x0b\x32\x1d.google.api.DocumentationRule\x12\x1e\n\x16\x64ocumentation_root_url\x18\x04 \x01(\t\x12\x18\n\x10service_root_url\x18\x06 \x01(\t\x12\x10\n\x08overview\x18\x02 \x01(\t"[\n\x11\x44ocumentationRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1f\n\x17\x64\x65precation_description\x18\x03 \x01(\t"I\n\x04Page\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07\x63ontent\x18\x02 \x01(\t\x12"\n\x08subpages\x18\x03 \x03(\x0b\x32\x10.google.api.PageBt\n\x0e\x63om.google.apiB\x12\x44ocumentationProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.documentation_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\022DocumentationProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_DOCUMENTATION"]._serialized_start = 47 + _globals["_DOCUMENTATION"]._serialized_end = 234 + _globals["_DOCUMENTATIONRULE"]._serialized_start = 236 + _globals["_DOCUMENTATIONRULE"]._serialized_end = 327 + _globals["_PAGE"]._serialized_start = 329 + _globals["_PAGE"]._serialized_end = 402 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.pyi new file mode 100644 index 00000000..82f1a2bf --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/documentation_pb2.pyi @@ -0,0 +1,86 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Documentation(_message.Message): + __slots__ = ( + "summary", + "pages", + "rules", + "documentation_root_url", + "service_root_url", + "overview", + ) + SUMMARY_FIELD_NUMBER: _ClassVar[int] + PAGES_FIELD_NUMBER: _ClassVar[int] + RULES_FIELD_NUMBER: _ClassVar[int] + DOCUMENTATION_ROOT_URL_FIELD_NUMBER: _ClassVar[int] + SERVICE_ROOT_URL_FIELD_NUMBER: _ClassVar[int] + OVERVIEW_FIELD_NUMBER: _ClassVar[int] + summary: str + pages: _containers.RepeatedCompositeFieldContainer[Page] + rules: _containers.RepeatedCompositeFieldContainer[DocumentationRule] + documentation_root_url: str + service_root_url: str + overview: str + def __init__( + self, + summary: _Optional[str] = ..., + pages: _Optional[_Iterable[_Union[Page, _Mapping]]] = ..., + rules: _Optional[_Iterable[_Union[DocumentationRule, _Mapping]]] = ..., + documentation_root_url: _Optional[str] = ..., + service_root_url: _Optional[str] = ..., + overview: _Optional[str] = ..., + ) -> None: ... + +class DocumentationRule(_message.Message): + __slots__ = ("selector", "description", "deprecation_description") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + DEPRECATION_DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + selector: str + description: str + deprecation_description: str + def __init__( + self, + selector: _Optional[str] = ..., + description: _Optional[str] = ..., + deprecation_description: _Optional[str] = ..., + ) -> None: ... + +class Page(_message.Message): + __slots__ = ("name", "content", "subpages") + NAME_FIELD_NUMBER: _ClassVar[int] + CONTENT_FIELD_NUMBER: _ClassVar[int] + SUBPAGES_FIELD_NUMBER: _ClassVar[int] + name: str + content: str + subpages: _containers.RepeatedCompositeFieldContainer[Page] + def __init__( + self, + name: _Optional[str] = ..., + content: _Optional[str] = ..., + subpages: _Optional[_Iterable[_Union[Page, _Mapping]]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/endpoint.proto b/ocr/.venv/Lib/site-packages/google/api/endpoint.proto new file mode 100644 index 00000000..a9fa9992 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/endpoint.proto @@ -0,0 +1,69 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "EndpointProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Endpoint` describes a network address of a service that serves a set of +// APIs. It is commonly known as a service endpoint. A service may expose +// any number of service endpoints, and all service endpoints share the same +// service definition, such as quota limits and monitoring metrics. +// +// Example: +// +// type: google.api.Service +// name: library-example.googleapis.com +// endpoints: +// # Declares network address `https://library-example.googleapis.com` +// # for service `library-example.googleapis.com`. The `https` scheme +// # is implicit for all service endpoints. Other schemes may be +// # supported in the future. +// - name: library-example.googleapis.com +// allow_cors: false +// - name: content-staging-library-example.googleapis.com +// # Allows HTTP OPTIONS calls to be passed to the API frontend, for it +// # to decide whether the subsequent cross-origin request is allowed +// # to proceed. +// allow_cors: true +message Endpoint { + // The canonical name of this endpoint. + string name = 1; + + // Aliases for this endpoint, these will be served by the same UrlMap as the + // parent endpoint, and will be provisioned in the GCP stack for the Regional + // Endpoints. + repeated string aliases = 2; + + // The specification of an Internet routable address of API frontend that will + // handle requests to this [API + // Endpoint](https://cloud.google.com/apis/design/glossary). It should be + // either a valid IPv4 address or a fully-qualified domain name. For example, + // "8.8.8.8" or "myservice.appspot.com". + string target = 101; + + // Allowing + // [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka + // cross-domain traffic, would allow the backends served from this endpoint to + // receive and respond to HTTP OPTIONS requests. The response will be used by + // the browser to determine whether the subsequent cross-origin request is + // allowed to proceed. + bool allow_cors = 5; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.py b/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.py new file mode 100644 index 00000000..0bca0a29 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/endpoint.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x19google/api/endpoint.proto\x12\ngoogle.api"M\n\x08\x45ndpoint\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07\x61liases\x18\x02 \x03(\t\x12\x0e\n\x06target\x18\x65 \x01(\t\x12\x12\n\nallow_cors\x18\x05 \x01(\x08\x42o\n\x0e\x63om.google.apiB\rEndpointProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.endpoint_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\rEndpointProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_ENDPOINT"]._serialized_start = 41 + _globals["_ENDPOINT"]._serialized_end = 118 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.pyi new file mode 100644 index 00000000..cb78d20b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/endpoint_pb2.pyi @@ -0,0 +1,41 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Optional as _Optional + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Endpoint(_message.Message): + __slots__ = ("name", "aliases", "target", "allow_cors") + NAME_FIELD_NUMBER: _ClassVar[int] + ALIASES_FIELD_NUMBER: _ClassVar[int] + TARGET_FIELD_NUMBER: _ClassVar[int] + ALLOW_CORS_FIELD_NUMBER: _ClassVar[int] + name: str + aliases: _containers.RepeatedScalarFieldContainer[str] + target: str + allow_cors: bool + def __init__( + self, + name: _Optional[str] = ..., + aliases: _Optional[_Iterable[str]] = ..., + target: _Optional[str] = ..., + allow_cors: bool = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/error_reason.proto b/ocr/.venv/Lib/site-packages/google/api/error_reason.proto new file mode 100644 index 00000000..030888ae --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/error_reason.proto @@ -0,0 +1,622 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/error_reason;error_reason"; +option java_multiple_files = true; +option java_outer_classname = "ErrorReasonProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Defines the supported values for `google.rpc.ErrorInfo.reason` for the +// `googleapis.com` error domain. This error domain is reserved for [Service +// Infrastructure](https://cloud.google.com/service-infrastructure/docs/overview). +// For each error info of this domain, the metadata key "service" refers to the +// logical identifier of an API service, such as "pubsub.googleapis.com". The +// "consumer" refers to the entity that consumes an API Service. It typically is +// a Google project that owns the client application or the server resource, +// such as "projects/123". Other metadata keys are specific to each error +// reason. For more information, see the definition of the specific error +// reason. +enum ErrorReason { + // Do not use this default value. + ERROR_REASON_UNSPECIFIED = 0; + + // The request is calling a disabled service for a consumer. + // + // Example of an ErrorInfo when the consumer "projects/123" contacting + // "pubsub.googleapis.com" service which is disabled: + // + // { "reason": "SERVICE_DISABLED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the "pubsub.googleapis.com" has been disabled in + // "projects/123". + SERVICE_DISABLED = 1; + + // The request whose associated billing account is disabled. + // + // Example of an ErrorInfo when the consumer "projects/123" fails to contact + // "pubsub.googleapis.com" service because the associated billing account is + // disabled: + // + // { "reason": "BILLING_DISABLED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the billing account associated has been disabled. + BILLING_DISABLED = 2; + + // The request is denied because the provided [API + // key](https://cloud.google.com/docs/authentication/api-keys) is invalid. It + // may be in a bad format, cannot be found, or has been expired). + // + // Example of an ErrorInfo when the request is contacting + // "storage.googleapis.com" service with an invalid API key: + // + // { "reason": "API_KEY_INVALID", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // } + // } + API_KEY_INVALID = 3; + + // The request is denied because it violates [API key API + // restrictions](https://cloud.google.com/docs/authentication/api-keys#adding_api_restrictions). + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call the + // "storage.googleapis.com" service because this service is restricted in the + // API key: + // + // { "reason": "API_KEY_SERVICE_BLOCKED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + API_KEY_SERVICE_BLOCKED = 4; + + // The request is denied because it violates [API key HTTP + // restrictions](https://cloud.google.com/docs/authentication/api-keys#adding_http_restrictions). + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call + // "storage.googleapis.com" service because the http referrer of the request + // violates API key HTTP restrictions: + // + // { "reason": "API_KEY_HTTP_REFERRER_BLOCKED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com", + // } + // } + API_KEY_HTTP_REFERRER_BLOCKED = 7; + + // The request is denied because it violates [API key IP address + // restrictions](https://cloud.google.com/docs/authentication/api-keys#adding_application_restrictions). + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call + // "storage.googleapis.com" service because the caller IP of the request + // violates API key IP address restrictions: + // + // { "reason": "API_KEY_IP_ADDRESS_BLOCKED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com", + // } + // } + API_KEY_IP_ADDRESS_BLOCKED = 8; + + // The request is denied because it violates [API key Android application + // restrictions](https://cloud.google.com/docs/authentication/api-keys#adding_application_restrictions). + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call + // "storage.googleapis.com" service because the request from the Android apps + // violates the API key Android application restrictions: + // + // { "reason": "API_KEY_ANDROID_APP_BLOCKED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + API_KEY_ANDROID_APP_BLOCKED = 9; + + // The request is denied because it violates [API key iOS application + // restrictions](https://cloud.google.com/docs/authentication/api-keys#adding_application_restrictions). + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call + // "storage.googleapis.com" service because the request from the iOS apps + // violates the API key iOS application restrictions: + // + // { "reason": "API_KEY_IOS_APP_BLOCKED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + API_KEY_IOS_APP_BLOCKED = 13; + + // The request is denied because there is not enough rate quota for the + // consumer. + // + // Example of an ErrorInfo when the consumer "projects/123" fails to contact + // "pubsub.googleapis.com" service because consumer's rate quota usage has + // reached the maximum value set for the quota limit + // "ReadsPerMinutePerProject" on the quota metric + // "pubsub.googleapis.com/read_requests": + // + // { "reason": "RATE_LIMIT_EXCEEDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com", + // "quota_metric": "pubsub.googleapis.com/read_requests", + // "quota_limit": "ReadsPerMinutePerProject" + // } + // } + // + // Example of an ErrorInfo when the consumer "projects/123" checks quota on + // the service "dataflow.googleapis.com" and hits the organization quota + // limit "DefaultRequestsPerMinutePerOrganization" on the metric + // "dataflow.googleapis.com/default_requests". + // + // { "reason": "RATE_LIMIT_EXCEEDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "dataflow.googleapis.com", + // "quota_metric": "dataflow.googleapis.com/default_requests", + // "quota_limit": "DefaultRequestsPerMinutePerOrganization" + // } + // } + RATE_LIMIT_EXCEEDED = 5; + + // The request is denied because there is not enough resource quota for the + // consumer. + // + // Example of an ErrorInfo when the consumer "projects/123" fails to contact + // "compute.googleapis.com" service because consumer's resource quota usage + // has reached the maximum value set for the quota limit "VMsPerProject" + // on the quota metric "compute.googleapis.com/vms": + // + // { "reason": "RESOURCE_QUOTA_EXCEEDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "compute.googleapis.com", + // "quota_metric": "compute.googleapis.com/vms", + // "quota_limit": "VMsPerProject" + // } + // } + // + // Example of an ErrorInfo when the consumer "projects/123" checks resource + // quota on the service "dataflow.googleapis.com" and hits the organization + // quota limit "jobs-per-organization" on the metric + // "dataflow.googleapis.com/job_count". + // + // { "reason": "RESOURCE_QUOTA_EXCEEDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "dataflow.googleapis.com", + // "quota_metric": "dataflow.googleapis.com/job_count", + // "quota_limit": "jobs-per-organization" + // } + // } + RESOURCE_QUOTA_EXCEEDED = 6; + + // The request whose associated billing account address is in a tax restricted + // location, violates the local tax restrictions when creating resources in + // the restricted region. + // + // Example of an ErrorInfo when creating the Cloud Storage Bucket in the + // container "projects/123" under a tax restricted region + // "locations/asia-northeast3": + // + // { "reason": "LOCATION_TAX_POLICY_VIOLATED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com", + // "location": "locations/asia-northeast3" + // } + // } + // + // This response indicates creating the Cloud Storage Bucket in + // "locations/asia-northeast3" violates the location tax restriction. + LOCATION_TAX_POLICY_VIOLATED = 10; + + // The request is denied because the caller does not have required permission + // on the user project "projects/123" or the user project is invalid. For more + // information, check the [userProject System + // Parameters](https://cloud.google.com/apis/docs/system-parameters). + // + // Example of an ErrorInfo when the caller is calling Cloud Storage service + // with insufficient permissions on the user project: + // + // { "reason": "USER_PROJECT_DENIED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + USER_PROJECT_DENIED = 11; + + // The request is denied because the consumer "projects/123" is suspended due + // to Terms of Service(Tos) violations. Check [Project suspension + // guidelines](https://cloud.google.com/resource-manager/docs/project-suspension-guidelines) + // for more information. + // + // Example of an ErrorInfo when calling Cloud Storage service with the + // suspended consumer "projects/123": + // + // { "reason": "CONSUMER_SUSPENDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + CONSUMER_SUSPENDED = 12; + + // The request is denied because the associated consumer is invalid. It may be + // in a bad format, cannot be found, or have been deleted. + // + // Example of an ErrorInfo when calling Cloud Storage service with the + // invalid consumer "projects/123": + // + // { "reason": "CONSUMER_INVALID", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + CONSUMER_INVALID = 14; + + // The request is denied because it violates [VPC Service + // Controls](https://cloud.google.com/vpc-service-controls/docs/overview). + // The 'uid' field is a random generated identifier that customer can use it + // to search the audit log for a request rejected by VPC Service Controls. For + // more information, please refer [VPC Service Controls + // Troubleshooting](https://cloud.google.com/vpc-service-controls/docs/troubleshooting#unique-id) + // + // Example of an ErrorInfo when the consumer "projects/123" fails to call + // Cloud Storage service because the request is prohibited by the VPC Service + // Controls. + // + // { "reason": "SECURITY_POLICY_VIOLATED", + // "domain": "googleapis.com", + // "metadata": { + // "uid": "123456789abcde", + // "consumer": "projects/123", + // "service": "storage.googleapis.com" + // } + // } + SECURITY_POLICY_VIOLATED = 15; + + // The request is denied because the provided access token has expired. + // + // Example of an ErrorInfo when the request is calling Cloud Storage service + // with an expired access token: + // + // { "reason": "ACCESS_TOKEN_EXPIRED", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject" + // } + // } + ACCESS_TOKEN_EXPIRED = 16; + + // The request is denied because the provided access token doesn't have at + // least one of the acceptable scopes required for the API. Please check + // [OAuth 2.0 Scopes for Google + // APIs](https://developers.google.com/identity/protocols/oauth2/scopes) for + // the list of the OAuth 2.0 scopes that you might need to request to access + // the API. + // + // Example of an ErrorInfo when the request is calling Cloud Storage service + // with an access token that is missing required scopes: + // + // { "reason": "ACCESS_TOKEN_SCOPE_INSUFFICIENT", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject" + // } + // } + ACCESS_TOKEN_SCOPE_INSUFFICIENT = 17; + + // The request is denied because the account associated with the provided + // access token is in an invalid state, such as disabled or deleted. + // For more information, see https://cloud.google.com/docs/authentication. + // + // Warning: For privacy reasons, the server may not be able to disclose the + // email address for some accounts. The client MUST NOT depend on the + // availability of the `email` attribute. + // + // Example of an ErrorInfo when the request is to the Cloud Storage API with + // an access token that is associated with a disabled or deleted [service + // account](http://cloud/iam/docs/service-accounts): + // + // { "reason": "ACCOUNT_STATE_INVALID", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject", + // "email": "user@123.iam.gserviceaccount.com" + // } + // } + ACCOUNT_STATE_INVALID = 18; + + // The request is denied because the type of the provided access token is not + // supported by the API being called. + // + // Example of an ErrorInfo when the request is to the Cloud Storage API with + // an unsupported token type. + // + // { "reason": "ACCESS_TOKEN_TYPE_UNSUPPORTED", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject" + // } + // } + ACCESS_TOKEN_TYPE_UNSUPPORTED = 19; + + // The request is denied because the request doesn't have any authentication + // credentials. For more information regarding the supported authentication + // strategies for Google Cloud APIs, see + // https://cloud.google.com/docs/authentication. + // + // Example of an ErrorInfo when the request is to the Cloud Storage API + // without any authentication credentials. + // + // { "reason": "CREDENTIALS_MISSING", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject" + // } + // } + CREDENTIALS_MISSING = 20; + + // The request is denied because the provided project owning the resource + // which acts as the [API + // consumer](https://cloud.google.com/apis/design/glossary#api_consumer) is + // invalid. It may be in a bad format or empty. + // + // Example of an ErrorInfo when the request is to the Cloud Functions API, + // but the offered resource project in the request in a bad format which can't + // perform the ListFunctions method. + // + // { "reason": "RESOURCE_PROJECT_INVALID", + // "domain": "googleapis.com", + // "metadata": { + // "service": "cloudfunctions.googleapis.com", + // "method": + // "google.cloud.functions.v1.CloudFunctionsService.ListFunctions" + // } + // } + RESOURCE_PROJECT_INVALID = 21; + + // The request is denied because the provided session cookie is missing, + // invalid or failed to decode. + // + // Example of an ErrorInfo when the request is calling Cloud Storage service + // with a SID cookie which can't be decoded. + // + // { "reason": "SESSION_COOKIE_INVALID", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject", + // "cookie": "SID" + // } + // } + SESSION_COOKIE_INVALID = 23; + + // The request is denied because the user is from a Google Workspace customer + // that blocks their users from accessing a particular service. + // + // Example scenario: https://support.google.com/a/answer/9197205?hl=en + // + // Example of an ErrorInfo when access to Google Cloud Storage service is + // blocked by the Google Workspace administrator: + // + // { "reason": "USER_BLOCKED_BY_ADMIN", + // "domain": "googleapis.com", + // "metadata": { + // "service": "storage.googleapis.com", + // "method": "google.storage.v1.Storage.GetObject", + // } + // } + USER_BLOCKED_BY_ADMIN = 24; + + // The request is denied because the resource service usage is restricted + // by administrators according to the organization policy constraint. + // For more information see + // https://cloud.google.com/resource-manager/docs/organization-policy/restricting-services. + // + // Example of an ErrorInfo when access to Google Cloud Storage service is + // restricted by Resource Usage Restriction policy: + // + // { "reason": "RESOURCE_USAGE_RESTRICTION_VIOLATED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/project-123", + // "service": "storage.googleapis.com" + // } + // } + RESOURCE_USAGE_RESTRICTION_VIOLATED = 25; + + // Unimplemented. Do not use. + // + // The request is denied because it contains unsupported system parameters in + // URL query parameters or HTTP headers. For more information, + // see https://cloud.google.com/apis/docs/system-parameters + // + // Example of an ErrorInfo when access "pubsub.googleapis.com" service with + // a request header of "x-goog-user-ip": + // + // { "reason": "SYSTEM_PARAMETER_UNSUPPORTED", + // "domain": "googleapis.com", + // "metadata": { + // "service": "pubsub.googleapis.com" + // "parameter": "x-goog-user-ip" + // } + // } + SYSTEM_PARAMETER_UNSUPPORTED = 26; + + // The request is denied because it violates Org Restriction: the requested + // resource does not belong to allowed organizations specified in + // "X-Goog-Allowed-Resources" header. + // + // Example of an ErrorInfo when accessing a GCP resource that is restricted by + // Org Restriction for "pubsub.googleapis.com" service. + // + // { + // reason: "ORG_RESTRICTION_VIOLATION" + // domain: "googleapis.com" + // metadata { + // "consumer":"projects/123456" + // "service": "pubsub.googleapis.com" + // } + // } + ORG_RESTRICTION_VIOLATION = 27; + + // The request is denied because "X-Goog-Allowed-Resources" header is in a bad + // format. + // + // Example of an ErrorInfo when + // accessing "pubsub.googleapis.com" service with an invalid + // "X-Goog-Allowed-Resources" request header. + // + // { + // reason: "ORG_RESTRICTION_HEADER_INVALID" + // domain: "googleapis.com" + // metadata { + // "consumer":"projects/123456" + // "service": "pubsub.googleapis.com" + // } + // } + ORG_RESTRICTION_HEADER_INVALID = 28; + + // Unimplemented. Do not use. + // + // The request is calling a service that is not visible to the consumer. + // + // Example of an ErrorInfo when the consumer "projects/123" contacting + // "pubsub.googleapis.com" service which is not visible to the consumer. + // + // { "reason": "SERVICE_NOT_VISIBLE", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the "pubsub.googleapis.com" is not visible to + // "projects/123" (or it may not exist). + SERVICE_NOT_VISIBLE = 29; + + // The request is related to a project for which GCP access is suspended. + // + // Example of an ErrorInfo when the consumer "projects/123" fails to contact + // "pubsub.googleapis.com" service because GCP access is suspended: + // + // { "reason": "GCP_SUSPENDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the associated GCP account has been suspended. + GCP_SUSPENDED = 30; + + // The request violates the location policies when creating resources in + // the restricted region. + // + // Example of an ErrorInfo when creating the Cloud Storage Bucket by + // "projects/123" for service storage.googleapis.com: + // + // { "reason": "LOCATION_POLICY_VIOLATED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "storage.googleapis.com", + // } + // } + // + // This response indicates creating the Cloud Storage Bucket in + // "locations/asia-northeast3" violates at least one location policy. + // The troubleshooting guidance is provided in the Help links. + LOCATION_POLICY_VIOLATED = 31; + + // The request is denied because origin request header is missing. + // + // Example of an ErrorInfo when + // accessing "pubsub.googleapis.com" service with an empty "Origin" request + // header. + // + // { + // reason: "MISSING_ORIGIN" + // domain: "googleapis.com" + // metadata { + // "consumer":"projects/123456" + // "service": "pubsub.googleapis.com" + // } + // } + MISSING_ORIGIN = 33; + + // The request is denied because the request contains more than one credential + // type that are individually acceptable, but not together. The customer + // should retry their request with only one set of credentials. + // + // Example of an ErrorInfo when + // accessing "pubsub.googleapis.com" service with overloaded credentials. + // + // { + // reason: "OVERLOADED_CREDENTIALS" + // domain: "googleapis.com" + // metadata { + // "consumer":"projects/123456" + // "service": "pubsub.googleapis.com" + // } + // } + OVERLOADED_CREDENTIALS = 34; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.py b/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.py new file mode 100644 index 00000000..12474d7b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/error_reason.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1dgoogle/api/error_reason.proto\x12\ngoogle.api*\xba\x07\n\x0b\x45rrorReason\x12\x1c\n\x18\x45RROR_REASON_UNSPECIFIED\x10\x00\x12\x14\n\x10SERVICE_DISABLED\x10\x01\x12\x14\n\x10\x42ILLING_DISABLED\x10\x02\x12\x13\n\x0f\x41PI_KEY_INVALID\x10\x03\x12\x1b\n\x17\x41PI_KEY_SERVICE_BLOCKED\x10\x04\x12!\n\x1d\x41PI_KEY_HTTP_REFERRER_BLOCKED\x10\x07\x12\x1e\n\x1a\x41PI_KEY_IP_ADDRESS_BLOCKED\x10\x08\x12\x1f\n\x1b\x41PI_KEY_ANDROID_APP_BLOCKED\x10\t\x12\x1b\n\x17\x41PI_KEY_IOS_APP_BLOCKED\x10\r\x12\x17\n\x13RATE_LIMIT_EXCEEDED\x10\x05\x12\x1b\n\x17RESOURCE_QUOTA_EXCEEDED\x10\x06\x12 \n\x1cLOCATION_TAX_POLICY_VIOLATED\x10\n\x12\x17\n\x13USER_PROJECT_DENIED\x10\x0b\x12\x16\n\x12\x43ONSUMER_SUSPENDED\x10\x0c\x12\x14\n\x10\x43ONSUMER_INVALID\x10\x0e\x12\x1c\n\x18SECURITY_POLICY_VIOLATED\x10\x0f\x12\x18\n\x14\x41\x43\x43\x45SS_TOKEN_EXPIRED\x10\x10\x12#\n\x1f\x41\x43\x43\x45SS_TOKEN_SCOPE_INSUFFICIENT\x10\x11\x12\x19\n\x15\x41\x43\x43OUNT_STATE_INVALID\x10\x12\x12!\n\x1d\x41\x43\x43\x45SS_TOKEN_TYPE_UNSUPPORTED\x10\x13\x12\x17\n\x13\x43REDENTIALS_MISSING\x10\x14\x12\x1c\n\x18RESOURCE_PROJECT_INVALID\x10\x15\x12\x1a\n\x16SESSION_COOKIE_INVALID\x10\x17\x12\x19\n\x15USER_BLOCKED_BY_ADMIN\x10\x18\x12\'\n#RESOURCE_USAGE_RESTRICTION_VIOLATED\x10\x19\x12 \n\x1cSYSTEM_PARAMETER_UNSUPPORTED\x10\x1a\x12\x1d\n\x19ORG_RESTRICTION_VIOLATION\x10\x1b\x12"\n\x1eORG_RESTRICTION_HEADER_INVALID\x10\x1c\x12\x17\n\x13SERVICE_NOT_VISIBLE\x10\x1d\x12\x11\n\rGCP_SUSPENDED\x10\x1e\x12\x1c\n\x18LOCATION_POLICY_VIOLATED\x10\x1f\x12\x12\n\x0eMISSING_ORIGIN\x10!\x12\x1a\n\x16OVERLOADED_CREDENTIALS\x10"Bp\n\x0e\x63om.google.apiB\x10\x45rrorReasonProtoP\x01ZCgoogle.golang.org/genproto/googleapis/api/error_reason;error_reason\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.error_reason_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\020ErrorReasonProtoP\001ZCgoogle.golang.org/genproto/googleapis/api/error_reason;error_reason\242\002\004GAPI" + _globals["_ERRORREASON"]._serialized_start = 46 + _globals["_ERRORREASON"]._serialized_end = 1000 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.pyi new file mode 100644 index 00000000..4504571f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/error_reason_pb2.pyi @@ -0,0 +1,90 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar + +from google.protobuf import descriptor as _descriptor +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class ErrorReason(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + ERROR_REASON_UNSPECIFIED: _ClassVar[ErrorReason] + SERVICE_DISABLED: _ClassVar[ErrorReason] + BILLING_DISABLED: _ClassVar[ErrorReason] + API_KEY_INVALID: _ClassVar[ErrorReason] + API_KEY_SERVICE_BLOCKED: _ClassVar[ErrorReason] + API_KEY_HTTP_REFERRER_BLOCKED: _ClassVar[ErrorReason] + API_KEY_IP_ADDRESS_BLOCKED: _ClassVar[ErrorReason] + API_KEY_ANDROID_APP_BLOCKED: _ClassVar[ErrorReason] + API_KEY_IOS_APP_BLOCKED: _ClassVar[ErrorReason] + RATE_LIMIT_EXCEEDED: _ClassVar[ErrorReason] + RESOURCE_QUOTA_EXCEEDED: _ClassVar[ErrorReason] + LOCATION_TAX_POLICY_VIOLATED: _ClassVar[ErrorReason] + USER_PROJECT_DENIED: _ClassVar[ErrorReason] + CONSUMER_SUSPENDED: _ClassVar[ErrorReason] + CONSUMER_INVALID: _ClassVar[ErrorReason] + SECURITY_POLICY_VIOLATED: _ClassVar[ErrorReason] + ACCESS_TOKEN_EXPIRED: _ClassVar[ErrorReason] + ACCESS_TOKEN_SCOPE_INSUFFICIENT: _ClassVar[ErrorReason] + ACCOUNT_STATE_INVALID: _ClassVar[ErrorReason] + ACCESS_TOKEN_TYPE_UNSUPPORTED: _ClassVar[ErrorReason] + CREDENTIALS_MISSING: _ClassVar[ErrorReason] + RESOURCE_PROJECT_INVALID: _ClassVar[ErrorReason] + SESSION_COOKIE_INVALID: _ClassVar[ErrorReason] + USER_BLOCKED_BY_ADMIN: _ClassVar[ErrorReason] + RESOURCE_USAGE_RESTRICTION_VIOLATED: _ClassVar[ErrorReason] + SYSTEM_PARAMETER_UNSUPPORTED: _ClassVar[ErrorReason] + ORG_RESTRICTION_VIOLATION: _ClassVar[ErrorReason] + ORG_RESTRICTION_HEADER_INVALID: _ClassVar[ErrorReason] + SERVICE_NOT_VISIBLE: _ClassVar[ErrorReason] + GCP_SUSPENDED: _ClassVar[ErrorReason] + LOCATION_POLICY_VIOLATED: _ClassVar[ErrorReason] + MISSING_ORIGIN: _ClassVar[ErrorReason] + OVERLOADED_CREDENTIALS: _ClassVar[ErrorReason] + +ERROR_REASON_UNSPECIFIED: ErrorReason +SERVICE_DISABLED: ErrorReason +BILLING_DISABLED: ErrorReason +API_KEY_INVALID: ErrorReason +API_KEY_SERVICE_BLOCKED: ErrorReason +API_KEY_HTTP_REFERRER_BLOCKED: ErrorReason +API_KEY_IP_ADDRESS_BLOCKED: ErrorReason +API_KEY_ANDROID_APP_BLOCKED: ErrorReason +API_KEY_IOS_APP_BLOCKED: ErrorReason +RATE_LIMIT_EXCEEDED: ErrorReason +RESOURCE_QUOTA_EXCEEDED: ErrorReason +LOCATION_TAX_POLICY_VIOLATED: ErrorReason +USER_PROJECT_DENIED: ErrorReason +CONSUMER_SUSPENDED: ErrorReason +CONSUMER_INVALID: ErrorReason +SECURITY_POLICY_VIOLATED: ErrorReason +ACCESS_TOKEN_EXPIRED: ErrorReason +ACCESS_TOKEN_SCOPE_INSUFFICIENT: ErrorReason +ACCOUNT_STATE_INVALID: ErrorReason +ACCESS_TOKEN_TYPE_UNSUPPORTED: ErrorReason +CREDENTIALS_MISSING: ErrorReason +RESOURCE_PROJECT_INVALID: ErrorReason +SESSION_COOKIE_INVALID: ErrorReason +USER_BLOCKED_BY_ADMIN: ErrorReason +RESOURCE_USAGE_RESTRICTION_VIOLATED: ErrorReason +SYSTEM_PARAMETER_UNSUPPORTED: ErrorReason +ORG_RESTRICTION_VIOLATION: ErrorReason +ORG_RESTRICTION_HEADER_INVALID: ErrorReason +SERVICE_NOT_VISIBLE: ErrorReason +GCP_SUSPENDED: ErrorReason +LOCATION_POLICY_VIOLATED: ErrorReason +MISSING_ORIGIN: ErrorReason +OVERLOADED_CREDENTIALS: ErrorReason diff --git a/ocr/.venv/Lib/site-packages/google/api/field_behavior.proto b/ocr/.venv/Lib/site-packages/google/api/field_behavior.proto new file mode 100644 index 00000000..1fdaaed1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_behavior.proto @@ -0,0 +1,104 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "FieldBehaviorProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.FieldOptions { + // A designation of a specific field behavior (required, output only, etc.) + // in protobuf messages. + // + // Examples: + // + // string name = 1 [(google.api.field_behavior) = REQUIRED]; + // State state = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; + // google.protobuf.Duration ttl = 1 + // [(google.api.field_behavior) = INPUT_ONLY]; + // google.protobuf.Timestamp expire_time = 1 + // [(google.api.field_behavior) = OUTPUT_ONLY, + // (google.api.field_behavior) = IMMUTABLE]; + repeated google.api.FieldBehavior field_behavior = 1052 [packed = false]; +} + +// An indicator of the behavior of a given field (for example, that a field +// is required in requests, or given as output but ignored as input). +// This **does not** change the behavior in protocol buffers itself; it only +// denotes the behavior and may affect how API tooling handles the field. +// +// Note: This enum **may** receive new values in the future. +enum FieldBehavior { + // Conventional default for enums. Do not use this. + FIELD_BEHAVIOR_UNSPECIFIED = 0; + + // Specifically denotes a field as optional. + // While all fields in protocol buffers are optional, this may be specified + // for emphasis if appropriate. + OPTIONAL = 1; + + // Denotes a field as required. + // This indicates that the field **must** be provided as part of the request, + // and failure to do so will cause an error (usually `INVALID_ARGUMENT`). + REQUIRED = 2; + + // Denotes a field as output only. + // This indicates that the field is provided in responses, but including the + // field in a request does nothing (the server *must* ignore it and + // *must not* throw an error as a result of the field's presence). + OUTPUT_ONLY = 3; + + // Denotes a field as input only. + // This indicates that the field is provided in requests, and the + // corresponding field is not included in output. + INPUT_ONLY = 4; + + // Denotes a field as immutable. + // This indicates that the field may be set once in a request to create a + // resource, but may not be changed thereafter. + IMMUTABLE = 5; + + // Denotes that a (repeated) field is an unordered list. + // This indicates that the service may provide the elements of the list + // in any arbitrary order, rather than the order the user originally + // provided. Additionally, the list's order may or may not be stable. + UNORDERED_LIST = 6; + + // Denotes that this field returns a non-empty default value if not set. + // This indicates that if the user provides the empty value in a request, + // a non-empty value will be returned. The user will not be aware of what + // non-empty value to expect. + NON_EMPTY_DEFAULT = 7; + + // Denotes that the field in a resource (a message annotated with + // google.api.resource) is used in the resource name to uniquely identify the + // resource. For AIP-compliant APIs, this should only be applied to the + // `name` field on the resource. + // + // This behavior should not be applied to references to other resources within + // the message. + // + // The identifier field of resources often have different field behavior + // depending on the request it is embedded in (e.g. for Create methods name + // is optional and unused, while for Update methods it is required). Instead + // of method-specific annotations, only `IDENTIFIER` is required. + IDENTIFIER = 8; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.py b/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.py new file mode 100644 index 00000000..a4cf9db9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/field_behavior.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b"\n\x1fgoogle/api/field_behavior.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto*\xb6\x01\n\rFieldBehavior\x12\x1e\n\x1a\x46IELD_BEHAVIOR_UNSPECIFIED\x10\x00\x12\x0c\n\x08OPTIONAL\x10\x01\x12\x0c\n\x08REQUIRED\x10\x02\x12\x0f\n\x0bOUTPUT_ONLY\x10\x03\x12\x0e\n\nINPUT_ONLY\x10\x04\x12\r\n\tIMMUTABLE\x10\x05\x12\x12\n\x0eUNORDERED_LIST\x10\x06\x12\x15\n\x11NON_EMPTY_DEFAULT\x10\x07\x12\x0e\n\nIDENTIFIER\x10\x08:U\n\x0e\x66ield_behavior\x12\x1d.google.protobuf.FieldOptions\x18\x9c\x08 \x03(\x0e\x32\x19.google.api.FieldBehaviorB\x02\x10\x00\x42p\n\x0e\x63om.google.apiB\x12\x46ieldBehaviorProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3" +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.field_behavior_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\022FieldBehaviorProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["field_behavior"]._options = None + _globals["field_behavior"]._serialized_options = b"\020\000" + _globals["_FIELDBEHAVIOR"]._serialized_start = 82 + _globals["_FIELDBEHAVIOR"]._serialized_end = 264 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.pyi new file mode 100644 index 00000000..c67ed038 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_behavior_pb2.pyi @@ -0,0 +1,45 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class FieldBehavior(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + FIELD_BEHAVIOR_UNSPECIFIED: _ClassVar[FieldBehavior] + OPTIONAL: _ClassVar[FieldBehavior] + REQUIRED: _ClassVar[FieldBehavior] + OUTPUT_ONLY: _ClassVar[FieldBehavior] + INPUT_ONLY: _ClassVar[FieldBehavior] + IMMUTABLE: _ClassVar[FieldBehavior] + UNORDERED_LIST: _ClassVar[FieldBehavior] + NON_EMPTY_DEFAULT: _ClassVar[FieldBehavior] + IDENTIFIER: _ClassVar[FieldBehavior] + +FIELD_BEHAVIOR_UNSPECIFIED: FieldBehavior +OPTIONAL: FieldBehavior +REQUIRED: FieldBehavior +OUTPUT_ONLY: FieldBehavior +INPUT_ONLY: FieldBehavior +IMMUTABLE: FieldBehavior +UNORDERED_LIST: FieldBehavior +NON_EMPTY_DEFAULT: FieldBehavior +IDENTIFIER: FieldBehavior +FIELD_BEHAVIOR_FIELD_NUMBER: _ClassVar[int] +field_behavior: _descriptor.FieldDescriptor diff --git a/ocr/.venv/Lib/site-packages/google/api/field_info.proto b/ocr/.venv/Lib/site-packages/google/api/field_info.proto new file mode 100644 index 00000000..aaa07a18 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_info.proto @@ -0,0 +1,106 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "FieldInfoProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.FieldOptions { + // Rich semantic descriptor of an API field beyond the basic typing. + // + // Examples: + // + // string request_id = 1 [(google.api.field_info).format = UUID4]; + // string old_ip_address = 2 [(google.api.field_info).format = IPV4]; + // string new_ip_address = 3 [(google.api.field_info).format = IPV6]; + // string actual_ip_address = 4 [ + // (google.api.field_info).format = IPV4_OR_IPV6 + // ]; + // google.protobuf.Any generic_field = 5 [ + // (google.api.field_info).referenced_types = {type_name: "ActualType"}, + // (google.api.field_info).referenced_types = {type_name: "OtherType"}, + // ]; + // google.protobuf.Any generic_user_input = 5 [ + // (google.api.field_info).referenced_types = {type_name: "*"}, + // ]; + google.api.FieldInfo field_info = 291403980; +} + +// Rich semantic information of an API field beyond basic typing. +message FieldInfo { + // The standard format of a field value. The supported formats are all backed + // by either an RFC defined by the IETF or a Google-defined AIP. + enum Format { + // Default, unspecified value. + FORMAT_UNSPECIFIED = 0; + + // Universally Unique Identifier, version 4, value as defined by + // https://datatracker.ietf.org/doc/html/rfc4122. The value may be + // normalized to entirely lowercase letters. For example, the value + // `F47AC10B-58CC-0372-8567-0E02B2C3D479` would be normalized to + // `f47ac10b-58cc-0372-8567-0e02b2c3d479`. + UUID4 = 1; + + // Internet Protocol v4 value as defined by [RFC + // 791](https://datatracker.ietf.org/doc/html/rfc791). The value may be + // condensed, with leading zeros in each octet stripped. For example, + // `001.022.233.040` would be condensed to `1.22.233.40`. + IPV4 = 2; + + // Internet Protocol v6 value as defined by [RFC + // 2460](https://datatracker.ietf.org/doc/html/rfc2460). The value may be + // normalized to entirely lowercase letters with zeros compressed, following + // [RFC 5952](https://datatracker.ietf.org/doc/html/rfc5952). For example, + // the value `2001:0DB8:0::0` would be normalized to `2001:db8::`. + IPV6 = 3; + + // An IP address in either v4 or v6 format as described by the individual + // values defined herein. See the comments on the IPV4 and IPV6 types for + // allowed normalizations of each. + IPV4_OR_IPV6 = 4; + } + + // The standard format of a field value. This does not explicitly configure + // any API consumer, just documents the API's format for the field it is + // applied to. + Format format = 1; + + // The type(s) that the annotated, generic field may represent. + // + // Currently, this must only be used on fields of type `google.protobuf.Any`. + // Supporting other generic types may be considered in the future. + repeated TypeReference referenced_types = 2; +} + +// A reference to a message type, for use in [FieldInfo][google.api.FieldInfo]. +message TypeReference { + // The name of the type that the annotated, generic field may represent. + // If the type is in the same protobuf package, the value can be the simple + // message name e.g., `"MyMessage"`. Otherwise, the value must be the + // fully-qualified message name e.g., `"google.library.v1.Book"`. + // + // If the type(s) are unknown to the service (e.g. the field accepts generic + // user input), use the wildcard `"*"` to denote this behavior. + // + // See [AIP-202](https://google.aip.dev/202#type-references) for more details. + string type_name = 1; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.py b/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.py new file mode 100644 index 00000000..05c2f459 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/field_info.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1bgoogle/api/field_info.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto"\xc1\x01\n\tFieldInfo\x12,\n\x06\x66ormat\x18\x01 \x01(\x0e\x32\x1c.google.api.FieldInfo.Format\x12\x33\n\x10referenced_types\x18\x02 \x03(\x0b\x32\x19.google.api.TypeReference"Q\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\t\n\x05UUID4\x10\x01\x12\x08\n\x04IPV4\x10\x02\x12\x08\n\x04IPV6\x10\x03\x12\x10\n\x0cIPV4_OR_IPV6\x10\x04""\n\rTypeReference\x12\x11\n\ttype_name\x18\x01 \x01(\t:L\n\nfield_info\x12\x1d.google.protobuf.FieldOptions\x18\xcc\xf1\xf9\x8a\x01 \x01(\x0b\x32\x15.google.api.FieldInfoBl\n\x0e\x63om.google.apiB\x0e\x46ieldInfoProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.field_info_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\016FieldInfoProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["_FIELDINFO"]._serialized_start = 78 + _globals["_FIELDINFO"]._serialized_end = 271 + _globals["_FIELDINFO_FORMAT"]._serialized_start = 190 + _globals["_FIELDINFO_FORMAT"]._serialized_end = 271 + _globals["_TYPEREFERENCE"]._serialized_start = 273 + _globals["_TYPEREFERENCE"]._serialized_end = 307 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.pyi new file mode 100644 index 00000000..b4a2bc93 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/field_info_pb2.pyi @@ -0,0 +1,60 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor +FIELD_INFO_FIELD_NUMBER: _ClassVar[int] +field_info: _descriptor.FieldDescriptor + +class FieldInfo(_message.Message): + __slots__ = ("format", "referenced_types") + + class Format(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + FORMAT_UNSPECIFIED: _ClassVar[FieldInfo.Format] + UUID4: _ClassVar[FieldInfo.Format] + IPV4: _ClassVar[FieldInfo.Format] + IPV6: _ClassVar[FieldInfo.Format] + IPV4_OR_IPV6: _ClassVar[FieldInfo.Format] + FORMAT_UNSPECIFIED: FieldInfo.Format + UUID4: FieldInfo.Format + IPV4: FieldInfo.Format + IPV6: FieldInfo.Format + IPV4_OR_IPV6: FieldInfo.Format + FORMAT_FIELD_NUMBER: _ClassVar[int] + REFERENCED_TYPES_FIELD_NUMBER: _ClassVar[int] + format: FieldInfo.Format + referenced_types: _containers.RepeatedCompositeFieldContainer[TypeReference] + def __init__( + self, + format: _Optional[_Union[FieldInfo.Format, str]] = ..., + referenced_types: _Optional[_Iterable[_Union[TypeReference, _Mapping]]] = ..., + ) -> None: ... + +class TypeReference(_message.Message): + __slots__ = ("type_name",) + TYPE_NAME_FIELD_NUMBER: _ClassVar[int] + type_name: str + def __init__(self, type_name: _Optional[str] = ...) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/http.proto b/ocr/.venv/Lib/site-packages/google/api/http.proto new file mode 100644 index 00000000..57621b53 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/http.proto @@ -0,0 +1,370 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "HttpProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Defines the HTTP configuration for an API service. It contains a list of +// [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method +// to one or more HTTP REST API methods. +message Http { + // A list of HTTP configuration rules that apply to individual API methods. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated HttpRule rules = 1; + + // When set to true, URL path parameters will be fully URI-decoded except in + // cases of single segment matches in reserved expansion, where "%2F" will be + // left encoded. + // + // The default behavior is to not decode RFC 6570 reserved characters in multi + // segment matches. + bool fully_decode_reserved_expansion = 2; +} + +// gRPC Transcoding +// +// gRPC Transcoding is a feature for mapping between a gRPC method and one or +// more HTTP REST endpoints. It allows developers to build a single API service +// that supports both gRPC APIs and REST APIs. Many systems, including [Google +// APIs](https://github.com/googleapis/googleapis), +// [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC +// Gateway](https://github.com/grpc-ecosystem/grpc-gateway), +// and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature +// and use it for large scale production services. +// +// `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies +// how different portions of the gRPC request message are mapped to the URL +// path, URL query parameters, and HTTP request body. It also controls how the +// gRPC response message is mapped to the HTTP response body. `HttpRule` is +// typically specified as an `google.api.http` annotation on the gRPC method. +// +// Each mapping specifies a URL path template and an HTTP method. The path +// template may refer to one or more fields in the gRPC request message, as long +// as each field is a non-repeated field with a primitive (non-message) type. +// The path template controls how fields of the request message are mapped to +// the URL path. +// +// Example: +// +// service Messaging { +// rpc GetMessage(GetMessageRequest) returns (Message) { +// option (google.api.http) = { +// get: "/v1/{name=messages/*}" +// }; +// } +// } +// message GetMessageRequest { +// string name = 1; // Mapped to URL path. +// } +// message Message { +// string text = 1; // The resource content. +// } +// +// This enables an HTTP REST to gRPC mapping as below: +// +// - HTTP: `GET /v1/messages/123456` +// - gRPC: `GetMessage(name: "messages/123456")` +// +// Any fields in the request message which are not bound by the path template +// automatically become HTTP query parameters if there is no HTTP request body. +// For example: +// +// service Messaging { +// rpc GetMessage(GetMessageRequest) returns (Message) { +// option (google.api.http) = { +// get:"/v1/messages/{message_id}" +// }; +// } +// } +// message GetMessageRequest { +// message SubMessage { +// string subfield = 1; +// } +// string message_id = 1; // Mapped to URL path. +// int64 revision = 2; // Mapped to URL query parameter `revision`. +// SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`. +// } +// +// This enables a HTTP JSON to RPC mapping as below: +// +// - HTTP: `GET /v1/messages/123456?revision=2&sub.subfield=foo` +// - gRPC: `GetMessage(message_id: "123456" revision: 2 sub: +// SubMessage(subfield: "foo"))` +// +// Note that fields which are mapped to URL query parameters must have a +// primitive type or a repeated primitive type or a non-repeated message type. +// In the case of a repeated type, the parameter can be repeated in the URL +// as `...?param=A¶m=B`. In the case of a message type, each field of the +// message is mapped to a separate parameter, such as +// `...?foo.a=A&foo.b=B&foo.c=C`. +// +// For HTTP methods that allow a request body, the `body` field +// specifies the mapping. Consider a REST update method on the +// message resource collection: +// +// service Messaging { +// rpc UpdateMessage(UpdateMessageRequest) returns (Message) { +// option (google.api.http) = { +// patch: "/v1/messages/{message_id}" +// body: "message" +// }; +// } +// } +// message UpdateMessageRequest { +// string message_id = 1; // mapped to the URL +// Message message = 2; // mapped to the body +// } +// +// The following HTTP JSON to RPC mapping is enabled, where the +// representation of the JSON in the request body is determined by +// protos JSON encoding: +// +// - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }` +// - gRPC: `UpdateMessage(message_id: "123456" message { text: "Hi!" })` +// +// The special name `*` can be used in the body mapping to define that +// every field not bound by the path template should be mapped to the +// request body. This enables the following alternative definition of +// the update method: +// +// service Messaging { +// rpc UpdateMessage(Message) returns (Message) { +// option (google.api.http) = { +// patch: "/v1/messages/{message_id}" +// body: "*" +// }; +// } +// } +// message Message { +// string message_id = 1; +// string text = 2; +// } +// +// +// The following HTTP JSON to RPC mapping is enabled: +// +// - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }` +// - gRPC: `UpdateMessage(message_id: "123456" text: "Hi!")` +// +// Note that when using `*` in the body mapping, it is not possible to +// have HTTP parameters, as all fields not bound by the path end in +// the body. This makes this option more rarely used in practice when +// defining REST APIs. The common usage of `*` is in custom methods +// which don't use the URL at all for transferring data. +// +// It is possible to define multiple HTTP methods for one RPC by using +// the `additional_bindings` option. Example: +// +// service Messaging { +// rpc GetMessage(GetMessageRequest) returns (Message) { +// option (google.api.http) = { +// get: "/v1/messages/{message_id}" +// additional_bindings { +// get: "/v1/users/{user_id}/messages/{message_id}" +// } +// }; +// } +// } +// message GetMessageRequest { +// string message_id = 1; +// string user_id = 2; +// } +// +// This enables the following two alternative HTTP JSON to RPC mappings: +// +// - HTTP: `GET /v1/messages/123456` +// - gRPC: `GetMessage(message_id: "123456")` +// +// - HTTP: `GET /v1/users/me/messages/123456` +// - gRPC: `GetMessage(user_id: "me" message_id: "123456")` +// +// Rules for HTTP mapping +// +// 1. Leaf request fields (recursive expansion nested messages in the request +// message) are classified into three categories: +// - Fields referred by the path template. They are passed via the URL path. +// - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They +// are passed via the HTTP +// request body. +// - All other fields are passed via the URL query parameters, and the +// parameter name is the field path in the request message. A repeated +// field can be represented as multiple query parameters under the same +// name. +// 2. If [HttpRule.body][google.api.HttpRule.body] is "*", there is no URL +// query parameter, all fields +// are passed via URL path and HTTP request body. +// 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP +// request body, all +// fields are passed via URL path and URL query parameters. +// +// Path template syntax +// +// Template = "/" Segments [ Verb ] ; +// Segments = Segment { "/" Segment } ; +// Segment = "*" | "**" | LITERAL | Variable ; +// Variable = "{" FieldPath [ "=" Segments ] "}" ; +// FieldPath = IDENT { "." IDENT } ; +// Verb = ":" LITERAL ; +// +// The syntax `*` matches a single URL path segment. The syntax `**` matches +// zero or more URL path segments, which must be the last part of the URL path +// except the `Verb`. +// +// The syntax `Variable` matches part of the URL path as specified by its +// template. A variable template must not contain other variables. If a variable +// matches a single path segment, its template may be omitted, e.g. `{var}` +// is equivalent to `{var=*}`. +// +// The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL` +// contains any reserved character, such characters should be percent-encoded +// before the matching. +// +// If a variable contains exactly one path segment, such as `"{var}"` or +// `"{var=*}"`, when such a variable is expanded into a URL path on the client +// side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The +// server side does the reverse decoding. Such variables show up in the +// [Discovery +// Document](https://developers.google.com/discovery/v1/reference/apis) as +// `{var}`. +// +// If a variable contains multiple path segments, such as `"{var=foo/*}"` +// or `"{var=**}"`, when such a variable is expanded into a URL path on the +// client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded. +// The server side does the reverse decoding, except "%2F" and "%2f" are left +// unchanged. Such variables show up in the +// [Discovery +// Document](https://developers.google.com/discovery/v1/reference/apis) as +// `{+var}`. +// +// Using gRPC API Service Configuration +// +// gRPC API Service Configuration (service config) is a configuration language +// for configuring a gRPC service to become a user-facing product. The +// service config is simply the YAML representation of the `google.api.Service` +// proto message. +// +// As an alternative to annotating your proto file, you can configure gRPC +// transcoding in your service config YAML files. You do this by specifying a +// `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same +// effect as the proto annotation. This can be particularly useful if you +// have a proto that is reused in multiple services. Note that any transcoding +// specified in the service config will override any matching transcoding +// configuration in the proto. +// +// The following example selects a gRPC method and applies an `HttpRule` to it: +// +// http: +// rules: +// - selector: example.v1.Messaging.GetMessage +// get: /v1/messages/{message_id}/{sub.subfield} +// +// Special notes +// +// When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the +// proto to JSON conversion must follow the [proto3 +// specification](https://developers.google.com/protocol-buffers/docs/proto3#json). +// +// While the single segment variable follows the semantics of +// [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String +// Expansion, the multi segment variable **does not** follow RFC 6570 Section +// 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion +// does not expand special characters like `?` and `#`, which would lead +// to invalid URLs. As the result, gRPC Transcoding uses a custom encoding +// for multi segment variables. +// +// The path variables **must not** refer to any repeated or mapped field, +// because client libraries are not capable of handling such variable expansion. +// +// The path variables **must not** capture the leading "/" character. The reason +// is that the most common use case "{var}" does not capture the leading "/" +// character. For consistency, all path variables must share the same behavior. +// +// Repeated message fields must not be mapped to URL query parameters, because +// no client library can support such complicated mapping. +// +// If an API needs to use a JSON array for request or response body, it can map +// the request or response body to a repeated field. However, some gRPC +// Transcoding implementations may not support this feature. +message HttpRule { + // Selects a method to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // Determines the URL pattern is matched by this rules. This pattern can be + // used with any of the {get|put|post|delete|patch} methods. A custom method + // can be defined using the 'custom' field. + oneof pattern { + // Maps to HTTP GET. Used for listing and getting information about + // resources. + string get = 2; + + // Maps to HTTP PUT. Used for replacing a resource. + string put = 3; + + // Maps to HTTP POST. Used for creating a resource or performing an action. + string post = 4; + + // Maps to HTTP DELETE. Used for deleting a resource. + string delete = 5; + + // Maps to HTTP PATCH. Used for updating a resource. + string patch = 6; + + // The custom pattern is used for specifying an HTTP method that is not + // included in the `pattern` field, such as HEAD, or "*" to leave the + // HTTP method unspecified for this rule. The wild-card rule is useful + // for services that provide content to Web (HTML) clients. + CustomHttpPattern custom = 8; + } + + // The name of the request field whose value is mapped to the HTTP request + // body, or `*` for mapping all request fields not captured by the path + // pattern to the HTTP body, or omitted for not having any HTTP request body. + // + // NOTE: the referred field must be present at the top-level of the request + // message type. + string body = 7; + + // Optional. The name of the response field whose value is mapped to the HTTP + // response body. When omitted, the entire response message will be used + // as the HTTP response body. + // + // NOTE: The referred field must be present at the top-level of the response + // message type. + string response_body = 12; + + // Additional HTTP bindings for the selector. Nested bindings must + // not contain an `additional_bindings` field themselves (that is, + // the nesting may only be one level deep). + repeated HttpRule additional_bindings = 11; +} + +// A custom pattern is used for defining custom HTTP verb. +message CustomHttpPattern { + // The name of this custom HTTP verb. + string kind = 1; + + // The path matched by this custom verb. + string path = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/http_pb2.py b/ocr/.venv/Lib/site-packages/google/api/http_pb2.py new file mode 100644 index 00000000..1efe528e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/http_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/http.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x15google/api/http.proto\x12\ngoogle.api"T\n\x04Http\x12#\n\x05rules\x18\x01 \x03(\x0b\x32\x14.google.api.HttpRule\x12\'\n\x1f\x66ully_decode_reserved_expansion\x18\x02 \x01(\x08"\x81\x02\n\x08HttpRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\r\n\x03get\x18\x02 \x01(\tH\x00\x12\r\n\x03put\x18\x03 \x01(\tH\x00\x12\x0e\n\x04post\x18\x04 \x01(\tH\x00\x12\x10\n\x06\x64\x65lete\x18\x05 \x01(\tH\x00\x12\x0f\n\x05patch\x18\x06 \x01(\tH\x00\x12/\n\x06\x63ustom\x18\x08 \x01(\x0b\x32\x1d.google.api.CustomHttpPatternH\x00\x12\x0c\n\x04\x62ody\x18\x07 \x01(\t\x12\x15\n\rresponse_body\x18\x0c \x01(\t\x12\x31\n\x13\x61\x64\x64itional_bindings\x18\x0b \x03(\x0b\x32\x14.google.api.HttpRuleB\t\n\x07pattern"/\n\x11\x43ustomHttpPattern\x12\x0c\n\x04kind\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\tBg\n\x0e\x63om.google.apiB\tHttpProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.http_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\tHttpProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["_HTTP"]._serialized_start = 37 + _globals["_HTTP"]._serialized_end = 121 + _globals["_HTTPRULE"]._serialized_start = 124 + _globals["_HTTPRULE"]._serialized_end = 381 + _globals["_CUSTOMHTTPPATTERN"]._serialized_start = 383 + _globals["_CUSTOMHTTPPATTERN"]._serialized_end = 430 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/http_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/http_pb2.pyi new file mode 100644 index 00000000..445ea687 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/http_pb2.pyi @@ -0,0 +1,94 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Http(_message.Message): + __slots__ = ("rules", "fully_decode_reserved_expansion") + RULES_FIELD_NUMBER: _ClassVar[int] + FULLY_DECODE_RESERVED_EXPANSION_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[HttpRule] + fully_decode_reserved_expansion: bool + def __init__( + self, + rules: _Optional[_Iterable[_Union[HttpRule, _Mapping]]] = ..., + fully_decode_reserved_expansion: bool = ..., + ) -> None: ... + +class HttpRule(_message.Message): + __slots__ = ( + "selector", + "get", + "put", + "post", + "delete", + "patch", + "custom", + "body", + "response_body", + "additional_bindings", + ) + SELECTOR_FIELD_NUMBER: _ClassVar[int] + GET_FIELD_NUMBER: _ClassVar[int] + PUT_FIELD_NUMBER: _ClassVar[int] + POST_FIELD_NUMBER: _ClassVar[int] + DELETE_FIELD_NUMBER: _ClassVar[int] + PATCH_FIELD_NUMBER: _ClassVar[int] + CUSTOM_FIELD_NUMBER: _ClassVar[int] + BODY_FIELD_NUMBER: _ClassVar[int] + RESPONSE_BODY_FIELD_NUMBER: _ClassVar[int] + ADDITIONAL_BINDINGS_FIELD_NUMBER: _ClassVar[int] + selector: str + get: str + put: str + post: str + delete: str + patch: str + custom: CustomHttpPattern + body: str + response_body: str + additional_bindings: _containers.RepeatedCompositeFieldContainer[HttpRule] + def __init__( + self, + selector: _Optional[str] = ..., + get: _Optional[str] = ..., + put: _Optional[str] = ..., + post: _Optional[str] = ..., + delete: _Optional[str] = ..., + patch: _Optional[str] = ..., + custom: _Optional[_Union[CustomHttpPattern, _Mapping]] = ..., + body: _Optional[str] = ..., + response_body: _Optional[str] = ..., + additional_bindings: _Optional[_Iterable[_Union[HttpRule, _Mapping]]] = ..., + ) -> None: ... + +class CustomHttpPattern(_message.Message): + __slots__ = ("kind", "path") + KIND_FIELD_NUMBER: _ClassVar[int] + PATH_FIELD_NUMBER: _ClassVar[int] + kind: str + path: str + def __init__( + self, kind: _Optional[str] = ..., path: _Optional[str] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/httpbody.proto b/ocr/.venv/Lib/site-packages/google/api/httpbody.proto new file mode 100644 index 00000000..e3e17c8a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/httpbody.proto @@ -0,0 +1,80 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/any.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/httpbody;httpbody"; +option java_multiple_files = true; +option java_outer_classname = "HttpBodyProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Message that represents an arbitrary HTTP body. It should only be used for +// payload formats that can't be represented as JSON, such as raw binary or +// an HTML page. +// +// +// This message can be used both in streaming and non-streaming API methods in +// the request as well as the response. +// +// It can be used as a top-level request field, which is convenient if one +// wants to extract parameters from either the URL or HTTP template into the +// request fields and also want access to the raw HTTP body. +// +// Example: +// +// message GetResourceRequest { +// // A unique request id. +// string request_id = 1; +// +// // The raw HTTP body is bound to this field. +// google.api.HttpBody http_body = 2; +// +// } +// +// service ResourceService { +// rpc GetResource(GetResourceRequest) +// returns (google.api.HttpBody); +// rpc UpdateResource(google.api.HttpBody) +// returns (google.protobuf.Empty); +// +// } +// +// Example with streaming methods: +// +// service CaldavService { +// rpc GetCalendar(stream google.api.HttpBody) +// returns (stream google.api.HttpBody); +// rpc UpdateCalendar(stream google.api.HttpBody) +// returns (stream google.api.HttpBody); +// +// } +// +// Use of this type only changes how the request and response bodies are +// handled, all other features will continue to work unchanged. +message HttpBody { + // The HTTP Content-Type header value specifying the content type of the body. + string content_type = 1; + + // The HTTP request/response body as raw binary. + bytes data = 2; + + // Application specific response metadata. Must be set in the first response + // for streaming APIs. + repeated google.protobuf.Any extensions = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.py b/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.py new file mode 100644 index 00000000..75324941 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/httpbody.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x19google/api/httpbody.proto\x12\ngoogle.api\x1a\x19google/protobuf/any.proto"X\n\x08HttpBody\x12\x14\n\x0c\x63ontent_type\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12(\n\nextensions\x18\x03 \x03(\x0b\x32\x14.google.protobuf.AnyBe\n\x0e\x63om.google.apiB\rHttpBodyProtoP\x01Z;google.golang.org/genproto/googleapis/api/httpbody;httpbody\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.httpbody_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\rHttpBodyProtoP\001Z;google.golang.org/genproto/googleapis/api/httpbody;httpbody\242\002\004GAPI" + _globals["_HTTPBODY"]._serialized_start = 68 + _globals["_HTTPBODY"]._serialized_end = 156 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.pyi new file mode 100644 index 00000000..27e90c0c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/httpbody_pb2.pyi @@ -0,0 +1,41 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import any_pb2 as _any_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class HttpBody(_message.Message): + __slots__ = ("content_type", "data", "extensions") + CONTENT_TYPE_FIELD_NUMBER: _ClassVar[int] + DATA_FIELD_NUMBER: _ClassVar[int] + EXTENSIONS_FIELD_NUMBER: _ClassVar[int] + content_type: str + data: bytes + extensions: _containers.RepeatedCompositeFieldContainer[_any_pb2.Any] + def __init__( + self, + content_type: _Optional[str] = ..., + data: _Optional[bytes] = ..., + extensions: _Optional[_Iterable[_Union[_any_pb2.Any, _Mapping]]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/label.proto b/ocr/.venv/Lib/site-packages/google/api/label.proto new file mode 100644 index 00000000..739e4e95 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/label.proto @@ -0,0 +1,47 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/label;label"; +option java_multiple_files = true; +option java_outer_classname = "LabelProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// A description of a label. +message LabelDescriptor { + // Value types that can be used as label values. + enum ValueType { + // A variable-length string. This is the default. + STRING = 0; + + // Boolean; true or false. + BOOL = 1; + + // A 64-bit signed integer. + INT64 = 2; + } + + // The label key. + string key = 1; + + // The type of data that can be assigned to the label. + ValueType value_type = 2; + + // A human-readable description for the label. + string description = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/label_pb2.py b/ocr/.venv/Lib/site-packages/google/api/label_pb2.py new file mode 100644 index 00000000..84c48b74 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/label_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/label.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x16google/api/label.proto\x12\ngoogle.api"\x9c\x01\n\x0fLabelDescriptor\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\nvalue_type\x18\x02 \x01(\x0e\x32%.google.api.LabelDescriptor.ValueType\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t",\n\tValueType\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x42OOL\x10\x01\x12\t\n\x05INT64\x10\x02\x42\\\n\x0e\x63om.google.apiB\nLabelProtoP\x01Z5google.golang.org/genproto/googleapis/api/label;label\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.label_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\nLabelProtoP\001Z5google.golang.org/genproto/googleapis/api/label;label\242\002\004GAPI" + _globals["_LABELDESCRIPTOR"]._serialized_start = 39 + _globals["_LABELDESCRIPTOR"]._serialized_end = 195 + _globals["_LABELDESCRIPTOR_VALUETYPE"]._serialized_start = 151 + _globals["_LABELDESCRIPTOR_VALUETYPE"]._serialized_end = 195 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/label_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/label_pb2.pyi new file mode 100644 index 00000000..63c193d3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/label_pb2.pyi @@ -0,0 +1,47 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class LabelDescriptor(_message.Message): + __slots__ = ("key", "value_type", "description") + + class ValueType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + STRING: _ClassVar[LabelDescriptor.ValueType] + BOOL: _ClassVar[LabelDescriptor.ValueType] + INT64: _ClassVar[LabelDescriptor.ValueType] + STRING: LabelDescriptor.ValueType + BOOL: LabelDescriptor.ValueType + INT64: LabelDescriptor.ValueType + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_TYPE_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + key: str + value_type: LabelDescriptor.ValueType + description: str + def __init__( + self, + key: _Optional[str] = ..., + value_type: _Optional[_Union[LabelDescriptor.ValueType, str]] = ..., + description: _Optional[str] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/launch_stage.proto b/ocr/.venv/Lib/site-packages/google/api/launch_stage.proto new file mode 100644 index 00000000..1e86c1ad --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/launch_stage.proto @@ -0,0 +1,72 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api;api"; +option java_multiple_files = true; +option java_outer_classname = "LaunchStageProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// The launch stage as defined by [Google Cloud Platform +// Launch Stages](https://cloud.google.com/terms/launch-stages). +enum LaunchStage { + // Do not use this default value. + LAUNCH_STAGE_UNSPECIFIED = 0; + + // The feature is not yet implemented. Users can not use it. + UNIMPLEMENTED = 6; + + // Prelaunch features are hidden from users and are only visible internally. + PRELAUNCH = 7; + + // Early Access features are limited to a closed group of testers. To use + // these features, you must sign up in advance and sign a Trusted Tester + // agreement (which includes confidentiality provisions). These features may + // be unstable, changed in backward-incompatible ways, and are not + // guaranteed to be released. + EARLY_ACCESS = 1; + + // Alpha is a limited availability test for releases before they are cleared + // for widespread use. By Alpha, all significant design issues are resolved + // and we are in the process of verifying functionality. Alpha customers + // need to apply for access, agree to applicable terms, and have their + // projects allowlisted. Alpha releases don't have to be feature complete, + // no SLAs are provided, and there are no technical support obligations, but + // they will be far enough along that customers can actually use them in + // test environments or for limited-use tests -- just like they would in + // normal production cases. + ALPHA = 2; + + // Beta is the point at which we are ready to open a release for any + // customer to use. There are no SLA or technical support obligations in a + // Beta release. Products will be complete from a feature perspective, but + // may have some open outstanding issues. Beta releases are suitable for + // limited production use cases. + BETA = 3; + + // GA features are open to all developers and are considered stable and + // fully qualified for production use. + GA = 4; + + // Deprecated features are scheduled to be shut down and removed. For more + // information, see the "Deprecation Policy" section of our [Terms of + // Service](https://cloud.google.com/terms/) + // and the [Google Cloud Platform Subject to the Deprecation + // Policy](https://cloud.google.com/terms/deprecation) documentation. + DEPRECATED = 5; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.py b/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.py new file mode 100644 index 00000000..f3e9bc32 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/launch_stage.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b"\n\x1dgoogle/api/launch_stage.proto\x12\ngoogle.api*\x8c\x01\n\x0bLaunchStage\x12\x1c\n\x18LAUNCH_STAGE_UNSPECIFIED\x10\x00\x12\x11\n\rUNIMPLEMENTED\x10\x06\x12\r\n\tPRELAUNCH\x10\x07\x12\x10\n\x0c\x45\x41RLY_ACCESS\x10\x01\x12\t\n\x05\x41LPHA\x10\x02\x12\x08\n\x04\x42\x45TA\x10\x03\x12\x06\n\x02GA\x10\x04\x12\x0e\n\nDEPRECATED\x10\x05\x42Z\n\x0e\x63om.google.apiB\x10LaunchStageProtoP\x01Z-google.golang.org/genproto/googleapis/api;api\xa2\x02\x04GAPIb\x06proto3" +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.launch_stage_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\020LaunchStageProtoP\001Z-google.golang.org/genproto/googleapis/api;api\242\002\004GAPI" + _globals["_LAUNCHSTAGE"]._serialized_start = 46 + _globals["_LAUNCHSTAGE"]._serialized_end = 186 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.pyi new file mode 100644 index 00000000..bdbe119a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/launch_stage_pb2.pyi @@ -0,0 +1,40 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar + +from google.protobuf import descriptor as _descriptor +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class LaunchStage(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + LAUNCH_STAGE_UNSPECIFIED: _ClassVar[LaunchStage] + UNIMPLEMENTED: _ClassVar[LaunchStage] + PRELAUNCH: _ClassVar[LaunchStage] + EARLY_ACCESS: _ClassVar[LaunchStage] + ALPHA: _ClassVar[LaunchStage] + BETA: _ClassVar[LaunchStage] + GA: _ClassVar[LaunchStage] + DEPRECATED: _ClassVar[LaunchStage] + +LAUNCH_STAGE_UNSPECIFIED: LaunchStage +UNIMPLEMENTED: LaunchStage +PRELAUNCH: LaunchStage +EARLY_ACCESS: LaunchStage +ALPHA: LaunchStage +BETA: LaunchStage +GA: LaunchStage +DEPRECATED: LaunchStage diff --git a/ocr/.venv/Lib/site-packages/google/api/log.proto b/ocr/.venv/Lib/site-packages/google/api/log.proto new file mode 100644 index 00000000..3d55e408 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/log.proto @@ -0,0 +1,54 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/label.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "LogProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// A description of a log type. Example in YAML format: +// +// - name: library.googleapis.com/activity_history +// description: The history of borrowing and returning library items. +// display_name: Activity +// labels: +// - key: /customer_id +// description: Identifier of a library customer +message LogDescriptor { + // The name of the log. It must be less than 512 characters long and can + // include the following characters: upper- and lower-case alphanumeric + // characters [A-Za-z0-9], and punctuation characters including + // slash, underscore, hyphen, period [/_-.]. + string name = 1; + + // The set of labels that are available to describe a specific log entry. + // Runtime requests that contain labels not specified here are + // considered invalid. + repeated LabelDescriptor labels = 2; + + // A human-readable description of this log. This information appears in + // the documentation and can contain details. + string description = 3; + + // The human-readable name for this log. This information appears on + // the user interface and should be concise. + string display_name = 4; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/log_pb2.py b/ocr/.venv/Lib/site-packages/google/api/log_pb2.py new file mode 100644 index 00000000..91ca5a93 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/log_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/log.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import label_pb2 as google_dot_api_dot_label__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x14google/api/log.proto\x12\ngoogle.api\x1a\x16google/api/label.proto"u\n\rLogDescriptor\x12\x0c\n\x04name\x18\x01 \x01(\t\x12+\n\x06labels\x18\x02 \x03(\x0b\x32\x1b.google.api.LabelDescriptor\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x04 \x01(\tBj\n\x0e\x63om.google.apiB\x08LogProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.log_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\010LogProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_LOGDESCRIPTOR"]._serialized_start = 60 + _globals["_LOGDESCRIPTOR"]._serialized_end = 177 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/log_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/log_pb2.pyi new file mode 100644 index 00000000..4fafcd72 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/log_pb2.pyi @@ -0,0 +1,46 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import label_pb2 as _label_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class LogDescriptor(_message.Message): + __slots__ = ("name", "labels", "description", "display_name") + NAME_FIELD_NUMBER: _ClassVar[int] + LABELS_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int] + name: str + labels: _containers.RepeatedCompositeFieldContainer[_label_pb2.LabelDescriptor] + description: str + display_name: str + def __init__( + self, + name: _Optional[str] = ..., + labels: _Optional[ + _Iterable[_Union[_label_pb2.LabelDescriptor, _Mapping]] + ] = ..., + description: _Optional[str] = ..., + display_name: _Optional[str] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/logging.proto b/ocr/.venv/Lib/site-packages/google/api/logging.proto new file mode 100644 index 00000000..613e005e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/logging.proto @@ -0,0 +1,81 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "LoggingProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Logging configuration of the service. +// +// The following example shows how to configure logs to be sent to the +// producer and consumer projects. In the example, the `activity_history` +// log is sent to both the producer and consumer projects, whereas the +// `purchase_history` log is only sent to the producer project. +// +// monitored_resources: +// - type: library.googleapis.com/branch +// labels: +// - key: /city +// description: The city where the library branch is located in. +// - key: /name +// description: The name of the branch. +// logs: +// - name: activity_history +// labels: +// - key: /customer_id +// - name: purchase_history +// logging: +// producer_destinations: +// - monitored_resource: library.googleapis.com/branch +// logs: +// - activity_history +// - purchase_history +// consumer_destinations: +// - monitored_resource: library.googleapis.com/branch +// logs: +// - activity_history +message Logging { + // Configuration of a specific logging destination (the producer project + // or the consumer project). + message LoggingDestination { + // The monitored resource type. The type must be defined in the + // [Service.monitored_resources][google.api.Service.monitored_resources] + // section. + string monitored_resource = 3; + + // Names of the logs to be sent to this destination. Each name must + // be defined in the [Service.logs][google.api.Service.logs] section. If the + // log name is not a domain scoped name, it will be automatically prefixed + // with the service name followed by "/". + repeated string logs = 1; + } + + // Logging configurations for sending logs to the producer project. + // There can be multiple producer destinations, each one must have a + // different monitored resource type. A log can be used in at most + // one producer destination. + repeated LoggingDestination producer_destinations = 1; + + // Logging configurations for sending logs to the consumer project. + // There can be multiple consumer destinations, each one must have a + // different monitored resource type. A log can be used in at most + // one consumer destination. + repeated LoggingDestination consumer_destinations = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/logging_pb2.py b/ocr/.venv/Lib/site-packages/google/api/logging_pb2.py new file mode 100644 index 00000000..c47f5998 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/logging_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/logging.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/logging.proto\x12\ngoogle.api"\xd7\x01\n\x07Logging\x12\x45\n\x15producer_destinations\x18\x01 \x03(\x0b\x32&.google.api.Logging.LoggingDestination\x12\x45\n\x15\x63onsumer_destinations\x18\x02 \x03(\x0b\x32&.google.api.Logging.LoggingDestination\x1a>\n\x12LoggingDestination\x12\x1a\n\x12monitored_resource\x18\x03 \x01(\t\x12\x0c\n\x04logs\x18\x01 \x03(\tBn\n\x0e\x63om.google.apiB\x0cLoggingProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.logging_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014LoggingProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_LOGGING"]._serialized_start = 41 + _globals["_LOGGING"]._serialized_end = 256 + _globals["_LOGGING_LOGGINGDESTINATION"]._serialized_start = 194 + _globals["_LOGGING_LOGGINGDESTINATION"]._serialized_end = 256 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/logging_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/logging_pb2.pyi new file mode 100644 index 00000000..7a072ddb --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/logging_pb2.pyi @@ -0,0 +1,57 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Logging(_message.Message): + __slots__ = ("producer_destinations", "consumer_destinations") + + class LoggingDestination(_message.Message): + __slots__ = ("monitored_resource", "logs") + MONITORED_RESOURCE_FIELD_NUMBER: _ClassVar[int] + LOGS_FIELD_NUMBER: _ClassVar[int] + monitored_resource: str + logs: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + monitored_resource: _Optional[str] = ..., + logs: _Optional[_Iterable[str]] = ..., + ) -> None: ... + PRODUCER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + CONSUMER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + producer_destinations: _containers.RepeatedCompositeFieldContainer[ + Logging.LoggingDestination + ] + consumer_destinations: _containers.RepeatedCompositeFieldContainer[ + Logging.LoggingDestination + ] + def __init__( + self, + producer_destinations: _Optional[ + _Iterable[_Union[Logging.LoggingDestination, _Mapping]] + ] = ..., + consumer_destinations: _Optional[ + _Iterable[_Union[Logging.LoggingDestination, _Mapping]] + ] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/metric.proto b/ocr/.venv/Lib/site-packages/google/api/metric.proto new file mode 100644 index 00000000..9da49ba0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/metric.proto @@ -0,0 +1,287 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/label.proto"; +import "google/api/launch_stage.proto"; +import "google/protobuf/duration.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/metric;metric"; +option java_multiple_files = true; +option java_outer_classname = "MetricProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Defines a metric type and its schema. Once a metric descriptor is created, +// deleting or altering it stops data collection and makes the metric type's +// existing data unusable. +// +message MetricDescriptor { + // The kind of measurement. It describes how the data is reported. + // For information on setting the start time and end time based on + // the MetricKind, see [TimeInterval][google.monitoring.v3.TimeInterval]. + enum MetricKind { + // Do not use this default value. + METRIC_KIND_UNSPECIFIED = 0; + + // An instantaneous measurement of a value. + GAUGE = 1; + + // The change in a value during a time interval. + DELTA = 2; + + // A value accumulated over a time interval. Cumulative + // measurements in a time series should have the same start time + // and increasing end times, until an event resets the cumulative + // value to zero and sets a new start time for the following + // points. + CUMULATIVE = 3; + } + + // The value type of a metric. + enum ValueType { + // Do not use this default value. + VALUE_TYPE_UNSPECIFIED = 0; + + // The value is a boolean. + // This value type can be used only if the metric kind is `GAUGE`. + BOOL = 1; + + // The value is a signed 64-bit integer. + INT64 = 2; + + // The value is a double precision floating point number. + DOUBLE = 3; + + // The value is a text string. + // This value type can be used only if the metric kind is `GAUGE`. + STRING = 4; + + // The value is a [`Distribution`][google.api.Distribution]. + DISTRIBUTION = 5; + + // The value is money. + MONEY = 6; + } + + // Additional annotations that can be used to guide the usage of a metric. + message MetricDescriptorMetadata { + // The resource hierarchy level of the timeseries data of a metric. + enum TimeSeriesResourceHierarchyLevel { + // Do not use this default value. + TIME_SERIES_RESOURCE_HIERARCHY_LEVEL_UNSPECIFIED = 0; + + // Scopes a metric to a project. + PROJECT = 1; + + // Scopes a metric to an organization. + ORGANIZATION = 2; + + // Scopes a metric to a folder. + FOLDER = 3; + } + + // Deprecated. Must use the + // [MetricDescriptor.launch_stage][google.api.MetricDescriptor.launch_stage] + // instead. + LaunchStage launch_stage = 1 [deprecated = true]; + + // The sampling period of metric data points. For metrics which are written + // periodically, consecutive data points are stored at this time interval, + // excluding data loss due to errors. Metrics with a higher granularity have + // a smaller sampling period. + google.protobuf.Duration sample_period = 2; + + // The delay of data points caused by ingestion. Data points older than this + // age are guaranteed to be ingested and available to be read, excluding + // data loss due to errors. + google.protobuf.Duration ingest_delay = 3; + + // The scope of the timeseries data of the metric. + repeated TimeSeriesResourceHierarchyLevel + time_series_resource_hierarchy_level = 4; + } + + // The resource name of the metric descriptor. + string name = 1; + + // The metric type, including its DNS name prefix. The type is not + // URL-encoded. All user-defined metric types have the DNS name + // `custom.googleapis.com` or `external.googleapis.com`. Metric types should + // use a natural hierarchical grouping. For example: + // + // "custom.googleapis.com/invoice/paid/amount" + // "external.googleapis.com/prometheus/up" + // "appengine.googleapis.com/http/server/response_latencies" + string type = 8; + + // The set of labels that can be used to describe a specific + // instance of this metric type. For example, the + // `appengine.googleapis.com/http/server/response_latencies` metric + // type has a label for the HTTP response code, `response_code`, so + // you can look at latencies for successful responses or just + // for responses that failed. + repeated LabelDescriptor labels = 2; + + // Whether the metric records instantaneous values, changes to a value, etc. + // Some combinations of `metric_kind` and `value_type` might not be supported. + MetricKind metric_kind = 3; + + // Whether the measurement is an integer, a floating-point number, etc. + // Some combinations of `metric_kind` and `value_type` might not be supported. + ValueType value_type = 4; + + // The units in which the metric value is reported. It is only applicable + // if the `value_type` is `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit` + // defines the representation of the stored metric values. + // + // Different systems might scale the values to be more easily displayed (so a + // value of `0.02kBy` _might_ be displayed as `20By`, and a value of + // `3523kBy` _might_ be displayed as `3.5MBy`). However, if the `unit` is + // `kBy`, then the value of the metric is always in thousands of bytes, no + // matter how it might be displayed. + // + // If you want a custom metric to record the exact number of CPU-seconds used + // by a job, you can create an `INT64 CUMULATIVE` metric whose `unit` is + // `s{CPU}` (or equivalently `1s{CPU}` or just `s`). If the job uses 12,005 + // CPU-seconds, then the value is written as `12005`. + // + // Alternatively, if you want a custom metric to record data in a more + // granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is + // `ks{CPU}`, and then write the value `12.005` (which is `12005/1000`), + // or use `Kis{CPU}` and write `11.723` (which is `12005/1024`). + // + // The supported units are a subset of [The Unified Code for Units of + // Measure](https://unitsofmeasure.org/ucum.html) standard: + // + // **Basic units (UNIT)** + // + // * `bit` bit + // * `By` byte + // * `s` second + // * `min` minute + // * `h` hour + // * `d` day + // * `1` dimensionless + // + // **Prefixes (PREFIX)** + // + // * `k` kilo (10^3) + // * `M` mega (10^6) + // * `G` giga (10^9) + // * `T` tera (10^12) + // * `P` peta (10^15) + // * `E` exa (10^18) + // * `Z` zetta (10^21) + // * `Y` yotta (10^24) + // + // * `m` milli (10^-3) + // * `u` micro (10^-6) + // * `n` nano (10^-9) + // * `p` pico (10^-12) + // * `f` femto (10^-15) + // * `a` atto (10^-18) + // * `z` zepto (10^-21) + // * `y` yocto (10^-24) + // + // * `Ki` kibi (2^10) + // * `Mi` mebi (2^20) + // * `Gi` gibi (2^30) + // * `Ti` tebi (2^40) + // * `Pi` pebi (2^50) + // + // **Grammar** + // + // The grammar also includes these connectors: + // + // * `/` division or ratio (as an infix operator). For examples, + // `kBy/{email}` or `MiBy/10ms` (although you should almost never + // have `/s` in a metric `unit`; rates should always be computed at + // query time from the underlying cumulative or delta value). + // * `.` multiplication or composition (as an infix operator). For + // examples, `GBy.d` or `k{watt}.h`. + // + // The grammar for a unit is as follows: + // + // Expression = Component { "." Component } { "/" Component } ; + // + // Component = ( [ PREFIX ] UNIT | "%" ) [ Annotation ] + // | Annotation + // | "1" + // ; + // + // Annotation = "{" NAME "}" ; + // + // Notes: + // + // * `Annotation` is just a comment if it follows a `UNIT`. If the annotation + // is used alone, then the unit is equivalent to `1`. For examples, + // `{request}/s == 1/s`, `By{transmitted}/s == By/s`. + // * `NAME` is a sequence of non-blank printable ASCII characters not + // containing `{` or `}`. + // * `1` represents a unitary [dimensionless + // unit](https://en.wikipedia.org/wiki/Dimensionless_quantity) of 1, such + // as in `1/s`. It is typically used when none of the basic units are + // appropriate. For example, "new users per day" can be represented as + // `1/d` or `{new-users}/d` (and a metric value `5` would mean "5 new + // users). Alternatively, "thousands of page views per day" would be + // represented as `1000/d` or `k1/d` or `k{page_views}/d` (and a metric + // value of `5.3` would mean "5300 page views per day"). + // * `%` represents dimensionless value of 1/100, and annotates values giving + // a percentage (so the metric values are typically in the range of 0..100, + // and a metric value `3` means "3 percent"). + // * `10^2.%` indicates a metric contains a ratio, typically in the range + // 0..1, that will be multiplied by 100 and displayed as a percentage + // (so a metric value `0.03` means "3 percent"). + string unit = 5; + + // A detailed description of the metric, which can be used in documentation. + string description = 6; + + // A concise name for the metric, which can be displayed in user interfaces. + // Use sentence case without an ending period, for example "Request count". + // This field is optional but it is recommended to be set for any metrics + // associated with user-visible concepts, such as Quota. + string display_name = 7; + + // Optional. Metadata which can be used to guide usage of the metric. + MetricDescriptorMetadata metadata = 10; + + // Optional. The launch stage of the metric definition. + LaunchStage launch_stage = 12; + + // Read-only. If present, then a [time + // series][google.monitoring.v3.TimeSeries], which is identified partially by + // a metric type and a + // [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor], that + // is associated with this metric type can only be associated with one of the + // monitored resource types listed here. + repeated string monitored_resource_types = 13; +} + +// A specific metric, identified by specifying values for all of the +// labels of a [`MetricDescriptor`][google.api.MetricDescriptor]. +message Metric { + // An existing metric type, see + // [google.api.MetricDescriptor][google.api.MetricDescriptor]. For example, + // `custom.googleapis.com/invoice/paid/amount`. + string type = 3; + + // The set of label values that uniquely identify this metric. All + // labels listed in the `MetricDescriptor` must be assigned values. + map labels = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/metric_pb2.py b/ocr/.venv/Lib/site-packages/google/api/metric_pb2.py new file mode 100644 index 00000000..e5eee251 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/metric_pb2.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/metric.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import label_pb2 as google_dot_api_dot_label__pb2 +from google.api import launch_stage_pb2 as google_dot_api_dot_launch__stage__pb2 +from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x17google/api/metric.proto\x12\ngoogle.api\x1a\x16google/api/label.proto\x1a\x1dgoogle/api/launch_stage.proto\x1a\x1egoogle/protobuf/duration.proto"\xac\x08\n\x10MetricDescriptor\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x08 \x01(\t\x12+\n\x06labels\x18\x02 \x03(\x0b\x32\x1b.google.api.LabelDescriptor\x12<\n\x0bmetric_kind\x18\x03 \x01(\x0e\x32\'.google.api.MetricDescriptor.MetricKind\x12:\n\nvalue_type\x18\x04 \x01(\x0e\x32&.google.api.MetricDescriptor.ValueType\x12\x0c\n\x04unit\x18\x05 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x06 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x07 \x01(\t\x12G\n\x08metadata\x18\n \x01(\x0b\x32\x35.google.api.MetricDescriptor.MetricDescriptorMetadata\x12-\n\x0claunch_stage\x18\x0c \x01(\x0e\x32\x17.google.api.LaunchStage\x12 \n\x18monitored_resource_types\x18\r \x03(\t\x1a\xbd\x03\n\x18MetricDescriptorMetadata\x12\x31\n\x0claunch_stage\x18\x01 \x01(\x0e\x32\x17.google.api.LaunchStageB\x02\x18\x01\x12\x30\n\rsample_period\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12/\n\x0cingest_delay\x18\x03 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x84\x01\n$time_series_resource_hierarchy_level\x18\x04 \x03(\x0e\x32V.google.api.MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel"\x83\x01\n TimeSeriesResourceHierarchyLevel\x12\x34\n0TIME_SERIES_RESOURCE_HIERARCHY_LEVEL_UNSPECIFIED\x10\x00\x12\x0b\n\x07PROJECT\x10\x01\x12\x10\n\x0cORGANIZATION\x10\x02\x12\n\n\x06\x46OLDER\x10\x03"O\n\nMetricKind\x12\x1b\n\x17METRIC_KIND_UNSPECIFIED\x10\x00\x12\t\n\x05GAUGE\x10\x01\x12\t\n\x05\x44\x45LTA\x10\x02\x12\x0e\n\nCUMULATIVE\x10\x03"q\n\tValueType\x12\x1a\n\x16VALUE_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04\x42OOL\x10\x01\x12\t\n\x05INT64\x10\x02\x12\n\n\x06\x44OUBLE\x10\x03\x12\n\n\x06STRING\x10\x04\x12\x10\n\x0c\x44ISTRIBUTION\x10\x05\x12\t\n\x05MONEY\x10\x06"u\n\x06Metric\x12\x0c\n\x04type\x18\x03 \x01(\t\x12.\n\x06labels\x18\x02 \x03(\x0b\x32\x1e.google.api.Metric.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42_\n\x0e\x63om.google.apiB\x0bMetricProtoP\x01Z7google.golang.org/genproto/googleapis/api/metric;metric\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.metric_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\013MetricProtoP\001Z7google.golang.org/genproto/googleapis/api/metric;metric\242\002\004GAPI" + _globals["_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA"].fields_by_name[ + "launch_stage" + ]._options = None + _globals["_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA"].fields_by_name[ + "launch_stage" + ]._serialized_options = b"\030\001" + _globals["_METRIC_LABELSENTRY"]._options = None + _globals["_METRIC_LABELSENTRY"]._serialized_options = b"8\001" + _globals["_METRICDESCRIPTOR"]._serialized_start = 127 + _globals["_METRICDESCRIPTOR"]._serialized_end = 1195 + _globals["_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA"]._serialized_start = 554 + _globals["_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA"]._serialized_end = 999 + _globals[ + "_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA_TIMESERIESRESOURCEHIERARCHYLEVEL" + ]._serialized_start = 868 + _globals[ + "_METRICDESCRIPTOR_METRICDESCRIPTORMETADATA_TIMESERIESRESOURCEHIERARCHYLEVEL" + ]._serialized_end = 999 + _globals["_METRICDESCRIPTOR_METRICKIND"]._serialized_start = 1001 + _globals["_METRICDESCRIPTOR_METRICKIND"]._serialized_end = 1080 + _globals["_METRICDESCRIPTOR_VALUETYPE"]._serialized_start = 1082 + _globals["_METRICDESCRIPTOR_VALUETYPE"]._serialized_end = 1195 + _globals["_METRIC"]._serialized_start = 1197 + _globals["_METRIC"]._serialized_end = 1314 + _globals["_METRIC_LABELSENTRY"]._serialized_start = 1269 + _globals["_METRIC_LABELSENTRY"]._serialized_end = 1314 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/metric_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/metric_pb2.pyi new file mode 100644 index 00000000..a63f411e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/metric_pb2.pyi @@ -0,0 +1,185 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import label_pb2 as _label_pb2 +from google.api import launch_stage_pb2 as _launch_stage_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import duration_pb2 as _duration_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class MetricDescriptor(_message.Message): + __slots__ = ( + "name", + "type", + "labels", + "metric_kind", + "value_type", + "unit", + "description", + "display_name", + "metadata", + "launch_stage", + "monitored_resource_types", + ) + + class MetricKind(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + METRIC_KIND_UNSPECIFIED: _ClassVar[MetricDescriptor.MetricKind] + GAUGE: _ClassVar[MetricDescriptor.MetricKind] + DELTA: _ClassVar[MetricDescriptor.MetricKind] + CUMULATIVE: _ClassVar[MetricDescriptor.MetricKind] + METRIC_KIND_UNSPECIFIED: MetricDescriptor.MetricKind + GAUGE: MetricDescriptor.MetricKind + DELTA: MetricDescriptor.MetricKind + CUMULATIVE: MetricDescriptor.MetricKind + + class ValueType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + VALUE_TYPE_UNSPECIFIED: _ClassVar[MetricDescriptor.ValueType] + BOOL: _ClassVar[MetricDescriptor.ValueType] + INT64: _ClassVar[MetricDescriptor.ValueType] + DOUBLE: _ClassVar[MetricDescriptor.ValueType] + STRING: _ClassVar[MetricDescriptor.ValueType] + DISTRIBUTION: _ClassVar[MetricDescriptor.ValueType] + MONEY: _ClassVar[MetricDescriptor.ValueType] + VALUE_TYPE_UNSPECIFIED: MetricDescriptor.ValueType + BOOL: MetricDescriptor.ValueType + INT64: MetricDescriptor.ValueType + DOUBLE: MetricDescriptor.ValueType + STRING: MetricDescriptor.ValueType + DISTRIBUTION: MetricDescriptor.ValueType + MONEY: MetricDescriptor.ValueType + + class MetricDescriptorMetadata(_message.Message): + __slots__ = ( + "launch_stage", + "sample_period", + "ingest_delay", + "time_series_resource_hierarchy_level", + ) + + class TimeSeriesResourceHierarchyLevel( + int, metaclass=_enum_type_wrapper.EnumTypeWrapper + ): + __slots__ = () + TIME_SERIES_RESOURCE_HIERARCHY_LEVEL_UNSPECIFIED: _ClassVar[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ] + PROJECT: _ClassVar[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ] + ORGANIZATION: _ClassVar[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ] + FOLDER: _ClassVar[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ] + TIME_SERIES_RESOURCE_HIERARCHY_LEVEL_UNSPECIFIED: MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + PROJECT: MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ORGANIZATION: MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + FOLDER: MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + LAUNCH_STAGE_FIELD_NUMBER: _ClassVar[int] + SAMPLE_PERIOD_FIELD_NUMBER: _ClassVar[int] + INGEST_DELAY_FIELD_NUMBER: _ClassVar[int] + TIME_SERIES_RESOURCE_HIERARCHY_LEVEL_FIELD_NUMBER: _ClassVar[int] + launch_stage: _launch_stage_pb2.LaunchStage + sample_period: _duration_pb2.Duration + ingest_delay: _duration_pb2.Duration + time_series_resource_hierarchy_level: _containers.RepeatedScalarFieldContainer[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel + ] + def __init__( + self, + launch_stage: _Optional[_Union[_launch_stage_pb2.LaunchStage, str]] = ..., + sample_period: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., + ingest_delay: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., + time_series_resource_hierarchy_level: _Optional[ + _Iterable[ + _Union[ + MetricDescriptor.MetricDescriptorMetadata.TimeSeriesResourceHierarchyLevel, + str, + ] + ] + ] = ..., + ) -> None: ... + NAME_FIELD_NUMBER: _ClassVar[int] + TYPE_FIELD_NUMBER: _ClassVar[int] + LABELS_FIELD_NUMBER: _ClassVar[int] + METRIC_KIND_FIELD_NUMBER: _ClassVar[int] + VALUE_TYPE_FIELD_NUMBER: _ClassVar[int] + UNIT_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int] + METADATA_FIELD_NUMBER: _ClassVar[int] + LAUNCH_STAGE_FIELD_NUMBER: _ClassVar[int] + MONITORED_RESOURCE_TYPES_FIELD_NUMBER: _ClassVar[int] + name: str + type: str + labels: _containers.RepeatedCompositeFieldContainer[_label_pb2.LabelDescriptor] + metric_kind: MetricDescriptor.MetricKind + value_type: MetricDescriptor.ValueType + unit: str + description: str + display_name: str + metadata: MetricDescriptor.MetricDescriptorMetadata + launch_stage: _launch_stage_pb2.LaunchStage + monitored_resource_types: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + name: _Optional[str] = ..., + type: _Optional[str] = ..., + labels: _Optional[ + _Iterable[_Union[_label_pb2.LabelDescriptor, _Mapping]] + ] = ..., + metric_kind: _Optional[_Union[MetricDescriptor.MetricKind, str]] = ..., + value_type: _Optional[_Union[MetricDescriptor.ValueType, str]] = ..., + unit: _Optional[str] = ..., + description: _Optional[str] = ..., + display_name: _Optional[str] = ..., + metadata: _Optional[ + _Union[MetricDescriptor.MetricDescriptorMetadata, _Mapping] + ] = ..., + launch_stage: _Optional[_Union[_launch_stage_pb2.LaunchStage, str]] = ..., + monitored_resource_types: _Optional[_Iterable[str]] = ..., + ) -> None: ... + +class Metric(_message.Message): + __slots__ = ("type", "labels") + + class LabelsEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + TYPE_FIELD_NUMBER: _ClassVar[int] + LABELS_FIELD_NUMBER: _ClassVar[int] + type: str + labels: _containers.ScalarMap[str, str] + def __init__( + self, type: _Optional[str] = ..., labels: _Optional[_Mapping[str, str]] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/monitored_resource.proto b/ocr/.venv/Lib/site-packages/google/api/monitored_resource.proto new file mode 100644 index 00000000..36abe14c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitored_resource.proto @@ -0,0 +1,129 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/label.proto"; +import "google/api/launch_stage.proto"; +import "google/protobuf/struct.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/monitoredres;monitoredres"; +option java_multiple_files = true; +option java_outer_classname = "MonitoredResourceProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// An object that describes the schema of a +// [MonitoredResource][google.api.MonitoredResource] object using a type name +// and a set of labels. For example, the monitored resource descriptor for +// Google Compute Engine VM instances has a type of +// `"gce_instance"` and specifies the use of the labels `"instance_id"` and +// `"zone"` to identify particular VM instances. +// +// Different APIs can support different monitored resource types. APIs generally +// provide a `list` method that returns the monitored resource descriptors used +// by the API. +// +message MonitoredResourceDescriptor { + // Optional. The resource name of the monitored resource descriptor: + // `"projects/{project_id}/monitoredResourceDescriptors/{type}"` where + // {type} is the value of the `type` field in this object and + // {project_id} is a project ID that provides API-specific context for + // accessing the type. APIs that do not use project information can use the + // resource name format `"monitoredResourceDescriptors/{type}"`. + string name = 5; + + // Required. The monitored resource type. For example, the type + // `"cloudsql_database"` represents databases in Google Cloud SQL. + // For a list of types, see [Monitored resource + // types](https://cloud.google.com/monitoring/api/resources) + // and [Logging resource + // types](https://cloud.google.com/logging/docs/api/v2/resource-list). + string type = 1; + + // Optional. A concise name for the monitored resource type that might be + // displayed in user interfaces. It should be a Title Cased Noun Phrase, + // without any article or other determiners. For example, + // `"Google Cloud SQL Database"`. + string display_name = 2; + + // Optional. A detailed description of the monitored resource type that might + // be used in documentation. + string description = 3; + + // Required. A set of labels used to describe instances of this monitored + // resource type. For example, an individual Google Cloud SQL database is + // identified by values for the labels `"database_id"` and `"zone"`. + repeated LabelDescriptor labels = 4; + + // Optional. The launch stage of the monitored resource definition. + LaunchStage launch_stage = 7; +} + +// An object representing a resource that can be used for monitoring, logging, +// billing, or other purposes. Examples include virtual machine instances, +// databases, and storage devices such as disks. The `type` field identifies a +// [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor] object +// that describes the resource's schema. Information in the `labels` field +// identifies the actual resource and its attributes according to the schema. +// For example, a particular Compute Engine VM instance could be represented by +// the following object, because the +// [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor] for +// `"gce_instance"` has labels +// `"project_id"`, `"instance_id"` and `"zone"`: +// +// { "type": "gce_instance", +// "labels": { "project_id": "my-project", +// "instance_id": "12345678901234", +// "zone": "us-central1-a" }} +message MonitoredResource { + // Required. The monitored resource type. This field must match + // the `type` field of a + // [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor] + // object. For example, the type of a Compute Engine VM instance is + // `gce_instance`. Some descriptors include the service name in the type; for + // example, the type of a Datastream stream is + // `datastream.googleapis.com/Stream`. + string type = 1; + + // Required. Values for all of the labels listed in the associated monitored + // resource descriptor. For example, Compute Engine VM instances use the + // labels `"project_id"`, `"instance_id"`, and `"zone"`. + map labels = 2; +} + +// Auxiliary metadata for a [MonitoredResource][google.api.MonitoredResource] +// object. [MonitoredResource][google.api.MonitoredResource] objects contain the +// minimum set of information to uniquely identify a monitored resource +// instance. There is some other useful auxiliary metadata. Monitoring and +// Logging use an ingestion pipeline to extract metadata for cloud resources of +// all types, and store the metadata in this message. +message MonitoredResourceMetadata { + // Output only. Values for predefined system metadata labels. + // System labels are a kind of metadata extracted by Google, including + // "machine_image", "vpc", "subnet_id", + // "security_group", "name", etc. + // System label values can be only strings, Boolean values, or a list of + // strings. For example: + // + // { "name": "my-test-instance", + // "security_group": ["a", "b", "c"], + // "spot_instance": false } + google.protobuf.Struct system_labels = 1; + + // Output only. A map of user-defined metadata labels. + map user_labels = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.py b/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.py new file mode 100644 index 00000000..6ef3b21f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/monitored_resource.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import label_pb2 as google_dot_api_dot_label__pb2 +from google.api import launch_stage_pb2 as google_dot_api_dot_launch__stage__pb2 +from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n#google/api/monitored_resource.proto\x12\ngoogle.api\x1a\x16google/api/label.proto\x1a\x1dgoogle/api/launch_stage.proto\x1a\x1cgoogle/protobuf/struct.proto"\xc0\x01\n\x1bMonitoredResourceDescriptor\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12+\n\x06labels\x18\x04 \x03(\x0b\x32\x1b.google.api.LabelDescriptor\x12-\n\x0claunch_stage\x18\x07 \x01(\x0e\x32\x17.google.api.LaunchStage"\x8b\x01\n\x11MonitoredResource\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x39\n\x06labels\x18\x02 \x03(\x0b\x32).google.api.MonitoredResource.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01"\xca\x01\n\x19MonitoredResourceMetadata\x12.\n\rsystem_labels\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12J\n\x0buser_labels\x18\x02 \x03(\x0b\x32\x35.google.api.MonitoredResourceMetadata.UserLabelsEntry\x1a\x31\n\x0fUserLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42v\n\x0e\x63om.google.apiB\x16MonitoredResourceProtoP\x01ZCgoogle.golang.org/genproto/googleapis/api/monitoredres;monitoredres\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.monitored_resource_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\026MonitoredResourceProtoP\001ZCgoogle.golang.org/genproto/googleapis/api/monitoredres;monitoredres\242\002\004GAPI" + _globals["_MONITOREDRESOURCE_LABELSENTRY"]._options = None + _globals["_MONITOREDRESOURCE_LABELSENTRY"]._serialized_options = b"8\001" + _globals["_MONITOREDRESOURCEMETADATA_USERLABELSENTRY"]._options = None + _globals[ + "_MONITOREDRESOURCEMETADATA_USERLABELSENTRY" + ]._serialized_options = b"8\001" + _globals["_MONITOREDRESOURCEDESCRIPTOR"]._serialized_start = 137 + _globals["_MONITOREDRESOURCEDESCRIPTOR"]._serialized_end = 329 + _globals["_MONITOREDRESOURCE"]._serialized_start = 332 + _globals["_MONITOREDRESOURCE"]._serialized_end = 471 + _globals["_MONITOREDRESOURCE_LABELSENTRY"]._serialized_start = 426 + _globals["_MONITOREDRESOURCE_LABELSENTRY"]._serialized_end = 471 + _globals["_MONITOREDRESOURCEMETADATA"]._serialized_start = 474 + _globals["_MONITOREDRESOURCEMETADATA"]._serialized_end = 676 + _globals["_MONITOREDRESOURCEMETADATA_USERLABELSENTRY"]._serialized_start = 627 + _globals["_MONITOREDRESOURCEMETADATA_USERLABELSENTRY"]._serialized_end = 676 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.pyi new file mode 100644 index 00000000..d307b8e7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitored_resource_pb2.pyi @@ -0,0 +1,103 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import label_pb2 as _label_pb2 +from google.api import launch_stage_pb2 as _launch_stage_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import struct_pb2 as _struct_pb2 +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class MonitoredResourceDescriptor(_message.Message): + __slots__ = ( + "name", + "type", + "display_name", + "description", + "labels", + "launch_stage", + ) + NAME_FIELD_NUMBER: _ClassVar[int] + TYPE_FIELD_NUMBER: _ClassVar[int] + DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + LABELS_FIELD_NUMBER: _ClassVar[int] + LAUNCH_STAGE_FIELD_NUMBER: _ClassVar[int] + name: str + type: str + display_name: str + description: str + labels: _containers.RepeatedCompositeFieldContainer[_label_pb2.LabelDescriptor] + launch_stage: _launch_stage_pb2.LaunchStage + def __init__( + self, + name: _Optional[str] = ..., + type: _Optional[str] = ..., + display_name: _Optional[str] = ..., + description: _Optional[str] = ..., + labels: _Optional[ + _Iterable[_Union[_label_pb2.LabelDescriptor, _Mapping]] + ] = ..., + launch_stage: _Optional[_Union[_launch_stage_pb2.LaunchStage, str]] = ..., + ) -> None: ... + +class MonitoredResource(_message.Message): + __slots__ = ("type", "labels") + + class LabelsEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + TYPE_FIELD_NUMBER: _ClassVar[int] + LABELS_FIELD_NUMBER: _ClassVar[int] + type: str + labels: _containers.ScalarMap[str, str] + def __init__( + self, type: _Optional[str] = ..., labels: _Optional[_Mapping[str, str]] = ... + ) -> None: ... + +class MonitoredResourceMetadata(_message.Message): + __slots__ = ("system_labels", "user_labels") + + class UserLabelsEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + SYSTEM_LABELS_FIELD_NUMBER: _ClassVar[int] + USER_LABELS_FIELD_NUMBER: _ClassVar[int] + system_labels: _struct_pb2.Struct + user_labels: _containers.ScalarMap[str, str] + def __init__( + self, + system_labels: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., + user_labels: _Optional[_Mapping[str, str]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/monitoring.proto b/ocr/.venv/Lib/site-packages/google/api/monitoring.proto new file mode 100644 index 00000000..5c3b2d9d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitoring.proto @@ -0,0 +1,107 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "MonitoringProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Monitoring configuration of the service. +// +// The example below shows how to configure monitored resources and metrics +// for monitoring. In the example, a monitored resource and two metrics are +// defined. The `library.googleapis.com/book/returned_count` metric is sent +// to both producer and consumer projects, whereas the +// `library.googleapis.com/book/num_overdue` metric is only sent to the +// consumer project. +// +// monitored_resources: +// - type: library.googleapis.com/Branch +// display_name: "Library Branch" +// description: "A branch of a library." +// launch_stage: GA +// labels: +// - key: resource_container +// description: "The Cloud container (ie. project id) for the Branch." +// - key: location +// description: "The location of the library branch." +// - key: branch_id +// description: "The id of the branch." +// metrics: +// - name: library.googleapis.com/book/returned_count +// display_name: "Books Returned" +// description: "The count of books that have been returned." +// launch_stage: GA +// metric_kind: DELTA +// value_type: INT64 +// unit: "1" +// labels: +// - key: customer_id +// description: "The id of the customer." +// - name: library.googleapis.com/book/num_overdue +// display_name: "Books Overdue" +// description: "The current number of overdue books." +// launch_stage: GA +// metric_kind: GAUGE +// value_type: INT64 +// unit: "1" +// labels: +// - key: customer_id +// description: "The id of the customer." +// monitoring: +// producer_destinations: +// - monitored_resource: library.googleapis.com/Branch +// metrics: +// - library.googleapis.com/book/returned_count +// consumer_destinations: +// - monitored_resource: library.googleapis.com/Branch +// metrics: +// - library.googleapis.com/book/returned_count +// - library.googleapis.com/book/num_overdue +message Monitoring { + // Configuration of a specific monitoring destination (the producer project + // or the consumer project). + message MonitoringDestination { + // The monitored resource type. The type must be defined in + // [Service.monitored_resources][google.api.Service.monitored_resources] + // section. + string monitored_resource = 1; + + // Types of the metrics to report to this monitoring destination. + // Each type must be defined in + // [Service.metrics][google.api.Service.metrics] section. + repeated string metrics = 2; + } + + // Monitoring configurations for sending metrics to the producer project. + // There can be multiple producer destinations. A monitored resource type may + // appear in multiple monitoring destinations if different aggregations are + // needed for different sets of metrics associated with that monitored + // resource type. A monitored resource and metric pair may only be used once + // in the Monitoring configuration. + repeated MonitoringDestination producer_destinations = 1; + + // Monitoring configurations for sending metrics to the consumer project. + // There can be multiple consumer destinations. A monitored resource type may + // appear in multiple monitoring destinations if different aggregations are + // needed for different sets of metrics associated with that monitored + // resource type. A monitored resource and metric pair may only be used once + // in the Monitoring configuration. + repeated MonitoringDestination consumer_destinations = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.py b/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.py new file mode 100644 index 00000000..661203cc --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/monitoring.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1bgoogle/api/monitoring.proto\x12\ngoogle.api"\xec\x01\n\nMonitoring\x12K\n\x15producer_destinations\x18\x01 \x03(\x0b\x32,.google.api.Monitoring.MonitoringDestination\x12K\n\x15\x63onsumer_destinations\x18\x02 \x03(\x0b\x32,.google.api.Monitoring.MonitoringDestination\x1a\x44\n\x15MonitoringDestination\x12\x1a\n\x12monitored_resource\x18\x01 \x01(\t\x12\x0f\n\x07metrics\x18\x02 \x03(\tBq\n\x0e\x63om.google.apiB\x0fMonitoringProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.monitoring_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\017MonitoringProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_MONITORING"]._serialized_start = 44 + _globals["_MONITORING"]._serialized_end = 280 + _globals["_MONITORING_MONITORINGDESTINATION"]._serialized_start = 212 + _globals["_MONITORING_MONITORINGDESTINATION"]._serialized_end = 280 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.pyi new file mode 100644 index 00000000..19a08a96 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/monitoring_pb2.pyi @@ -0,0 +1,57 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Monitoring(_message.Message): + __slots__ = ("producer_destinations", "consumer_destinations") + + class MonitoringDestination(_message.Message): + __slots__ = ("monitored_resource", "metrics") + MONITORED_RESOURCE_FIELD_NUMBER: _ClassVar[int] + METRICS_FIELD_NUMBER: _ClassVar[int] + monitored_resource: str + metrics: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + monitored_resource: _Optional[str] = ..., + metrics: _Optional[_Iterable[str]] = ..., + ) -> None: ... + PRODUCER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + CONSUMER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + producer_destinations: _containers.RepeatedCompositeFieldContainer[ + Monitoring.MonitoringDestination + ] + consumer_destinations: _containers.RepeatedCompositeFieldContainer[ + Monitoring.MonitoringDestination + ] + def __init__( + self, + producer_destinations: _Optional[ + _Iterable[_Union[Monitoring.MonitoringDestination, _Mapping]] + ] = ..., + consumer_destinations: _Optional[ + _Iterable[_Union[Monitoring.MonitoringDestination, _Mapping]] + ] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/policy.proto b/ocr/.venv/Lib/site-packages/google/api/policy.proto new file mode 100644 index 00000000..cc577a16 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/policy.proto @@ -0,0 +1,82 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "PolicyProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.FieldOptions { + // See [FieldPolicy][]. + google.api.FieldPolicy field_policy = 158361448; +} + +extend google.protobuf.MethodOptions { + // See [MethodPolicy][]. + google.api.MethodPolicy method_policy = 161893301; +} + +// Google API Policy Annotation +// +// This message defines a simple API policy annotation that can be used to +// annotate API request and response message fields with applicable policies. +// One field may have multiple applicable policies that must all be satisfied +// before a request can be processed. This policy annotation is used to +// generate the overall policy that will be used for automatic runtime +// policy enforcement and documentation generation. +message FieldPolicy { + // Selects one or more request or response message fields to apply this + // `FieldPolicy`. + // + // When a `FieldPolicy` is used in proto annotation, the selector must + // be left as empty. The service config generator will automatically fill + // the correct value. + // + // When a `FieldPolicy` is used in service config, the selector must be a + // comma-separated string with valid request or response field paths, + // such as "foo.bar" or "foo.bar,foo.baz". + string selector = 1; + + // Specifies the required permission(s) for the resource referred to by the + // field. It requires the field contains a valid resource reference, and + // the request must pass the permission checks to proceed. For example, + // "resourcemanager.projects.get". + string resource_permission = 2; + + // Specifies the resource type for the resource referred to by the field. + string resource_type = 3; +} + +// Defines policies applying to an RPC method. +message MethodPolicy { + // Selects a method to which these policies should be enforced, for example, + // "google.pubsub.v1.Subscriber.CreateSubscription". + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + // + // NOTE: This field must not be set in the proto annotation. It will be + // automatically filled by the service config compiler . + string selector = 9; + + // Policies that are applicable to the request message. + repeated FieldPolicy request_policies = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/policy_pb2.py b/ocr/.venv/Lib/site-packages/google/api/policy_pb2.py new file mode 100644 index 00000000..0e113d71 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/policy_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/policy.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x17google/api/policy.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto"S\n\x0b\x46ieldPolicy\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\x1b\n\x13resource_permission\x18\x02 \x01(\t\x12\x15\n\rresource_type\x18\x03 \x01(\t"S\n\x0cMethodPolicy\x12\x10\n\x08selector\x18\t \x01(\t\x12\x31\n\x10request_policies\x18\x02 \x03(\x0b\x32\x17.google.api.FieldPolicy:O\n\x0c\x66ield_policy\x12\x1d.google.protobuf.FieldOptions\x18\xe8\xce\xc1K \x01(\x0b\x32\x17.google.api.FieldPolicy:R\n\rmethod_policy\x12\x1e.google.protobuf.MethodOptions\x18\xb5\x97\x99M \x01(\x0b\x32\x18.google.api.MethodPolicyBm\n\x0e\x63om.google.apiB\x0bPolicyProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.policy_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\013PolicyProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_FIELDPOLICY"]._serialized_start = 73 + _globals["_FIELDPOLICY"]._serialized_end = 156 + _globals["_METHODPOLICY"]._serialized_start = 158 + _globals["_METHODPOLICY"]._serialized_end = 241 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/policy_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/policy_pb2.pyi new file mode 100644 index 00000000..2a099f30 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/policy_pb2.pyi @@ -0,0 +1,57 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor +FIELD_POLICY_FIELD_NUMBER: _ClassVar[int] +field_policy: _descriptor.FieldDescriptor +METHOD_POLICY_FIELD_NUMBER: _ClassVar[int] +method_policy: _descriptor.FieldDescriptor + +class FieldPolicy(_message.Message): + __slots__ = ("selector", "resource_permission", "resource_type") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + RESOURCE_PERMISSION_FIELD_NUMBER: _ClassVar[int] + RESOURCE_TYPE_FIELD_NUMBER: _ClassVar[int] + selector: str + resource_permission: str + resource_type: str + def __init__( + self, + selector: _Optional[str] = ..., + resource_permission: _Optional[str] = ..., + resource_type: _Optional[str] = ..., + ) -> None: ... + +class MethodPolicy(_message.Message): + __slots__ = ("selector", "request_policies") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + REQUEST_POLICIES_FIELD_NUMBER: _ClassVar[int] + selector: str + request_policies: _containers.RepeatedCompositeFieldContainer[FieldPolicy] + def __init__( + self, + selector: _Optional[str] = ..., + request_policies: _Optional[_Iterable[_Union[FieldPolicy, _Mapping]]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/quota.proto b/ocr/.venv/Lib/site-packages/google/api/quota.proto new file mode 100644 index 00000000..9e7fb3bf --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/quota.proto @@ -0,0 +1,184 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "QuotaProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Quota configuration helps to achieve fairness and budgeting in service +// usage. +// +// The metric based quota configuration works this way: +// - The service configuration defines a set of metrics. +// - For API calls, the quota.metric_rules maps methods to metrics with +// corresponding costs. +// - The quota.limits defines limits on the metrics, which will be used for +// quota checks at runtime. +// +// An example quota configuration in yaml format: +// +// quota: +// limits: +// +// - name: apiWriteQpsPerProject +// metric: library.googleapis.com/write_calls +// unit: "1/min/{project}" # rate limit for consumer projects +// values: +// STANDARD: 10000 +// +// +// (The metric rules bind all methods to the read_calls metric, +// except for the UpdateBook and DeleteBook methods. These two methods +// are mapped to the write_calls metric, with the UpdateBook method +// consuming at twice rate as the DeleteBook method.) +// metric_rules: +// - selector: "*" +// metric_costs: +// library.googleapis.com/read_calls: 1 +// - selector: google.example.library.v1.LibraryService.UpdateBook +// metric_costs: +// library.googleapis.com/write_calls: 2 +// - selector: google.example.library.v1.LibraryService.DeleteBook +// metric_costs: +// library.googleapis.com/write_calls: 1 +// +// Corresponding Metric definition: +// +// metrics: +// - name: library.googleapis.com/read_calls +// display_name: Read requests +// metric_kind: DELTA +// value_type: INT64 +// +// - name: library.googleapis.com/write_calls +// display_name: Write requests +// metric_kind: DELTA +// value_type: INT64 +// +// +message Quota { + // List of QuotaLimit definitions for the service. + repeated QuotaLimit limits = 3; + + // List of MetricRule definitions, each one mapping a selected method to one + // or more metrics. + repeated MetricRule metric_rules = 4; +} + +// Bind API methods to metrics. Binding a method to a metric causes that +// metric's configured quota behaviors to apply to the method call. +message MetricRule { + // Selects the methods to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // Metrics to update when the selected methods are called, and the associated + // cost applied to each metric. + // + // The key of the map is the metric name, and the values are the amount + // increased for the metric against which the quota limits are defined. + // The value must not be negative. + map metric_costs = 2; +} + +// `QuotaLimit` defines a specific limit that applies over a specified duration +// for a limit type. There can be at most one limit for a duration and limit +// type combination defined within a `QuotaGroup`. +message QuotaLimit { + // Name of the quota limit. + // + // The name must be provided, and it must be unique within the service. The + // name can only include alphanumeric characters as well as '-'. + // + // The maximum length of the limit name is 64 characters. + string name = 6; + + // Optional. User-visible, extended description for this quota limit. + // Should be used only when more context is needed to understand this limit + // than provided by the limit's display name (see: `display_name`). + string description = 2; + + // Default number of tokens that can be consumed during the specified + // duration. This is the number of tokens assigned when a client + // application developer activates the service for his/her project. + // + // Specifying a value of 0 will block all requests. This can be used if you + // are provisioning quota to selected consumers and blocking others. + // Similarly, a value of -1 will indicate an unlimited quota. No other + // negative values are allowed. + // + // Used by group-based quotas only. + int64 default_limit = 3; + + // Maximum number of tokens that can be consumed during the specified + // duration. Client application developers can override the default limit up + // to this maximum. If specified, this value cannot be set to a value less + // than the default limit. If not specified, it is set to the default limit. + // + // To allow clients to apply overrides with no upper bound, set this to -1, + // indicating unlimited maximum quota. + // + // Used by group-based quotas only. + int64 max_limit = 4; + + // Free tier value displayed in the Developers Console for this limit. + // The free tier is the number of tokens that will be subtracted from the + // billed amount when billing is enabled. + // This field can only be set on a limit with duration "1d", in a billable + // group; it is invalid on any other limit. If this field is not set, it + // defaults to 0, indicating that there is no free tier for this service. + // + // Used by group-based quotas only. + int64 free_tier = 7; + + // Duration of this limit in textual notation. Must be "100s" or "1d". + // + // Used by group-based quotas only. + string duration = 5; + + // The name of the metric this quota limit applies to. The quota limits with + // the same metric will be checked together during runtime. The metric must be + // defined within the service config. + string metric = 8; + + // Specify the unit of the quota limit. It uses the same syntax as + // [MetricDescriptor.unit][google.api.MetricDescriptor.unit]. The supported + // unit kinds are determined by the quota backend system. + // + // Here are some examples: + // * "1/min/{project}" for quota per minute per project. + // + // Note: the order of unit components is insignificant. + // The "1" at the beginning is required to follow the metric unit syntax. + string unit = 9; + + // Tiered limit values. You must specify this as a key:value pair, with an + // integer value that is the maximum number of requests allowed for the + // specified unit. Currently only STANDARD is supported. + map values = 10; + + // User-visible display name for this limit. + // Optional. If not set, the UI will provide a default display name based on + // the quota configuration. This field can be used to override the default + // display name generated from the configuration. + string display_name = 12; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/quota_pb2.py b/ocr/.venv/Lib/site-packages/google/api/quota_pb2.py new file mode 100644 index 00000000..71d6015a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/quota_pb2.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/quota.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x16google/api/quota.proto\x12\ngoogle.api"]\n\x05Quota\x12&\n\x06limits\x18\x03 \x03(\x0b\x32\x16.google.api.QuotaLimit\x12,\n\x0cmetric_rules\x18\x04 \x03(\x0b\x32\x16.google.api.MetricRule"\x91\x01\n\nMetricRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12=\n\x0cmetric_costs\x18\x02 \x03(\x0b\x32\'.google.api.MetricRule.MetricCostsEntry\x1a\x32\n\x10MetricCostsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01"\x95\x02\n\nQuotaLimit\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x15\n\rdefault_limit\x18\x03 \x01(\x03\x12\x11\n\tmax_limit\x18\x04 \x01(\x03\x12\x11\n\tfree_tier\x18\x07 \x01(\x03\x12\x10\n\x08\x64uration\x18\x05 \x01(\t\x12\x0e\n\x06metric\x18\x08 \x01(\t\x12\x0c\n\x04unit\x18\t \x01(\t\x12\x32\n\x06values\x18\n \x03(\x0b\x32".google.api.QuotaLimit.ValuesEntry\x12\x14\n\x0c\x64isplay_name\x18\x0c \x01(\t\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\x42l\n\x0e\x63om.google.apiB\nQuotaProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.quota_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\nQuotaProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_METRICRULE_METRICCOSTSENTRY"]._options = None + _globals["_METRICRULE_METRICCOSTSENTRY"]._serialized_options = b"8\001" + _globals["_QUOTALIMIT_VALUESENTRY"]._options = None + _globals["_QUOTALIMIT_VALUESENTRY"]._serialized_options = b"8\001" + _globals["_QUOTA"]._serialized_start = 38 + _globals["_QUOTA"]._serialized_end = 131 + _globals["_METRICRULE"]._serialized_start = 134 + _globals["_METRICRULE"]._serialized_end = 279 + _globals["_METRICRULE_METRICCOSTSENTRY"]._serialized_start = 229 + _globals["_METRICRULE_METRICCOSTSENTRY"]._serialized_end = 279 + _globals["_QUOTALIMIT"]._serialized_start = 282 + _globals["_QUOTALIMIT"]._serialized_end = 559 + _globals["_QUOTALIMIT_VALUESENTRY"]._serialized_start = 514 + _globals["_QUOTALIMIT_VALUESENTRY"]._serialized_end = 559 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/quota_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/quota_pb2.pyi new file mode 100644 index 00000000..111ada31 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/quota_pb2.pyi @@ -0,0 +1,116 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Quota(_message.Message): + __slots__ = ("limits", "metric_rules") + LIMITS_FIELD_NUMBER: _ClassVar[int] + METRIC_RULES_FIELD_NUMBER: _ClassVar[int] + limits: _containers.RepeatedCompositeFieldContainer[QuotaLimit] + metric_rules: _containers.RepeatedCompositeFieldContainer[MetricRule] + def __init__( + self, + limits: _Optional[_Iterable[_Union[QuotaLimit, _Mapping]]] = ..., + metric_rules: _Optional[_Iterable[_Union[MetricRule, _Mapping]]] = ..., + ) -> None: ... + +class MetricRule(_message.Message): + __slots__ = ("selector", "metric_costs") + + class MetricCostsEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: int + def __init__( + self, key: _Optional[str] = ..., value: _Optional[int] = ... + ) -> None: ... + SELECTOR_FIELD_NUMBER: _ClassVar[int] + METRIC_COSTS_FIELD_NUMBER: _ClassVar[int] + selector: str + metric_costs: _containers.ScalarMap[str, int] + def __init__( + self, + selector: _Optional[str] = ..., + metric_costs: _Optional[_Mapping[str, int]] = ..., + ) -> None: ... + +class QuotaLimit(_message.Message): + __slots__ = ( + "name", + "description", + "default_limit", + "max_limit", + "free_tier", + "duration", + "metric", + "unit", + "values", + "display_name", + ) + + class ValuesEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: int + def __init__( + self, key: _Optional[str] = ..., value: _Optional[int] = ... + ) -> None: ... + NAME_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + DEFAULT_LIMIT_FIELD_NUMBER: _ClassVar[int] + MAX_LIMIT_FIELD_NUMBER: _ClassVar[int] + FREE_TIER_FIELD_NUMBER: _ClassVar[int] + DURATION_FIELD_NUMBER: _ClassVar[int] + METRIC_FIELD_NUMBER: _ClassVar[int] + UNIT_FIELD_NUMBER: _ClassVar[int] + VALUES_FIELD_NUMBER: _ClassVar[int] + DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int] + name: str + description: str + default_limit: int + max_limit: int + free_tier: int + duration: str + metric: str + unit: str + values: _containers.ScalarMap[str, int] + display_name: str + def __init__( + self, + name: _Optional[str] = ..., + description: _Optional[str] = ..., + default_limit: _Optional[int] = ..., + max_limit: _Optional[int] = ..., + free_tier: _Optional[int] = ..., + duration: _Optional[str] = ..., + metric: _Optional[str] = ..., + unit: _Optional[str] = ..., + values: _Optional[_Mapping[str, int]] = ..., + display_name: _Optional[str] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/resource.proto b/ocr/.venv/Lib/site-packages/google/api/resource.proto new file mode 100644 index 00000000..5669cbc9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/resource.proto @@ -0,0 +1,242 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "ResourceProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.FieldOptions { + // An annotation that describes a resource reference, see + // [ResourceReference][]. + google.api.ResourceReference resource_reference = 1055; +} + +extend google.protobuf.FileOptions { + // An annotation that describes a resource definition without a corresponding + // message; see [ResourceDescriptor][]. + repeated google.api.ResourceDescriptor resource_definition = 1053; +} + +extend google.protobuf.MessageOptions { + // An annotation that describes a resource definition, see + // [ResourceDescriptor][]. + google.api.ResourceDescriptor resource = 1053; +} + +// A simple descriptor of a resource type. +// +// ResourceDescriptor annotates a resource message (either by means of a +// protobuf annotation or use in the service config), and associates the +// resource's schema, the resource type, and the pattern of the resource name. +// +// Example: +// +// message Topic { +// // Indicates this message defines a resource schema. +// // Declares the resource type in the format of {service}/{kind}. +// // For Kubernetes resources, the format is {api group}/{kind}. +// option (google.api.resource) = { +// type: "pubsub.googleapis.com/Topic" +// pattern: "projects/{project}/topics/{topic}" +// }; +// } +// +// The ResourceDescriptor Yaml config will look like: +// +// resources: +// - type: "pubsub.googleapis.com/Topic" +// pattern: "projects/{project}/topics/{topic}" +// +// Sometimes, resources have multiple patterns, typically because they can +// live under multiple parents. +// +// Example: +// +// message LogEntry { +// option (google.api.resource) = { +// type: "logging.googleapis.com/LogEntry" +// pattern: "projects/{project}/logs/{log}" +// pattern: "folders/{folder}/logs/{log}" +// pattern: "organizations/{organization}/logs/{log}" +// pattern: "billingAccounts/{billing_account}/logs/{log}" +// }; +// } +// +// The ResourceDescriptor Yaml config will look like: +// +// resources: +// - type: 'logging.googleapis.com/LogEntry' +// pattern: "projects/{project}/logs/{log}" +// pattern: "folders/{folder}/logs/{log}" +// pattern: "organizations/{organization}/logs/{log}" +// pattern: "billingAccounts/{billing_account}/logs/{log}" +message ResourceDescriptor { + // A description of the historical or future-looking state of the + // resource pattern. + enum History { + // The "unset" value. + HISTORY_UNSPECIFIED = 0; + + // The resource originally had one pattern and launched as such, and + // additional patterns were added later. + ORIGINALLY_SINGLE_PATTERN = 1; + + // The resource has one pattern, but the API owner expects to add more + // later. (This is the inverse of ORIGINALLY_SINGLE_PATTERN, and prevents + // that from being necessary once there are multiple patterns.) + FUTURE_MULTI_PATTERN = 2; + } + + // A flag representing a specific style that a resource claims to conform to. + enum Style { + // The unspecified value. Do not use. + STYLE_UNSPECIFIED = 0; + + // This resource is intended to be "declarative-friendly". + // + // Declarative-friendly resources must be more strictly consistent, and + // setting this to true communicates to tools that this resource should + // adhere to declarative-friendly expectations. + // + // Note: This is used by the API linter (linter.aip.dev) to enable + // additional checks. + DECLARATIVE_FRIENDLY = 1; + } + + // The resource type. It must be in the format of + // {service_name}/{resource_type_kind}. The `resource_type_kind` must be + // singular and must not include version numbers. + // + // Example: `storage.googleapis.com/Bucket` + // + // The value of the resource_type_kind must follow the regular expression + // /[A-Za-z][a-zA-Z0-9]+/. It should start with an upper case character and + // should use PascalCase (UpperCamelCase). The maximum number of + // characters allowed for the `resource_type_kind` is 100. + string type = 1; + + // Optional. The relative resource name pattern associated with this resource + // type. The DNS prefix of the full resource name shouldn't be specified here. + // + // The path pattern must follow the syntax, which aligns with HTTP binding + // syntax: + // + // Template = Segment { "/" Segment } ; + // Segment = LITERAL | Variable ; + // Variable = "{" LITERAL "}" ; + // + // Examples: + // + // - "projects/{project}/topics/{topic}" + // - "projects/{project}/knowledgeBases/{knowledge_base}" + // + // The components in braces correspond to the IDs for each resource in the + // hierarchy. It is expected that, if multiple patterns are provided, + // the same component name (e.g. "project") refers to IDs of the same + // type of resource. + repeated string pattern = 2; + + // Optional. The field on the resource that designates the resource name + // field. If omitted, this is assumed to be "name". + string name_field = 3; + + // Optional. The historical or future-looking state of the resource pattern. + // + // Example: + // + // // The InspectTemplate message originally only supported resource + // // names with organization, and project was added later. + // message InspectTemplate { + // option (google.api.resource) = { + // type: "dlp.googleapis.com/InspectTemplate" + // pattern: + // "organizations/{organization}/inspectTemplates/{inspect_template}" + // pattern: "projects/{project}/inspectTemplates/{inspect_template}" + // history: ORIGINALLY_SINGLE_PATTERN + // }; + // } + History history = 4; + + // The plural name used in the resource name and permission names, such as + // 'projects' for the resource name of 'projects/{project}' and the permission + // name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception + // to this is for Nested Collections that have stuttering names, as defined + // in [AIP-122](https://google.aip.dev/122#nested-collections), where the + // collection ID in the resource name pattern does not necessarily directly + // match the `plural` value. + // + // It is the same concept of the `plural` field in k8s CRD spec + // https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/ + // + // Note: The plural form is required even for singleton resources. See + // https://aip.dev/156 + string plural = 5; + + // The same concept of the `singular` field in k8s CRD spec + // https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/ + // Such as "project" for the `resourcemanager.googleapis.com/Project` type. + string singular = 6; + + // Style flag(s) for this resource. + // These indicate that a resource is expected to conform to a given + // style. See the specific style flags for additional information. + repeated Style style = 10; +} + +// Defines a proto annotation that describes a string field that refers to +// an API resource. +message ResourceReference { + // The resource type that the annotated field references. + // + // Example: + // + // message Subscription { + // string topic = 2 [(google.api.resource_reference) = { + // type: "pubsub.googleapis.com/Topic" + // }]; + // } + // + // Occasionally, a field may reference an arbitrary resource. In this case, + // APIs use the special value * in their resource reference. + // + // Example: + // + // message GetIamPolicyRequest { + // string resource = 2 [(google.api.resource_reference) = { + // type: "*" + // }]; + // } + string type = 1; + + // The resource type of a child collection that the annotated field + // references. This is useful for annotating the `parent` field that + // doesn't have a fixed resource type. + // + // Example: + // + // message ListLogEntriesRequest { + // string parent = 1 [(google.api.resource_reference) = { + // child_type: "logging.googleapis.com/LogEntry" + // }; + // } + string child_type = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/resource_pb2.py b/ocr/.venv/Lib/site-packages/google/api/resource_pb2.py new file mode 100644 index 00000000..3dee3e9b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/resource_pb2.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/resource.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x19google/api/resource.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto"\xee\x02\n\x12ResourceDescriptor\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0f\n\x07pattern\x18\x02 \x03(\t\x12\x12\n\nname_field\x18\x03 \x01(\t\x12\x37\n\x07history\x18\x04 \x01(\x0e\x32&.google.api.ResourceDescriptor.History\x12\x0e\n\x06plural\x18\x05 \x01(\t\x12\x10\n\x08singular\x18\x06 \x01(\t\x12\x33\n\x05style\x18\n \x03(\x0e\x32$.google.api.ResourceDescriptor.Style"[\n\x07History\x12\x17\n\x13HISTORY_UNSPECIFIED\x10\x00\x12\x1d\n\x19ORIGINALLY_SINGLE_PATTERN\x10\x01\x12\x18\n\x14\x46UTURE_MULTI_PATTERN\x10\x02"8\n\x05Style\x12\x15\n\x11STYLE_UNSPECIFIED\x10\x00\x12\x18\n\x14\x44\x45\x43LARATIVE_FRIENDLY\x10\x01"5\n\x11ResourceReference\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x12\n\nchild_type\x18\x02 \x01(\t:Y\n\x12resource_reference\x12\x1d.google.protobuf.FieldOptions\x18\x9f\x08 \x01(\x0b\x32\x1d.google.api.ResourceReference:Z\n\x13resource_definition\x12\x1c.google.protobuf.FileOptions\x18\x9d\x08 \x03(\x0b\x32\x1e.google.api.ResourceDescriptor:R\n\x08resource\x12\x1f.google.protobuf.MessageOptions\x18\x9d\x08 \x01(\x0b\x32\x1e.google.api.ResourceDescriptorBk\n\x0e\x63om.google.apiB\rResourceProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.resource_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\rResourceProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["_RESOURCEDESCRIPTOR"]._serialized_start = 76 + _globals["_RESOURCEDESCRIPTOR"]._serialized_end = 442 + _globals["_RESOURCEDESCRIPTOR_HISTORY"]._serialized_start = 293 + _globals["_RESOURCEDESCRIPTOR_HISTORY"]._serialized_end = 384 + _globals["_RESOURCEDESCRIPTOR_STYLE"]._serialized_start = 386 + _globals["_RESOURCEDESCRIPTOR_STYLE"]._serialized_end = 442 + _globals["_RESOURCEREFERENCE"]._serialized_start = 444 + _globals["_RESOURCEREFERENCE"]._serialized_end = 497 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/resource_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/resource_pb2.pyi new file mode 100644 index 00000000..2a97b329 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/resource_pb2.pyi @@ -0,0 +1,93 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor +RESOURCE_REFERENCE_FIELD_NUMBER: _ClassVar[int] +resource_reference: _descriptor.FieldDescriptor +RESOURCE_DEFINITION_FIELD_NUMBER: _ClassVar[int] +resource_definition: _descriptor.FieldDescriptor +RESOURCE_FIELD_NUMBER: _ClassVar[int] +resource: _descriptor.FieldDescriptor + +class ResourceDescriptor(_message.Message): + __slots__ = ( + "type", + "pattern", + "name_field", + "history", + "plural", + "singular", + "style", + ) + + class History(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + HISTORY_UNSPECIFIED: _ClassVar[ResourceDescriptor.History] + ORIGINALLY_SINGLE_PATTERN: _ClassVar[ResourceDescriptor.History] + FUTURE_MULTI_PATTERN: _ClassVar[ResourceDescriptor.History] + HISTORY_UNSPECIFIED: ResourceDescriptor.History + ORIGINALLY_SINGLE_PATTERN: ResourceDescriptor.History + FUTURE_MULTI_PATTERN: ResourceDescriptor.History + + class Style(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + STYLE_UNSPECIFIED: _ClassVar[ResourceDescriptor.Style] + DECLARATIVE_FRIENDLY: _ClassVar[ResourceDescriptor.Style] + STYLE_UNSPECIFIED: ResourceDescriptor.Style + DECLARATIVE_FRIENDLY: ResourceDescriptor.Style + TYPE_FIELD_NUMBER: _ClassVar[int] + PATTERN_FIELD_NUMBER: _ClassVar[int] + NAME_FIELD_FIELD_NUMBER: _ClassVar[int] + HISTORY_FIELD_NUMBER: _ClassVar[int] + PLURAL_FIELD_NUMBER: _ClassVar[int] + SINGULAR_FIELD_NUMBER: _ClassVar[int] + STYLE_FIELD_NUMBER: _ClassVar[int] + type: str + pattern: _containers.RepeatedScalarFieldContainer[str] + name_field: str + history: ResourceDescriptor.History + plural: str + singular: str + style: _containers.RepeatedScalarFieldContainer[ResourceDescriptor.Style] + def __init__( + self, + type: _Optional[str] = ..., + pattern: _Optional[_Iterable[str]] = ..., + name_field: _Optional[str] = ..., + history: _Optional[_Union[ResourceDescriptor.History, str]] = ..., + plural: _Optional[str] = ..., + singular: _Optional[str] = ..., + style: _Optional[_Iterable[_Union[ResourceDescriptor.Style, str]]] = ..., + ) -> None: ... + +class ResourceReference(_message.Message): + __slots__ = ("type", "child_type") + TYPE_FIELD_NUMBER: _ClassVar[int] + CHILD_TYPE_FIELD_NUMBER: _ClassVar[int] + type: str + child_type: str + def __init__( + self, type: _Optional[str] = ..., child_type: _Optional[str] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/routing.proto b/ocr/.venv/Lib/site-packages/google/api/routing.proto new file mode 100644 index 00000000..4fcb2acb --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/routing.proto @@ -0,0 +1,461 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "RoutingProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.MethodOptions { + // See RoutingRule. + google.api.RoutingRule routing = 72295729; +} + +// Specifies the routing information that should be sent along with the request +// in the form of routing header. +// **NOTE:** All service configuration rules follow the "last one wins" order. +// +// The examples below will apply to an RPC which has the following request type: +// +// Message Definition: +// +// message Request { +// // The name of the Table +// // Values can be of the following formats: +// // - `projects//tables/` +// // - `projects//instances//tables/
` +// // - `region//zones//tables/
` +// string table_name = 1; +// +// // This value specifies routing for replication. +// // It can be in the following formats: +// // - `profiles/` +// // - a legacy `profile_id` that can be any string +// string app_profile_id = 2; +// } +// +// Example message: +// +// { +// table_name: projects/proj_foo/instances/instance_bar/table/table_baz, +// app_profile_id: profiles/prof_qux +// } +// +// The routing header consists of one or multiple key-value pairs. Every key +// and value must be percent-encoded, and joined together in the format of +// `key1=value1&key2=value2`. +// The examples below skip the percent-encoding for readability. +// +// Example 1 +// +// Extracting a field from the request to put into the routing header +// unchanged, with the key equal to the field name. +// +// annotation: +// +// option (google.api.routing) = { +// // Take the `app_profile_id`. +// routing_parameters { +// field: "app_profile_id" +// } +// }; +// +// result: +// +// x-goog-request-params: app_profile_id=profiles/prof_qux +// +// Example 2 +// +// Extracting a field from the request to put into the routing header +// unchanged, with the key different from the field name. +// +// annotation: +// +// option (google.api.routing) = { +// // Take the `app_profile_id`, but name it `routing_id` in the header. +// routing_parameters { +// field: "app_profile_id" +// path_template: "{routing_id=**}" +// } +// }; +// +// result: +// +// x-goog-request-params: routing_id=profiles/prof_qux +// +// Example 3 +// +// Extracting a field from the request to put into the routing +// header, while matching a path template syntax on the field's value. +// +// NB: it is more useful to send nothing than to send garbage for the purpose +// of dynamic routing, since garbage pollutes cache. Thus the matching. +// +// Sub-example 3a +// +// The field matches the template. +// +// annotation: +// +// option (google.api.routing) = { +// // Take the `table_name`, if it's well-formed (with project-based +// // syntax). +// routing_parameters { +// field: "table_name" +// path_template: "{table_name=projects/*/instances/*/**}" +// } +// }; +// +// result: +// +// x-goog-request-params: +// table_name=projects/proj_foo/instances/instance_bar/table/table_baz +// +// Sub-example 3b +// +// The field does not match the template. +// +// annotation: +// +// option (google.api.routing) = { +// // Take the `table_name`, if it's well-formed (with region-based +// // syntax). +// routing_parameters { +// field: "table_name" +// path_template: "{table_name=regions/*/zones/*/**}" +// } +// }; +// +// result: +// +// +// +// Sub-example 3c +// +// Multiple alternative conflictingly named path templates are +// specified. The one that matches is used to construct the header. +// +// annotation: +// +// option (google.api.routing) = { +// // Take the `table_name`, if it's well-formed, whether +// // using the region- or projects-based syntax. +// +// routing_parameters { +// field: "table_name" +// path_template: "{table_name=regions/*/zones/*/**}" +// } +// routing_parameters { +// field: "table_name" +// path_template: "{table_name=projects/*/instances/*/**}" +// } +// }; +// +// result: +// +// x-goog-request-params: +// table_name=projects/proj_foo/instances/instance_bar/table/table_baz +// +// Example 4 +// +// Extracting a single routing header key-value pair by matching a +// template syntax on (a part of) a single request field. +// +// annotation: +// +// option (google.api.routing) = { +// // Take just the project id from the `table_name` field. +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=projects/*}/**" +// } +// }; +// +// result: +// +// x-goog-request-params: routing_id=projects/proj_foo +// +// Example 5 +// +// Extracting a single routing header key-value pair by matching +// several conflictingly named path templates on (parts of) a single request +// field. The last template to match "wins" the conflict. +// +// annotation: +// +// option (google.api.routing) = { +// // If the `table_name` does not have instances information, +// // take just the project id for routing. +// // Otherwise take project + instance. +// +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=projects/*}/**" +// } +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=projects/*/instances/*}/**" +// } +// }; +// +// result: +// +// x-goog-request-params: +// routing_id=projects/proj_foo/instances/instance_bar +// +// Example 6 +// +// Extracting multiple routing header key-value pairs by matching +// several non-conflicting path templates on (parts of) a single request field. +// +// Sub-example 6a +// +// Make the templates strict, so that if the `table_name` does not +// have an instance information, nothing is sent. +// +// annotation: +// +// option (google.api.routing) = { +// // The routing code needs two keys instead of one composite +// // but works only for the tables with the "project-instance" name +// // syntax. +// +// routing_parameters { +// field: "table_name" +// path_template: "{project_id=projects/*}/instances/*/**" +// } +// routing_parameters { +// field: "table_name" +// path_template: "projects/*/{instance_id=instances/*}/**" +// } +// }; +// +// result: +// +// x-goog-request-params: +// project_id=projects/proj_foo&instance_id=instances/instance_bar +// +// Sub-example 6b +// +// Make the templates loose, so that if the `table_name` does not +// have an instance information, just the project id part is sent. +// +// annotation: +// +// option (google.api.routing) = { +// // The routing code wants two keys instead of one composite +// // but will work with just the `project_id` for tables without +// // an instance in the `table_name`. +// +// routing_parameters { +// field: "table_name" +// path_template: "{project_id=projects/*}/**" +// } +// routing_parameters { +// field: "table_name" +// path_template: "projects/*/{instance_id=instances/*}/**" +// } +// }; +// +// result (is the same as 6a for our example message because it has the instance +// information): +// +// x-goog-request-params: +// project_id=projects/proj_foo&instance_id=instances/instance_bar +// +// Example 7 +// +// Extracting multiple routing header key-value pairs by matching +// several path templates on multiple request fields. +// +// NB: note that here there is no way to specify sending nothing if one of the +// fields does not match its template. E.g. if the `table_name` is in the wrong +// format, the `project_id` will not be sent, but the `routing_id` will be. +// The backend routing code has to be aware of that and be prepared to not +// receive a full complement of keys if it expects multiple. +// +// annotation: +// +// option (google.api.routing) = { +// // The routing needs both `project_id` and `routing_id` +// // (from the `app_profile_id` field) for routing. +// +// routing_parameters { +// field: "table_name" +// path_template: "{project_id=projects/*}/**" +// } +// routing_parameters { +// field: "app_profile_id" +// path_template: "{routing_id=**}" +// } +// }; +// +// result: +// +// x-goog-request-params: +// project_id=projects/proj_foo&routing_id=profiles/prof_qux +// +// Example 8 +// +// Extracting a single routing header key-value pair by matching +// several conflictingly named path templates on several request fields. The +// last template to match "wins" the conflict. +// +// annotation: +// +// option (google.api.routing) = { +// // The `routing_id` can be a project id or a region id depending on +// // the table name format, but only if the `app_profile_id` is not set. +// // If `app_profile_id` is set it should be used instead. +// +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=projects/*}/**" +// } +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=regions/*}/**" +// } +// routing_parameters { +// field: "app_profile_id" +// path_template: "{routing_id=**}" +// } +// }; +// +// result: +// +// x-goog-request-params: routing_id=profiles/prof_qux +// +// Example 9 +// +// Bringing it all together. +// +// annotation: +// +// option (google.api.routing) = { +// // For routing both `table_location` and a `routing_id` are needed. +// // +// // table_location can be either an instance id or a region+zone id. +// // +// // For `routing_id`, take the value of `app_profile_id` +// // - If it's in the format `profiles/`, send +// // just the `` part. +// // - If it's any other literal, send it as is. +// // If the `app_profile_id` is empty, and the `table_name` starts with +// // the project_id, send that instead. +// +// routing_parameters { +// field: "table_name" +// path_template: "projects/*/{table_location=instances/*}/tables/*" +// } +// routing_parameters { +// field: "table_name" +// path_template: "{table_location=regions/*/zones/*}/tables/*" +// } +// routing_parameters { +// field: "table_name" +// path_template: "{routing_id=projects/*}/**" +// } +// routing_parameters { +// field: "app_profile_id" +// path_template: "{routing_id=**}" +// } +// routing_parameters { +// field: "app_profile_id" +// path_template: "profiles/{routing_id=*}" +// } +// }; +// +// result: +// +// x-goog-request-params: +// table_location=instances/instance_bar&routing_id=prof_qux +message RoutingRule { + // A collection of Routing Parameter specifications. + // **NOTE:** If multiple Routing Parameters describe the same key + // (via the `path_template` field or via the `field` field when + // `path_template` is not provided), "last one wins" rule + // determines which Parameter gets used. + // See the examples for more details. + repeated RoutingParameter routing_parameters = 2; +} + +// A projection from an input message to the GRPC or REST header. +message RoutingParameter { + // A request field to extract the header key-value pair from. + string field = 1; + + // A pattern matching the key-value field. Optional. + // If not specified, the whole field specified in the `field` field will be + // taken as value, and its name used as key. If specified, it MUST contain + // exactly one named segment (along with any number of unnamed segments) The + // pattern will be matched over the field specified in the `field` field, then + // if the match is successful: + // - the name of the single named segment will be used as a header name, + // - the match value of the segment will be used as a header value; + // if the match is NOT successful, nothing will be sent. + // + // Example: + // + // -- This is a field in the request message + // | that the header value will be extracted from. + // | + // | -- This is the key name in the + // | | routing header. + // V | + // field: "table_name" v + // path_template: "projects/*/{table_location=instances/*}/tables/*" + // ^ ^ + // | | + // In the {} brackets is the pattern that -- | + // specifies what to extract from the | + // field as a value to be sent. | + // | + // The string in the field must match the whole pattern -- + // before brackets, inside brackets, after brackets. + // + // When looking at this specific example, we can see that: + // - A key-value pair with the key `table_location` + // and the value matching `instances/*` should be added + // to the x-goog-request-params routing header. + // - The value is extracted from the request message's `table_name` field + // if it matches the full pattern specified: + // `projects/*/instances/*/tables/*`. + // + // **NB:** If the `path_template` field is not provided, the key name is + // equal to the field name, and the whole field should be sent as a value. + // This makes the pattern for the field and the value functionally equivalent + // to `**`, and the configuration + // + // { + // field: "table_name" + // } + // + // is a functionally equivalent shorthand to: + // + // { + // field: "table_name" + // path_template: "{table_name=**}" + // } + // + // See Example 1 for more details. + string path_template = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/routing_pb2.py b/ocr/.venv/Lib/site-packages/google/api/routing_pb2.py new file mode 100644 index 00000000..a24de600 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/routing_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/routing.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/routing.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto"G\n\x0bRoutingRule\x12\x38\n\x12routing_parameters\x18\x02 \x03(\x0b\x32\x1c.google.api.RoutingParameter"8\n\x10RoutingParameter\x12\r\n\x05\x66ield\x18\x01 \x01(\t\x12\x15\n\rpath_template\x18\x02 \x01(\t:K\n\x07routing\x12\x1e.google.protobuf.MethodOptions\x18\xb1\xca\xbc" \x01(\x0b\x32\x17.google.api.RoutingRuleBj\n\x0e\x63om.google.apiB\x0cRoutingProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.routing_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014RoutingProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["_ROUTINGRULE"]._serialized_start = 74 + _globals["_ROUTINGRULE"]._serialized_end = 145 + _globals["_ROUTINGPARAMETER"]._serialized_start = 147 + _globals["_ROUTINGPARAMETER"]._serialized_end = 203 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/routing_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/routing_pb2.pyi new file mode 100644 index 00000000..8d833254 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/routing_pb2.pyi @@ -0,0 +1,49 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor +ROUTING_FIELD_NUMBER: _ClassVar[int] +routing: _descriptor.FieldDescriptor + +class RoutingRule(_message.Message): + __slots__ = ("routing_parameters",) + ROUTING_PARAMETERS_FIELD_NUMBER: _ClassVar[int] + routing_parameters: _containers.RepeatedCompositeFieldContainer[RoutingParameter] + def __init__( + self, + routing_parameters: _Optional[ + _Iterable[_Union[RoutingParameter, _Mapping]] + ] = ..., + ) -> None: ... + +class RoutingParameter(_message.Message): + __slots__ = ("field", "path_template") + FIELD_FIELD_NUMBER: _ClassVar[int] + PATH_TEMPLATE_FIELD_NUMBER: _ClassVar[int] + field: str + path_template: str + def __init__( + self, field: _Optional[str] = ..., path_template: _Optional[str] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/service.proto b/ocr/.venv/Lib/site-packages/google/api/service.proto new file mode 100644 index 00000000..598b75a0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/service.proto @@ -0,0 +1,191 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/auth.proto"; +import "google/api/backend.proto"; +import "google/api/billing.proto"; +import "google/api/client.proto"; +import "google/api/context.proto"; +import "google/api/control.proto"; +import "google/api/documentation.proto"; +import "google/api/endpoint.proto"; +import "google/api/http.proto"; +import "google/api/log.proto"; +import "google/api/logging.proto"; +import "google/api/metric.proto"; +import "google/api/monitored_resource.proto"; +import "google/api/monitoring.proto"; +import "google/api/quota.proto"; +import "google/api/source_info.proto"; +import "google/api/system_parameter.proto"; +import "google/api/usage.proto"; +import "google/protobuf/api.proto"; +import "google/protobuf/type.proto"; +import "google/protobuf/wrappers.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "ServiceProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Service` is the root object of Google API service configuration (service +// config). It describes the basic information about a logical service, +// such as the service name and the user-facing title, and delegates other +// aspects to sub-sections. Each sub-section is either a proto message or a +// repeated proto message that configures a specific aspect, such as auth. +// For more information, see each proto message definition. +// +// Example: +// +// type: google.api.Service +// name: calendar.googleapis.com +// title: Google Calendar API +// apis: +// - name: google.calendar.v3.Calendar +// +// visibility: +// rules: +// - selector: "google.calendar.v3.*" +// restriction: PREVIEW +// backend: +// rules: +// - selector: "google.calendar.v3.*" +// address: calendar.example.com +// +// authentication: +// providers: +// - id: google_calendar_auth +// jwks_uri: https://www.googleapis.com/oauth2/v1/certs +// issuer: https://securetoken.google.com +// rules: +// - selector: "*" +// requirements: +// provider_id: google_calendar_auth +message Service { + // The service name, which is a DNS-like logical identifier for the + // service, such as `calendar.googleapis.com`. The service name + // typically goes through DNS verification to make sure the owner + // of the service also owns the DNS name. + string name = 1; + + // The product title for this service, it is the name displayed in Google + // Cloud Console. + string title = 2; + + // The Google project that owns this service. + string producer_project_id = 22; + + // A unique ID for a specific instance of this message, typically assigned + // by the client for tracking purpose. Must be no longer than 63 characters + // and only lower case letters, digits, '.', '_' and '-' are allowed. If + // empty, the server may choose to generate one instead. + string id = 33; + + // A list of API interfaces exported by this service. Only the `name` field + // of the [google.protobuf.Api][google.protobuf.Api] needs to be provided by + // the configuration author, as the remaining fields will be derived from the + // IDL during the normalization process. It is an error to specify an API + // interface here which cannot be resolved against the associated IDL files. + repeated google.protobuf.Api apis = 3; + + // A list of all proto message types included in this API service. + // Types referenced directly or indirectly by the `apis` are automatically + // included. Messages which are not referenced but shall be included, such as + // types used by the `google.protobuf.Any` type, should be listed here by + // name by the configuration author. Example: + // + // types: + // - name: google.protobuf.Int32 + repeated google.protobuf.Type types = 4; + + // A list of all enum types included in this API service. Enums referenced + // directly or indirectly by the `apis` are automatically included. Enums + // which are not referenced but shall be included should be listed here by + // name by the configuration author. Example: + // + // enums: + // - name: google.someapi.v1.SomeEnum + repeated google.protobuf.Enum enums = 5; + + // Additional API documentation. + Documentation documentation = 6; + + // API backend configuration. + Backend backend = 8; + + // HTTP configuration. + Http http = 9; + + // Quota configuration. + Quota quota = 10; + + // Auth configuration. + Authentication authentication = 11; + + // Context configuration. + Context context = 12; + + // Configuration controlling usage of this service. + Usage usage = 15; + + // Configuration for network endpoints. If this is empty, then an endpoint + // with the same name as the service is automatically generated to service all + // defined APIs. + repeated Endpoint endpoints = 18; + + // Configuration for the service control plane. + Control control = 21; + + // Defines the logs used by this service. + repeated LogDescriptor logs = 23; + + // Defines the metrics used by this service. + repeated MetricDescriptor metrics = 24; + + // Defines the monitored resources used by this service. This is required + // by the [Service.monitoring][google.api.Service.monitoring] and + // [Service.logging][google.api.Service.logging] configurations. + repeated MonitoredResourceDescriptor monitored_resources = 25; + + // Billing configuration. + Billing billing = 26; + + // Logging configuration. + Logging logging = 27; + + // Monitoring configuration. + Monitoring monitoring = 28; + + // System parameter configuration. + SystemParameters system_parameters = 29; + + // Output only. The source information for this configuration if available. + SourceInfo source_info = 37; + + // Settings for [Google Cloud Client + // libraries](https://cloud.google.com/apis/docs/cloud-client-libraries) + // generated from APIs defined as protocol buffers. + Publishing publishing = 45; + + // Obsolete. Do not use. + // + // This field has no semantic meaning. The service config compiler always + // sets this field to `3`. + google.protobuf.UInt32Value config_version = 20; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/service_pb2.py b/ocr/.venv/Lib/site-packages/google/api/service_pb2.py new file mode 100644 index 00000000..a1aa3deb --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/service_pb2.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/service.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import auth_pb2 as google_dot_api_dot_auth__pb2 +from google.api import backend_pb2 as google_dot_api_dot_backend__pb2 +from google.api import billing_pb2 as google_dot_api_dot_billing__pb2 +from google.api import client_pb2 as google_dot_api_dot_client__pb2 +from google.api import context_pb2 as google_dot_api_dot_context__pb2 +from google.api import control_pb2 as google_dot_api_dot_control__pb2 +from google.api import documentation_pb2 as google_dot_api_dot_documentation__pb2 +from google.api import endpoint_pb2 as google_dot_api_dot_endpoint__pb2 +from google.api import http_pb2 as google_dot_api_dot_http__pb2 +from google.api import log_pb2 as google_dot_api_dot_log__pb2 +from google.api import logging_pb2 as google_dot_api_dot_logging__pb2 +from google.api import metric_pb2 as google_dot_api_dot_metric__pb2 +from google.api import ( + monitored_resource_pb2 as google_dot_api_dot_monitored__resource__pb2, +) +from google.api import monitoring_pb2 as google_dot_api_dot_monitoring__pb2 +from google.api import quota_pb2 as google_dot_api_dot_quota__pb2 +from google.api import source_info_pb2 as google_dot_api_dot_source__info__pb2 +from google.api import system_parameter_pb2 as google_dot_api_dot_system__parameter__pb2 +from google.api import usage_pb2 as google_dot_api_dot_usage__pb2 +from google.protobuf import api_pb2 as google_dot_protobuf_dot_api__pb2 +from google.protobuf import type_pb2 as google_dot_protobuf_dot_type__pb2 +from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b"\n\x18google/api/service.proto\x12\ngoogle.api\x1a\x15google/api/auth.proto\x1a\x18google/api/backend.proto\x1a\x18google/api/billing.proto\x1a\x17google/api/client.proto\x1a\x18google/api/context.proto\x1a\x18google/api/control.proto\x1a\x1egoogle/api/documentation.proto\x1a\x19google/api/endpoint.proto\x1a\x15google/api/http.proto\x1a\x14google/api/log.proto\x1a\x18google/api/logging.proto\x1a\x17google/api/metric.proto\x1a#google/api/monitored_resource.proto\x1a\x1bgoogle/api/monitoring.proto\x1a\x16google/api/quota.proto\x1a\x1cgoogle/api/source_info.proto\x1a!google/api/system_parameter.proto\x1a\x16google/api/usage.proto\x1a\x19google/protobuf/api.proto\x1a\x1agoogle/protobuf/type.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x82\x08\n\x07Service\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05title\x18\x02 \x01(\t\x12\x1b\n\x13producer_project_id\x18\x16 \x01(\t\x12\n\n\x02id\x18! \x01(\t\x12\"\n\x04\x61pis\x18\x03 \x03(\x0b\x32\x14.google.protobuf.Api\x12$\n\x05types\x18\x04 \x03(\x0b\x32\x15.google.protobuf.Type\x12$\n\x05\x65nums\x18\x05 \x03(\x0b\x32\x15.google.protobuf.Enum\x12\x30\n\rdocumentation\x18\x06 \x01(\x0b\x32\x19.google.api.Documentation\x12$\n\x07\x62\x61\x63kend\x18\x08 \x01(\x0b\x32\x13.google.api.Backend\x12\x1e\n\x04http\x18\t \x01(\x0b\x32\x10.google.api.Http\x12 \n\x05quota\x18\n \x01(\x0b\x32\x11.google.api.Quota\x12\x32\n\x0e\x61uthentication\x18\x0b \x01(\x0b\x32\x1a.google.api.Authentication\x12$\n\x07\x63ontext\x18\x0c \x01(\x0b\x32\x13.google.api.Context\x12 \n\x05usage\x18\x0f \x01(\x0b\x32\x11.google.api.Usage\x12'\n\tendpoints\x18\x12 \x03(\x0b\x32\x14.google.api.Endpoint\x12$\n\x07\x63ontrol\x18\x15 \x01(\x0b\x32\x13.google.api.Control\x12'\n\x04logs\x18\x17 \x03(\x0b\x32\x19.google.api.LogDescriptor\x12-\n\x07metrics\x18\x18 \x03(\x0b\x32\x1c.google.api.MetricDescriptor\x12\x44\n\x13monitored_resources\x18\x19 \x03(\x0b\x32'.google.api.MonitoredResourceDescriptor\x12$\n\x07\x62illing\x18\x1a \x01(\x0b\x32\x13.google.api.Billing\x12$\n\x07logging\x18\x1b \x01(\x0b\x32\x13.google.api.Logging\x12*\n\nmonitoring\x18\x1c \x01(\x0b\x32\x16.google.api.Monitoring\x12\x37\n\x11system_parameters\x18\x1d \x01(\x0b\x32\x1c.google.api.SystemParameters\x12+\n\x0bsource_info\x18% \x01(\x0b\x32\x16.google.api.SourceInfo\x12*\n\npublishing\x18- \x01(\x0b\x32\x16.google.api.Publishing\x12\x34\n\x0e\x63onfig_version\x18\x14 \x01(\x0b\x32\x1c.google.protobuf.UInt32ValueBn\n\x0e\x63om.google.apiB\x0cServiceProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3" +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.service_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014ServiceProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_SERVICE"]._serialized_start = 614 + _globals["_SERVICE"]._serialized_end = 1640 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/service_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/service_pb2.pyi new file mode 100644 index 00000000..46478065 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/service_pb2.pyi @@ -0,0 +1,169 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import auth_pb2 as _auth_pb2 +from google.api import backend_pb2 as _backend_pb2 +from google.api import billing_pb2 as _billing_pb2 +from google.api import client_pb2 as _client_pb2 +from google.api import context_pb2 as _context_pb2 +from google.api import control_pb2 as _control_pb2 +from google.api import documentation_pb2 as _documentation_pb2 +from google.api import endpoint_pb2 as _endpoint_pb2 +from google.api import http_pb2 as _http_pb2 +from google.api import log_pb2 as _log_pb2 +from google.api import logging_pb2 as _logging_pb2 +from google.api import metric_pb2 as _metric_pb2 +from google.api import monitored_resource_pb2 as _monitored_resource_pb2 +from google.api import monitoring_pb2 as _monitoring_pb2 +from google.api import quota_pb2 as _quota_pb2 +from google.api import source_info_pb2 as _source_info_pb2 +from google.api import system_parameter_pb2 as _system_parameter_pb2 +from google.api import usage_pb2 as _usage_pb2 +from google.protobuf import api_pb2 as _api_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import type_pb2 as _type_pb2 +from google.protobuf import wrappers_pb2 as _wrappers_pb2 +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Service(_message.Message): + __slots__ = ( + "name", + "title", + "producer_project_id", + "id", + "apis", + "types", + "enums", + "documentation", + "backend", + "http", + "quota", + "authentication", + "context", + "usage", + "endpoints", + "control", + "logs", + "metrics", + "monitored_resources", + "billing", + "logging", + "monitoring", + "system_parameters", + "source_info", + "publishing", + "config_version", + ) + NAME_FIELD_NUMBER: _ClassVar[int] + TITLE_FIELD_NUMBER: _ClassVar[int] + PRODUCER_PROJECT_ID_FIELD_NUMBER: _ClassVar[int] + ID_FIELD_NUMBER: _ClassVar[int] + APIS_FIELD_NUMBER: _ClassVar[int] + TYPES_FIELD_NUMBER: _ClassVar[int] + ENUMS_FIELD_NUMBER: _ClassVar[int] + DOCUMENTATION_FIELD_NUMBER: _ClassVar[int] + BACKEND_FIELD_NUMBER: _ClassVar[int] + HTTP_FIELD_NUMBER: _ClassVar[int] + QUOTA_FIELD_NUMBER: _ClassVar[int] + AUTHENTICATION_FIELD_NUMBER: _ClassVar[int] + CONTEXT_FIELD_NUMBER: _ClassVar[int] + USAGE_FIELD_NUMBER: _ClassVar[int] + ENDPOINTS_FIELD_NUMBER: _ClassVar[int] + CONTROL_FIELD_NUMBER: _ClassVar[int] + LOGS_FIELD_NUMBER: _ClassVar[int] + METRICS_FIELD_NUMBER: _ClassVar[int] + MONITORED_RESOURCES_FIELD_NUMBER: _ClassVar[int] + BILLING_FIELD_NUMBER: _ClassVar[int] + LOGGING_FIELD_NUMBER: _ClassVar[int] + MONITORING_FIELD_NUMBER: _ClassVar[int] + SYSTEM_PARAMETERS_FIELD_NUMBER: _ClassVar[int] + SOURCE_INFO_FIELD_NUMBER: _ClassVar[int] + PUBLISHING_FIELD_NUMBER: _ClassVar[int] + CONFIG_VERSION_FIELD_NUMBER: _ClassVar[int] + name: str + title: str + producer_project_id: str + id: str + apis: _containers.RepeatedCompositeFieldContainer[_api_pb2.Api] + types: _containers.RepeatedCompositeFieldContainer[_type_pb2.Type] + enums: _containers.RepeatedCompositeFieldContainer[_type_pb2.Enum] + documentation: _documentation_pb2.Documentation + backend: _backend_pb2.Backend + http: _http_pb2.Http + quota: _quota_pb2.Quota + authentication: _auth_pb2.Authentication + context: _context_pb2.Context + usage: _usage_pb2.Usage + endpoints: _containers.RepeatedCompositeFieldContainer[_endpoint_pb2.Endpoint] + control: _control_pb2.Control + logs: _containers.RepeatedCompositeFieldContainer[_log_pb2.LogDescriptor] + metrics: _containers.RepeatedCompositeFieldContainer[_metric_pb2.MetricDescriptor] + monitored_resources: _containers.RepeatedCompositeFieldContainer[ + _monitored_resource_pb2.MonitoredResourceDescriptor + ] + billing: _billing_pb2.Billing + logging: _logging_pb2.Logging + monitoring: _monitoring_pb2.Monitoring + system_parameters: _system_parameter_pb2.SystemParameters + source_info: _source_info_pb2.SourceInfo + publishing: _client_pb2.Publishing + config_version: _wrappers_pb2.UInt32Value + def __init__( + self, + name: _Optional[str] = ..., + title: _Optional[str] = ..., + producer_project_id: _Optional[str] = ..., + id: _Optional[str] = ..., + apis: _Optional[_Iterable[_Union[_api_pb2.Api, _Mapping]]] = ..., + types: _Optional[_Iterable[_Union[_type_pb2.Type, _Mapping]]] = ..., + enums: _Optional[_Iterable[_Union[_type_pb2.Enum, _Mapping]]] = ..., + documentation: _Optional[ + _Union[_documentation_pb2.Documentation, _Mapping] + ] = ..., + backend: _Optional[_Union[_backend_pb2.Backend, _Mapping]] = ..., + http: _Optional[_Union[_http_pb2.Http, _Mapping]] = ..., + quota: _Optional[_Union[_quota_pb2.Quota, _Mapping]] = ..., + authentication: _Optional[_Union[_auth_pb2.Authentication, _Mapping]] = ..., + context: _Optional[_Union[_context_pb2.Context, _Mapping]] = ..., + usage: _Optional[_Union[_usage_pb2.Usage, _Mapping]] = ..., + endpoints: _Optional[_Iterable[_Union[_endpoint_pb2.Endpoint, _Mapping]]] = ..., + control: _Optional[_Union[_control_pb2.Control, _Mapping]] = ..., + logs: _Optional[_Iterable[_Union[_log_pb2.LogDescriptor, _Mapping]]] = ..., + metrics: _Optional[ + _Iterable[_Union[_metric_pb2.MetricDescriptor, _Mapping]] + ] = ..., + monitored_resources: _Optional[ + _Iterable[ + _Union[_monitored_resource_pb2.MonitoredResourceDescriptor, _Mapping] + ] + ] = ..., + billing: _Optional[_Union[_billing_pb2.Billing, _Mapping]] = ..., + logging: _Optional[_Union[_logging_pb2.Logging, _Mapping]] = ..., + monitoring: _Optional[_Union[_monitoring_pb2.Monitoring, _Mapping]] = ..., + system_parameters: _Optional[ + _Union[_system_parameter_pb2.SystemParameters, _Mapping] + ] = ..., + source_info: _Optional[_Union[_source_info_pb2.SourceInfo, _Mapping]] = ..., + publishing: _Optional[_Union[_client_pb2.Publishing, _Mapping]] = ..., + config_version: _Optional[_Union[_wrappers_pb2.UInt32Value, _Mapping]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/source_info.proto b/ocr/.venv/Lib/site-packages/google/api/source_info.proto new file mode 100644 index 00000000..3257b5a7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/source_info.proto @@ -0,0 +1,31 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/any.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "SourceInfoProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Source information used to create a Service Config +message SourceInfo { + // All files used during config generation. + repeated google.protobuf.Any source_files = 1; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.py b/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.py new file mode 100644 index 00000000..e6f4faf0 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/source_info.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1cgoogle/api/source_info.proto\x12\ngoogle.api\x1a\x19google/protobuf/any.proto"8\n\nSourceInfo\x12*\n\x0csource_files\x18\x01 \x03(\x0b\x32\x14.google.protobuf.AnyBq\n\x0e\x63om.google.apiB\x0fSourceInfoProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.source_info_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\017SourceInfoProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_SOURCEINFO"]._serialized_start = 71 + _globals["_SOURCEINFO"]._serialized_end = 127 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.pyi new file mode 100644 index 00000000..3fe71d3e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/source_info_pb2.pyi @@ -0,0 +1,34 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import any_pb2 as _any_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class SourceInfo(_message.Message): + __slots__ = ("source_files",) + SOURCE_FILES_FIELD_NUMBER: _ClassVar[int] + source_files: _containers.RepeatedCompositeFieldContainer[_any_pb2.Any] + def __init__( + self, source_files: _Optional[_Iterable[_Union[_any_pb2.Any, _Mapping]]] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/system_parameter.proto b/ocr/.venv/Lib/site-packages/google/api/system_parameter.proto new file mode 100644 index 00000000..15b93f91 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/system_parameter.proto @@ -0,0 +1,96 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "SystemParameterProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// ### System parameter configuration +// +// A system parameter is a special kind of parameter defined by the API +// system, not by an individual API. It is typically mapped to an HTTP header +// and/or a URL query parameter. This configuration specifies which methods +// change the names of the system parameters. +message SystemParameters { + // Define system parameters. + // + // The parameters defined here will override the default parameters + // implemented by the system. If this field is missing from the service + // config, default system parameters will be used. Default system parameters + // and names is implementation-dependent. + // + // Example: define api key for all methods + // + // system_parameters + // rules: + // - selector: "*" + // parameters: + // - name: api_key + // url_query_parameter: api_key + // + // + // Example: define 2 api key names for a specific method. + // + // system_parameters + // rules: + // - selector: "/ListShelves" + // parameters: + // - name: api_key + // http_header: Api-Key1 + // - name: api_key + // http_header: Api-Key2 + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated SystemParameterRule rules = 1; +} + +// Define a system parameter rule mapping system parameter definitions to +// methods. +message SystemParameterRule { + // Selects the methods to which this rule applies. Use '*' to indicate all + // methods in all APIs. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // Define parameters. Multiple names may be defined for a parameter. + // For a given method call, only one of them should be used. If multiple + // names are used the behavior is implementation-dependent. + // If none of the specified names are present the behavior is + // parameter-dependent. + repeated SystemParameter parameters = 2; +} + +// Define a parameter's name and location. The parameter may be passed as either +// an HTTP header or a URL query parameter, and if both are passed the behavior +// is implementation-dependent. +message SystemParameter { + // Define the name of the parameter, such as "api_key" . It is case sensitive. + string name = 1; + + // Define the HTTP header name to use for the parameter. It is case + // insensitive. + string http_header = 2; + + // Define the URL query parameter name to use for the parameter. It is case + // sensitive. + string url_query_parameter = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.py b/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.py new file mode 100644 index 00000000..527797b3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/system_parameter.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n!google/api/system_parameter.proto\x12\ngoogle.api"B\n\x10SystemParameters\x12.\n\x05rules\x18\x01 \x03(\x0b\x32\x1f.google.api.SystemParameterRule"X\n\x13SystemParameterRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12/\n\nparameters\x18\x02 \x03(\x0b\x32\x1b.google.api.SystemParameter"Q\n\x0fSystemParameter\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0bhttp_header\x18\x02 \x01(\t\x12\x1b\n\x13url_query_parameter\x18\x03 \x01(\tBv\n\x0e\x63om.google.apiB\x14SystemParameterProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.system_parameter_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\024SystemParameterProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_SYSTEMPARAMETERS"]._serialized_start = 49 + _globals["_SYSTEMPARAMETERS"]._serialized_end = 115 + _globals["_SYSTEMPARAMETERRULE"]._serialized_start = 117 + _globals["_SYSTEMPARAMETERRULE"]._serialized_end = 205 + _globals["_SYSTEMPARAMETER"]._serialized_start = 207 + _globals["_SYSTEMPARAMETER"]._serialized_end = 288 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.pyi new file mode 100644 index 00000000..ef8e92a2 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/system_parameter_pb2.pyi @@ -0,0 +1,60 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class SystemParameters(_message.Message): + __slots__ = ("rules",) + RULES_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[SystemParameterRule] + def __init__( + self, rules: _Optional[_Iterable[_Union[SystemParameterRule, _Mapping]]] = ... + ) -> None: ... + +class SystemParameterRule(_message.Message): + __slots__ = ("selector", "parameters") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + PARAMETERS_FIELD_NUMBER: _ClassVar[int] + selector: str + parameters: _containers.RepeatedCompositeFieldContainer[SystemParameter] + def __init__( + self, + selector: _Optional[str] = ..., + parameters: _Optional[_Iterable[_Union[SystemParameter, _Mapping]]] = ..., + ) -> None: ... + +class SystemParameter(_message.Message): + __slots__ = ("name", "http_header", "url_query_parameter") + NAME_FIELD_NUMBER: _ClassVar[int] + HTTP_HEADER_FIELD_NUMBER: _ClassVar[int] + URL_QUERY_PARAMETER_FIELD_NUMBER: _ClassVar[int] + name: str + http_header: str + url_query_parameter: str + def __init__( + self, + name: _Optional[str] = ..., + http_header: _Optional[str] = ..., + url_query_parameter: _Optional[str] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/usage.proto b/ocr/.venv/Lib/site-packages/google/api/usage.proto new file mode 100644 index 00000000..4b7aa5fd --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/usage.proto @@ -0,0 +1,96 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "UsageProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Configuration controlling usage of a service. +message Usage { + // Requirements that must be satisfied before a consumer project can use the + // service. Each requirement is of the form /; + // for example 'serviceusage.googleapis.com/billing-enabled'. + // + // For Google APIs, a Terms of Service requirement must be included here. + // Google Cloud APIs must include "serviceusage.googleapis.com/tos/cloud". + // Other Google APIs should include + // "serviceusage.googleapis.com/tos/universal". Additional ToS can be + // included based on the business needs. + repeated string requirements = 1; + + // A list of usage rules that apply to individual API methods. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated UsageRule rules = 6; + + // The full resource name of a channel used for sending notifications to the + // service producer. + // + // Google Service Management currently only supports + // [Google Cloud Pub/Sub](https://cloud.google.com/pubsub) as a notification + // channel. To use Google Cloud Pub/Sub as the channel, this must be the name + // of a Cloud Pub/Sub topic that uses the Cloud Pub/Sub topic name format + // documented in https://cloud.google.com/pubsub/docs/overview. + string producer_notification_channel = 7; +} + +// Usage configuration rules for the service. +// +// NOTE: Under development. +// +// +// Use this rule to configure unregistered calls for the service. Unregistered +// calls are calls that do not contain consumer project identity. +// (Example: calls that do not contain an API key). +// By default, API methods do not allow unregistered calls, and each method call +// must be identified by a consumer project identity. Use this rule to +// allow/disallow unregistered calls. +// +// Example of an API that wants to allow unregistered calls for entire service. +// +// usage: +// rules: +// - selector: "*" +// allow_unregistered_calls: true +// +// Example of a method that wants to allow unregistered calls. +// +// usage: +// rules: +// - selector: "google.example.library.v1.LibraryService.CreateBook" +// allow_unregistered_calls: true +message UsageRule { + // Selects the methods to which this rule applies. Use '*' to indicate all + // methods in all APIs. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // If true, the selected method allows unregistered calls, e.g. calls + // that don't identify any user or application. + bool allow_unregistered_calls = 2; + + // If true, the selected method should skip service control and the control + // plane features, such as quota and billing, will not be available. + // This flag is used by Google Cloud Endpoints to bypass checks for internal + // methods, such as service health check methods. + bool skip_service_control = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/usage_pb2.py b/ocr/.venv/Lib/site-packages/google/api/usage_pb2.py new file mode 100644 index 00000000..4c33cec7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/usage_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/usage.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x16google/api/usage.proto\x12\ngoogle.api"j\n\x05Usage\x12\x14\n\x0crequirements\x18\x01 \x03(\t\x12$\n\x05rules\x18\x06 \x03(\x0b\x32\x15.google.api.UsageRule\x12%\n\x1dproducer_notification_channel\x18\x07 \x01(\t"]\n\tUsageRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12 \n\x18\x61llow_unregistered_calls\x18\x02 \x01(\x08\x12\x1c\n\x14skip_service_control\x18\x03 \x01(\x08\x42l\n\x0e\x63om.google.apiB\nUsageProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.usage_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\nUsageProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_USAGE"]._serialized_start = 38 + _globals["_USAGE"]._serialized_end = 144 + _globals["_USAGERULE"]._serialized_start = 146 + _globals["_USAGERULE"]._serialized_end = 239 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/usage_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/usage_pb2.pyi new file mode 100644 index 00000000..071daaf6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/usage_pb2.pyi @@ -0,0 +1,55 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Usage(_message.Message): + __slots__ = ("requirements", "rules", "producer_notification_channel") + REQUIREMENTS_FIELD_NUMBER: _ClassVar[int] + RULES_FIELD_NUMBER: _ClassVar[int] + PRODUCER_NOTIFICATION_CHANNEL_FIELD_NUMBER: _ClassVar[int] + requirements: _containers.RepeatedScalarFieldContainer[str] + rules: _containers.RepeatedCompositeFieldContainer[UsageRule] + producer_notification_channel: str + def __init__( + self, + requirements: _Optional[_Iterable[str]] = ..., + rules: _Optional[_Iterable[_Union[UsageRule, _Mapping]]] = ..., + producer_notification_channel: _Optional[str] = ..., + ) -> None: ... + +class UsageRule(_message.Message): + __slots__ = ("selector", "allow_unregistered_calls", "skip_service_control") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + ALLOW_UNREGISTERED_CALLS_FIELD_NUMBER: _ClassVar[int] + SKIP_SERVICE_CONTROL_FIELD_NUMBER: _ClassVar[int] + selector: str + allow_unregistered_calls: bool + skip_service_control: bool + def __init__( + self, + selector: _Optional[str] = ..., + allow_unregistered_calls: bool = ..., + skip_service_control: bool = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/visibility.proto b/ocr/.venv/Lib/site-packages/google/api/visibility.proto new file mode 100644 index 00000000..0ab5bdc1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/visibility.proto @@ -0,0 +1,112 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/visibility;visibility"; +option java_multiple_files = true; +option java_outer_classname = "VisibilityProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.EnumOptions { + // See `VisibilityRule`. + google.api.VisibilityRule enum_visibility = 72295727; +} + +extend google.protobuf.EnumValueOptions { + // See `VisibilityRule`. + google.api.VisibilityRule value_visibility = 72295727; +} + +extend google.protobuf.FieldOptions { + // See `VisibilityRule`. + google.api.VisibilityRule field_visibility = 72295727; +} + +extend google.protobuf.MessageOptions { + // See `VisibilityRule`. + google.api.VisibilityRule message_visibility = 72295727; +} + +extend google.protobuf.MethodOptions { + // See `VisibilityRule`. + google.api.VisibilityRule method_visibility = 72295727; +} + +extend google.protobuf.ServiceOptions { + // See `VisibilityRule`. + google.api.VisibilityRule api_visibility = 72295727; +} + +// `Visibility` restricts service consumer's access to service elements, +// such as whether an application can call a visibility-restricted method. +// The restriction is expressed by applying visibility labels on service +// elements. The visibility labels are elsewhere linked to service consumers. +// +// A service can define multiple visibility labels, but a service consumer +// should be granted at most one visibility label. Multiple visibility +// labels for a single service consumer are not supported. +// +// If an element and all its parents have no visibility label, its visibility +// is unconditionally granted. +// +// Example: +// +// visibility: +// rules: +// - selector: google.calendar.Calendar.EnhancedSearch +// restriction: PREVIEW +// - selector: google.calendar.Calendar.Delegate +// restriction: INTERNAL +// +// Here, all methods are publicly visible except for the restricted methods +// EnhancedSearch and Delegate. +message Visibility { + // A list of visibility rules that apply to individual API elements. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated VisibilityRule rules = 1; +} + +// A visibility rule provides visibility configuration for an individual API +// element. +message VisibilityRule { + // Selects methods, messages, fields, enums, etc. to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // A comma-separated list of visibility labels that apply to the `selector`. + // Any of the listed labels can be used to grant the visibility. + // + // If a rule has multiple labels, removing one of the labels but not all of + // them can break clients. + // + // Example: + // + // visibility: + // rules: + // - selector: google.calendar.Calendar.EnhancedSearch + // restriction: INTERNAL, PREVIEW + // + // Removing INTERNAL from this restriction will break clients that rely on + // this method and only had access to it through INTERNAL. + string restriction = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.py b/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.py new file mode 100644 index 00000000..df3295ae --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/visibility.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1bgoogle/api/visibility.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto"7\n\nVisibility\x12)\n\x05rules\x18\x01 \x03(\x0b\x32\x1a.google.api.VisibilityRule"7\n\x0eVisibilityRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\x13\n\x0brestriction\x18\x02 \x01(\t:T\n\x0f\x65num_visibility\x12\x1c.google.protobuf.EnumOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRule:Z\n\x10value_visibility\x12!.google.protobuf.EnumValueOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRule:V\n\x10\x66ield_visibility\x12\x1d.google.protobuf.FieldOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRule:Z\n\x12message_visibility\x12\x1f.google.protobuf.MessageOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRule:X\n\x11method_visibility\x12\x1e.google.protobuf.MethodOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRule:V\n\x0e\x61pi_visibility\x12\x1f.google.protobuf.ServiceOptions\x18\xaf\xca\xbc" \x01(\x0b\x32\x1a.google.api.VisibilityRuleBk\n\x0e\x63om.google.apiB\x0fVisibilityProtoP\x01Z?google.golang.org/genproto/googleapis/api/visibility;visibility\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.visibility_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\017VisibilityProtoP\001Z?google.golang.org/genproto/googleapis/api/visibility;visibility\242\002\004GAPI" + _globals["_VISIBILITY"]._serialized_start = 77 + _globals["_VISIBILITY"]._serialized_end = 132 + _globals["_VISIBILITYRULE"]._serialized_start = 134 + _globals["_VISIBILITYRULE"]._serialized_end = 189 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.pyi new file mode 100644 index 00000000..8d8d4912 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/visibility_pb2.pyi @@ -0,0 +1,56 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor +ENUM_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +enum_visibility: _descriptor.FieldDescriptor +VALUE_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +value_visibility: _descriptor.FieldDescriptor +FIELD_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +field_visibility: _descriptor.FieldDescriptor +MESSAGE_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +message_visibility: _descriptor.FieldDescriptor +METHOD_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +method_visibility: _descriptor.FieldDescriptor +API_VISIBILITY_FIELD_NUMBER: _ClassVar[int] +api_visibility: _descriptor.FieldDescriptor + +class Visibility(_message.Message): + __slots__ = ("rules",) + RULES_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[VisibilityRule] + def __init__( + self, rules: _Optional[_Iterable[_Union[VisibilityRule, _Mapping]]] = ... + ) -> None: ... + +class VisibilityRule(_message.Message): + __slots__ = ("selector", "restriction") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + RESTRICTION_FIELD_NUMBER: _ClassVar[int] + selector: str + restriction: str + def __init__( + self, selector: _Optional[str] = ..., restriction: _Optional[str] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__init__.py b/ocr/.venv/Lib/site-packages/google/api_core/__init__.py new file mode 100644 index 00000000..85811a15 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/__init__.py @@ -0,0 +1,40 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Google API Core. + +This package contains common code and utilities used by Google client libraries. +""" + +from google.api_core import _python_package_support +from google.api_core import _python_version_support +from google.api_core import version as api_core_version + +__version__ = api_core_version.__version__ + +# NOTE: Until dependent artifacts require this version of +# google.api_core, the functionality below must be made available +# manually in those artifacts. + +# expose dependency checks for external callers +check_python_version = _python_version_support.check_python_version +check_dependency_versions = _python_package_support.check_dependency_versions +warn_deprecation_for_versions_less_than = ( + _python_package_support.warn_deprecation_for_versions_less_than +) +DependencyConstraint = _python_package_support.DependencyConstraint + +# perform version checks against api_core, and emit warnings if needed +check_python_version(package="google.api_core") +check_dependency_versions("google.api_core") diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a0181c5363177eaceb6bb94b94e57ca29a20d932 GIT binary patch literal 676 zcmZ8dO^XyU5bgB$_Rgxvf_lqM=3uX9k;P>eWIS-DTKl{t=72)LtZdW15fCZAsuqEq| zg{0>Z@`y!OJVqX~ganW@DN7-0GL}KuEvn_78Zs^Gl=oV9wp9>x}icr7c*eFyx<<4NsSM7gw#8b*H$% zRxvFboL)~4_ZjEX2+rC6aW=&AwjZjE5!k)afDg|5Lq1YWKNd?6tFhG~ggv@`mC%8f zpv7*?aP0Ay+G>u91yTFH`On7Q$h-yTxL?+q9iQK1&y057;$Z!cz~+5xJ^cPOdscmL zID)Ea!01JF4sPX5SG~cqAM3US&(AI@BWzV}L2s*9YF;_z;mI%vS6vV3Wc=d^=SnNj ndD-pu`SZ1rn-)$97IO~~;yaUMLM9{)(<~)%82(A4BASrD{Or%O literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/_python_package_support.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/_python_package_support.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb876a2e0cf1f4122220b74c0cd72fe5865ed41a GIT binary patch literal 6840 zcmb7J&2!tv6$e0&qG(B$WXB B-U>EG81u=A+H1nM_q#bv0>akL}nKjyfPjEGft! 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a6ec815bb16615d7447590bda9c6d407cf60623 GIT binary patch literal 6515 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_base.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/bidi_base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f0ea07f93ec1cbd9510734fbbf10ea89f187ef4 GIT binary patch literal 3140 zcmaJ@TW=dh6y9Asj^kXKhPHqxVk9J5SB;BMpCW`v(-sxcP&KWP9EZ(#XY6dV-gReY z6KsVSn%}^4D3ru1S9qt6@LqXMSCn>~dU<&F9@mlu5!ae^62;o#x(JmFOqj$x zV%jLldtuyVPoHeD0~z(D(v1KTXRfiX@9|hVknS`+;WkU+k|>GtsoN}zIZ-)vnsZ`a zRB^9}1yRF&URK4TSUPoHxy=R4m&J;m*MtXrtJ&hcP=rtW0m0;dK+h&?&ms^u ze=qt*t;TRYI|w!F@xEqVm~=z4b{a-zJ&aix8>u=xknH#%3=UYTrDmKd`7)K-un=## zfs1%77`L*N)O~1|lXsAj;EYa!LuuBd@KCaiP8tUr`&!0g-<};kfRm5*8y1fh23VZ+ z5+zA-CyiL28>ozJSfV8EuB$YTDHMc34|+XmR2Ymxq}k0pR@w?XK9CS(>%$TR^)4mf4+;R&NZ{dVd1A8{t%^*=Kl^{iOXK$*m z-mtRB_1bV{eAN%w&F3++?{+b7?AR2`$H!@8!Yv*}ydBBg#8Wr2Tp zckebkzkRPjHxgfXotb2;nXnB)8HqeQ7y>v-iLisJdEy12_t5&OK%*^%7VtZE{zpCpBK)KbLMW>tIe7}&Y{dsGn^<0A|TQ6Qn)NSj&)Q2YNw|?x)_$P>!#@~F@N&?kt9Le~o z^+VWhY0%4hAF7d3y46jRZY1yUe(0lG<()Q2&?nw&^aokhx3>HK4RYuThKftS+GreJ znc~bwu{m(DvAAengyf$p76!fHmHV4p_lDQEtlz*F)^nDAMm3-t!_W6;{JKxcN$e8# zkUc#K3KfkrH~U~aF^?vX9uO&D_0?0c8Ef#Xbhzv>2EFsd9F|ZN8Y>n7&H)qF( zsY#Utk!&Y1-6pR$<3aHlwK`LfB$pU)EE}~ef003IB;y?b%ej$WqZ?3|5H>WB96pSB zOInAA5pWcZfD{zhL)fkdanXpVK~ZPjn1X6Kd)AV?KNK?PPIA!J-YaOz<}t+Wx~Jw4 z|E$9MC@_H~rCC-jtUs4<*<~(-FW}B`x!=Wpn|`Y+!%wHv@2#CPDM;xzPQj0`pcK6C z>{WjCKyIif*LhhY`cjmvb=ShImvVTOj*YCkj92FoF8fJr!C9F1u|rod)D~)P`M+}o zGQIPiHLjKjfH(Z&nMy(59oy|FN;XA`8YZ8xfi#WbXZxY{IX(i9$vdZ10%Ls7CM2Op=sHu4xN%Tl6f zhPr|HQ^(2XUg~ftF9f+td4fbOdVqdjV6Byg*Qc?b-&psyx9f{U!7=Yi-$&2zdx=OR znlJfiE<75&nfDRB!1vW6gj<$VYc#t;;Hvm8z^AkssH^nsLmDQYv@=VNMASrXnod=n tvRk`WU8t6;tKL%0^~x)*q8(HMpWtp67s<)0U*{;lq3xRdQ(jst{SPinX+!`3 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37e69550740e50b003943e074f019406e356bd96 GIT binary patch literal 3239 zcmai0O>f&q5M5FdMeD5yLT31BGKab%UrXXo_6Pt577n zT-lMWT-uy_%sByi>7jp!*Pi+d3KRv}nI&mbu7gt0h??D?=bQ+!PL^8milk01_-OM1lBT;0=p8vK?#eNyU`G}M*7@}$x;G{Uqu)wiT)GGn~d ztFaQRyZTW7fUt&JxlhiP)cR(x$(k^}{FM0hGGQyTyBfidtM`_l5nnqckBDoy)mOx= zvelnTy=$)igtW}F-@amA$V5bkfuNxXPPohc5p_Jyd`YWM9R;CE`Z?f)n#kLWaF zE|md|nC})BPbnh=5UQ+Msa1MAlA^T(be5KG$V7=|SJV_NDPJJhN<#I;R%3#VpiL8`C z2vl6KV<#bJeJI^LM*z#pO3Lc?<*4@s8}b)Oe+(FB(q!f_vt1@SNzw6WVMAm$E{UdL z2mlo8FzZ$}jBrOaL+aZThB1b=kWlNeGVpTmFt-QH2__ThiC{NrqMJbNf{k_{+PJK} z`>;E)$ARcfxDPT-SdsmLMe^NQ-lD)|tWeb=JbS=A*fTYwiahHP=odaN3(+y(!3tNA zWA{JUdGZaF!uF#u5HgPjP6ZhZrbA0ieaR<<8oG=;)_gXbrn56g5_@~jQlTs3yAI!N z_(q?Bm}_%lk+}|1o0mZ9^D@ZNyaKX3H$YbARglKq1X*fHR_MY3_5=QA&Z_vY4jgMvYtY-XVTi*?FWwN14sOm{?~lakGN#* z&~}~!!=rxE$+}sv-83j9b0?g|re$%TOUv4V{i0P6M%~czPfa^}Z(H>TJmfmrY)6Bc z*@NjS!&jy3HN3dmOGw%nZW>cf)aP)Exko?)HyHIx#&ExZk#*2iQVpE7p!ozeMmo2e zj+E3$2S&_PQ&yULpjk>a6{UFqnp(1YY`Aq!z=!HD+Rxe>^DUC1adzi`$*J&@TLz{v zJ%-a_LB>lwebfG?K#IxUS@S&4`Ad3sbL6!XZgtNWIR=9_kY(NTBG*uhMCqOv=>ppK zNA`>Ed6t{3oMB*1Q4y>Zj~CE?JaQbbdww-DaXcJ=OYbPomsGK;wUn?;(NIw?ry-Ir zHj>_i+;F)A+=wd(P}tJNGK}~1sjUnp0yz^mWnkqH9fB&NAj*}RZfd5Ea`6rSt?6g$ z1#T^vfQo_bv8BTHHOra=?$pEghGqRQwY_wt3N8i?sO#4Lv+SZLkc{y)3ocgH_Tz({ z3;i|Fi!~HjT?K(L2)MtITkwt6L71eh={I$)_^JKbxS?jXu8R+0PHcvrEfK8Pkh2il zt-w;~tt2(q$?_^npiK&1)&EUgTeq@wTbB3;H6;K!Ua>6OhqF{2DUoIM%1ERnqWbOx zyYP+>fryP@FlLTa{uClnfvJ?3_Y=&%#8QoL2V>bZ8d^g)bwgX#b(NEbW@`FBH_HD4 DT~xgY literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27308cd150fab6577ca742e2f43c2079c85ffdd7 GIT binary patch literal 4087 zcmc&%-EQ2*73SZrsMYGnisB%F(@fkJ^%k;nQJ@z_P*}EPMX0h0ETw4)6*R?}T~X$e z^bA+7j1|zreuknK1seCR@6aci+g|k*f&%GxX1FU^cF@amK`uEwbLPzX&iT$^xwzPI zaCH8>n*HrP$N3jMTs_)&xQ|o)1sCpcH+LfY??$e9_974eUha>AC>XV(mg{goY4aeO z8#=u8cQ*=oTg(qUKF7mXLDb>%yz|P57Wn&oL9|5oLkI5z`X2-{vKa@p56h_(ToiSdnF_r*WAL@nefD}-XtPegqpBzuyV z!=aE**h!*TQ5JW(7$oDoW@%Xrvf)@J$+HQ^Wtrb&-!#i&?dddHI4RD5c<~LhWUr;elceA|{Ha^HI1{;^BP+6EsN4Ph z!-MTZJzvSPN`^@-daiC;8~@?RC3xq%^x?guuYsRBIz1I-F+AE5>SkZgeZ#Ja z*VcQ2-y(PdTyAx|@8t?^Qk=7cP^7m8#h>7&c4R^M<^v$A01a%?M;Wif))>@1O4a-0i` z)>U03c}*V>;szzVKgI4Owb3}0GZ-0ESSew|b0K?7RU*v>8P-2O|Kas1w08FQclNg9 zgRNi3U;Xazi~WAQx4*Nq+uw-~9`1j&z0MFMIY6U-M5$oqfE21}6e+Vl78R_L;w&r2 z3VXjqVT0`sjQwhyo=knj?qo%pk2xZUlo=J%{WLN?mOy1Tb2MKk$#XNR1YA%ugdWyx z!p^#(95TdbQ7bmCNCZCn467gc4pl*7#AsJH%&@IC?{1~RzjJKw3lVXyk5QZ@KpHc7*|wo zg5|*Nx*>k@13b!`xV%AxM1qt?CWTgUGeN=)L3tBr=w7%JN*FiUhe$(7EMYl_pJK>@ z!3vPOY7jZ7@(jq4(-a~j$6qZeL?E7)qfv5K2|x*s;crX_ih%l3byo1~EaT%Ozbe)! zn=W>hQmtz&rIJCkU^2DA8oI&m?AlBoj8PB}6a*%Fp5-|^7Lb0+z-FH#PE^EpAa{`b^xvOtOK6Mh#8wEXIE@C1& z2{Z>~F5;%*>G{EQ@>{7hBe}RK-Rcl36jhqg3*C;}#;@ZpxxshxQw+)*xV+)#76xWD zXbTV4&y+e_&hHm4Jn}br^uk9a@~IL%YtvXAU<_WL1VDvxcM`;H?!nVIdw%j8Wafde zEJ$%gNrZja)S8usCpI3QH0cMPrqpZV^hyaq@J&V0tegqdff_+CiYtt7=y&E2L)O#u zn2nP95dnK0a4c!&gQR7Kk~+iQQZF89#TnI;9H)YB*7O)jShLAJ(8mxygk0gD2KZb-mxoWC77wVilOIDwqv1z~$y2Ir(}U8KPD6)#xBjQWETvf<{t5BY#YnbzF2npHViLsTtBf3YJX-L+uordj8R@R!}Ux%QPK+ kZa4QUbVZK(2$#^I7Hh=|;JUE2v>Yzox*4vmEZn^PU!#hb8~^|S literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6fc23876c3c3843edd794804cd2d2f87de7f00b GIT binary patch literal 6251 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c572d66e0f6e69febdc647a143a8de6c0019260 GIT binary patch literal 21220 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..998d99c40226ffdd43b7236f0a4933d9855eb56c GIT binary patch literal 7086 zcmcIp&2JmW72hv@h@xy+{)iJN&BSREGPP->XfI4tM71SXs4N?nj3Bg()oOPruDsl3 zW|oqr(1*eXf*#Udie7>OHqeXzfueuQUVCZLOM&#%25oVrOS(XWo1B zzUIBhXl|~e;i~*@!T-}+n)YXUIeJ-m`53osqVcqr=INdh=q(*jGcdYl%hYMi3aoCS zRnWDYnpg0OPc^T|3%kW9W~<~G>sr0!#D=CV_v60clC>kj_@kJI9`{%fg*#V8KMehF zhebUuoY;>-$ppvb5EI%W>av?rv=eZ4J&5`qTfDO(8E$Bz}-xWfTi_Jf#3ZRS)?!rqrePP5D7PIGH1qxE)9T_Xjt)vQz+ z4dzB3zq%bn?!#u2^$y}r6jmw>SH4GkxGnY(>mJxn&$r#c=V9C+{C2i`o3KS*t$xz# z3@uH#EtoUD#gt;#34(3MeJGg|dO7_gx*gB6y(r{%KJUBTg2&sm-yB(uKLRW2O~o8y zP*3<_Tx(w*639MRQyQVu<&VMGZZF_5_b#8zl8GJFjv&Oczd~`fwYr{E_#>D1ly2dz z)Qf@uB6jKX(Tg;mF8Mn&T!W@-EyL4WCbxDAZT$;14c&~b|sr6^S&@8QW4%YN~a%Ms$oyCHtErx93LuMdK`@wD4mm8CA@B49w zIk{oMq}VE1;@!*=ha!QYk*F5MjvNVYie}e(B8sENEiR?A!|P23^JISL$G#Jc?7A_O zz2I$FQHRy8LuH-qfZxCW;0lWmdK_w!`i7C+)E@xgA|pkjsVwd|apoc95F(LD_8mAe zmobwuo@C`THnhMI0dN>D502qqgKAZ3w|YAbpp&xtJrO&XiiYuQGTnTEItw( z795L%#$9SN7P(Q__ILWJ+f(jqY(wNLGpG%))R#oTQAdaMv4{fJiT1HsFfO-xvh%Gm zSXfM;xYuASDOsXLd7 z;^TTS(#N5pDR`-b14l|Q9pWuFHgOolAgjRaJw7vV^Pa*>X-p@-2v{LmG4=l1&g%Fk9mWuL5U{G8ob zSzcbcyR^2!))sFqt*0*MeMSdD6DBPbz3(gI?#m{-7a~}=kMS#PJBorUjEDVhV+qZJ zY$g;l5;mRDO}L|YY_yv?s}W!qPIPz`(WB#F7Pq{CCf1&4y9j(dePH?epzsI%*Sf9^ z^nqp@0|Tu&Fwt5b^$T(FS?RfkUU{HBn|ZDwP}1PMtuES@>)qH>%f?knYbgM^Hg9nGFphegQ1kE;xNjcYiz}OvD>fT@Jlxw{^|v>rAM>j{m>CWZxtW^EwcKT1 zo207II}jycTfr?)p}9~l>gs1!^r~_A+R{Y8mNVGZF+IPiPxp1)UzgDgv|R{zU3;Og z)eS)-iA9?CLKpLRQCm!#SLpRMG`qOJMr^Bi}iDL%K{@e`anrtkv%KJVY>=8q#V0BBeAb zsI&7Jt>SHfeoQoy&#LHUeVRTJmd4BA1)>fdyEG}+;p~%z`ooO8U0uF1&_$I98z4pgQV($+ zJTufOK+H7rQ$U>r2GSDo4%UKrq9P@EhI*%|`93wroB-|bx41K=UNEfxR88xf!*?bL zpQ1}+940Fvv`X^-K!-T|n{KX^^306(363lazb9sTcwvSqnrJQ2+|eHEabbY$|A`@L z)Y~n32KA}8Tf*1!?hLJ<`M6<&p82Kq7`pVVGB8O0!*}Vs{Fr8l^|<_O)}xu`SEwS; z*jL)`t>^mKit|`q^)y<2oVx$_{(&atKGxCi)BHFtt|bNKkdmT$$hwuxrk+#<4M{2U zGD$fNVQ{$Bz^ubF_d@;%fiTijrdF~;qsi)Xf)1o3@>EWg99mN9I8u3?_h<$I5oCF- zd8%;OojC5&~&;Pq>S>^@wt?Xy$#c!&`D&7`!Qmv|a>MzFpslOZNFaPcE>J%kAIj(TY z59JrBF}?o+w>*btpdnV$2S(fUwSh&E6bxB+7ICht5RKtNnuHP%Dj5jez!^lW@Q2=% z6t{*X$?f=oS5M#nI#ew5mQj#?+uBh(oIU!5Ho>N z89N~P*enIqE~UVq^(oiQbGK1?MGH276_KHg!mRcMN)#~&$%!JU@}BQfUQ0nbWf8f6 zk(cF#xG@q`WG{Mdwj_w6hfGG4j8I7-@E@j$!Z5l=fs6>ruWQ$GoDEei82gw}!)_f= z?y{cJ#y%gLLx6yut;ddtY1)P(AJ)d+?xrlMW9OtjlGXA}4fj-^0+k>~Dr;wX((Y2R zu@U8*urmVd>?3yhI`W>VJA{}~d-=l&Y9Eh{JRavqzUArArcgb+FZAmtvga)~doJFd;p z+zwJo08{HT)xW~_JHFddL%C(9wbd;DCXL4u2dS#t8571fk16l(MaVypDUl&|9cXaZ zK_O$CyAD|dk(yd=I!^C7o{WSni6#xAYh(4p8+V&W7s9+z1?Vv-lpGeobB{DKb}XS> z*%9Jkj84TZRX;%`J1-Z3lNtIvi6`9SRXQ5U(TvJ$d2Q-G+^aZv@ZkPS)ZE7CO2MZ_ zMl^oQx*ILaJno372lt^TFI{+>AO})(AUb$N-iD%~G~q}e3?iKQ#V4wZtOn%ADwg?S zpBE6Ry2J9nDbni8I9LL|&Qpc)A{QkIa*3qv6aJ@>XQS#fiP0CFN^g?kuY;V<{7I}; zB^c6_tg3>l=HxbpE7i$gFC?ZLNI@Bgpjcd-p@z=hW065(k=p+eA5?mC?g!Hn2bz+m zPv@yzK?aL*Ma8zek=I9I!A`2S{aN1$vM(hYe>Au#3z&f0I(=hldGX%rhJEMu>gvkc zO_jbU<-97WGHF2xt{8?(;w^f8n;J#^yVO(RJq0q!tSURCf)F3j$Xr&6KzSs{$`R>C z&(lhkuu}wb6}O~NsjMOBVW<9Oyj9T+b99%@idnYG<;rZiWL#R%1+A)=#gFk2lu@=$ zAFJl2VcdmdqmA^Rsgwb8chdhG(!anI$RkovK|WEKlz)=)^QTmoP(i+Rs(i6(RP_ty Fe*xb2tt9{e literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f43b98098f6dd02a98f8f923dea8358e7292dd2 GIT binary patch literal 1835 zcmZ`)!D=H%5FL3p!5OjyLM}N3`e=bQA~~9Di1B)Zz&OFXVTlop+TAsyUiWklT|JWZ zBl(B?lCL=h@&!4isz+leZ`~fAuQQ=#~HerTP0f%l_nx{nrs){7C=! z6}{<9k8IYAZbzd`AKf157w@w1%fIMJHXc2GvJSFE`OT+U_I?Rsp#o@d(MXGBWh^X& z40YGgEn!e-Xagu2L5n;3>=1;ngcPlheULywBx<{uTzOZSx(hNI?+U>f2e`s3Vu5141V`+4k>Vhd zE0Rh@(GQ=crjx8ut871PTg;QY?HEM)!s4<#oM9*{%N}cf8 z$q<<{lIZnKU7^ww32@kjZN1V_t?)o#+~7UcI8`cjuhEqcc|-kC#&;-;V*{|DtQdn) zhR*f3Nfl}BrVzhT>5ZwEQD9^RmU2bVo*JHSTg?JeW}zTNY20%XScqRNNGi4R)+R+k zJPDEPfH}vf{%y+@Z|Md+$fmU{Uf++kB)SBhbn(t^$U$LcsP*Is-?@mVId@8tD5S(- z!e@u}_#r{GEJw7Pvpioc7QLmm-dEOlx>y;c3d_~E!ZfW9QOp`y!?`2TWc1;}8dC8f z&hyZGHyq!>ms^f`zH1VS*Fy=zjjO9jOV6m=o) zHp7142}&Dce=VdTM6lKPR5bD)aymi2QA_D+S}zg_j?6}%tw%I>HaU^j+lq~RuuhPT zl8OPhGQm4uhcrbuP|Kh#U>Z|quw7uh8ip~Ib}cv9hX=scI|4J7S0rT}Hr(M#L-sV7 z6={-Gf`h^(QVO~#uJiJrdL&7@ad zPj-#!N2u}CN)0rImH@BEFCIUuI;W!d76bpn+@gsOw&))#vN8iqWZoz$^%>c1HpUu4r^Mb@*&9BVe z98H8tE7d*C2hRJlrm{7qB3jcL90Y00CD@h{7wzWp`1{7|&cY8P0!Bvv{EOqGe*vOd BjJE&) literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..028a0404c237faadbf12e3a61bef7d4f53e81682 GIT binary patch literal 19958 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 L%I{|F({uj|)ex2* literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..646ad268678d0bda1d39d300a9320e2bd4d7adfa GIT binary patch literal 12117 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 AR{#J2 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3eab36bfec14fc35ccd70ddae138720c210687f6 GIT binary patch literal 11533 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 Mi}i~}bM7nu1-RO~UjP6A literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..28f94a12b9509a9ea9b7394fe40b63a3b0ca53b0 GIT binary patch literal 6891 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..726fd4c58a09c082f48958ea59946f2935e5b26a GIT binary patch literal 17852 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7af7034b26ad39f3f52786c5027e60256bed1edf GIT binary patch literal 3292 zcmZ`*U2hx572Vlg(iCmcwwxwGlcrO&D764Z*^V4Lf+I9=Dzrtw2Ct3Mz9>Co`yP5_aS1(NRK&_NXTOA* zs<@1qGJ03UDtedDtBI@VRnWU8uA{di+=otZqnl*W|KW_Z|rnlceX15uUCQs`@ zgP$8uUK<}3V?ldKExTLN$l%U;@Th>Pl^My+AT$jgYA&RXRNR#U&a_eqbiKW~*^kX& z49VGWv!7-CM24eSpYOs2-Oa6g;^SWTUUX01zIQj;x_dk9-MM-5_U&8IM_YGp%1CV8 z5qHIhAI}bM;*w30&>X4EWWW9V)~&k*dP9w|#y9WyJnqM~O?<|mt0OMV0nUnT4LPj)r+_SP| zm^OHlJ&|f73bhn7%f6ImtWr%H&7-!sr@^1V;arB%pa@+)2oFimkgv~e2lk}=23Tu2 z#rn)j$i+4tg-NIi&F9j>Sjz>Hd+^R5l>$Q0k%AP!ldERQWEr`yDT^%ap1B)lE>usm zbmNux3(N{nw~n?hiZmF2R0YVOYXUD?n{6tCJ~A?AZeDpTCx}Zk$jgQI0za?DI!?6- z(@5q%ZO>O0#^jaGOj6+H9 z`ZrR-bUyuaJBw7ic_`Dv_UCc8tz#nra`ZUtOWiJ_k0PfNWlC;Rp6?8b#NQlE^0zKB z^cR%i%V^eqQ(-k%T|qbU(98?<7caqIFu+UTj2%_(I}e@tYoOMQJH;C?bp@kWz|MOo zuKK|EOY^1kqrhz`dT4^OA_tkHXcU)WFD6(Ce!u{vOdam12WCgnFevF{NVh+dZ3PQpH-&Lsq@nL%sFAlo?)l1 z@ecf{*LPkL#$Id5RdfN7=EM0#-@{ptuD0D{cI<+K?sHhyXYV-AnQ&fsUpvhC7GfSc zXRak)3)T@g0xx%)H**gWotG?>cKICKEBE^{l}|@%=PQy$AiIC}owB?3Q}w4KzThKy zws{}l9LU%^&BdXhl$Q{zL!GbK7X&$8=Vc|u7>S~i;nOTMnaayxN)#IK;Wa+L4|#<) zgsHNm#y6$2hpNefE3E96f4t@^nte0azr*S>*fXG=Q)b))?@d6H)CJHK6Bg*&F$2i# zgee!~Vb6aCvw8uoe{Y@JiS?&wYC1^OAjZgIVsPm{7l@W;xK++nDR4 zYRb$$s~~Stc>Bz*1Z+2`=9fAhkwu+O0fDuic3W=S3}C^x+^|O3qvr%!kwmJza(|eK caUypp3+lH>WUYcsQuV6!N)^SgR%)035BL5at^fc4 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a8512b049a84e152abbd934f2db6825ce951688 GIT binary patch literal 2129 zcmah~O>Y}T7@nE^@W!!CS^}lOVNhFCqsEmuaEK5hl!``zfYP*;7Nf~}XY8)C-f?Hf zX=AwvHI;hm6|T*(e`&9r_zQ>v@9cVAr!8Ww`TlsH_nqf?Et}0cg0KGT+2kZZ=yy9< z{#+P*2}R$4ilY#5%t?wzBqZ4Oozw}PqIE;JXuZ&f)=g`pAPg}2262!3j}iApaO{LD z+_{O`wdp4}L^>8q)4o(x3w0>ehEBMk+9(l?l59YejP72)x!3svETcBgy<1r#vmNNI ze-&x5EA&`qT5KDkA|q97w=IAEe4zKBBT$F|KH(VP65$R#?g(GhhJjca)`zRZpij=D zzWW6A0X+8}H^K(@dF?R@n>^qv(6)G;uR{CQ6Xc?B4cuttYp+}mfX7?r4w;oDXCt%Y~9|V+kLuUIll~lpC+1S($I+NNw2go zVect-_9^gZ|9@QCFXNO4m6?3K>Ma|LohAC%epU1p7|ietF*HL%G{it~^3;xraf~}d z$7JZu2zQ=h5CsBexI25m(-s%8rqB7Urphs6+;`L1(8;6yz$d1z% z?D050aMcCla{{Bu*Gr5oN7k4TL?g>sTb(|e#V>5l{R@R3H*LOi) zrRSUUl5VertH6(gC={>G2|kK8HsS0xCAR%i!@golyXUTjr%A*t0P|8d=Den#Asmf z64Q4uH=h!wx#k0N18)@TEZ2ZlMl{j2T^pk>5i2qC8Db{4cQm)mv}IJc1|QwwQI88r z+lipQ+>C=&k;F+~Qpv?S7c(+soXS*izZ=FYG>qxe?d7}9A7C!3$SrVpDmlvMCX{ZMd5(}eaVKdMYkJJjOPg;=J36w!2*)8^q$ zP0Amq!ly}_9@p1|O_hPoUf2UGi{-Df$pPzYw|vQ$xa=jdMa6(f{?8O3U3I!z#Cd4TBL zw+rC%;$+gXZ3@?%Sdp{2q(-B!^lITI$M2`BjvpotxHyKDB6UWp>$7w&KC&lGS{)vw z&P&^QT`r}+!o47p^lA=|2R)IbiSu>w;W{1a%ip&8ZD+V*G~uDrc3|Ftf*|sx1OW6v zZ2_YehgoS~#4v1&q)YwW#^Gs~{7~|-^M2&4+`C*1G0GvkN7&kx1ZJeak zr?THF^egBcIZl&8<_yv3oOYyU;it?RsmW?1X^9wayP&^l zIN+HXByq~)6ef6n2-)Cy+2p}oFHA*d$Ud-zfbCFbd0rTYspr+TOqV=r3jMEV={JAgK;6C9C!uG^yP719*HH?cqgn7DjtmRN;}!MK=w@%m%-K|CHly!dNOdk!>9h z=xM4)(_d0fV5w66=LP7LatJqmffgYAcfc}+A+Tg{dESo$9zjxsGF9w%;1HTXoct8H z*;(8p!h~HiBZv|RLJj2OmY0HjqgzU2VRelR-aOgrV(Jl#6--qn%iZ-82!+LReo#{o z-6gr@=ni^2^fF*McUD2f z;B~j;MSPt{nSDq*nXa~V4R1yGt-6*&2!f&#FvI*eU{0nIEUFgVm2|zrBZCr(0 z^*Xk;i=OP4{<6x0w@;21K(es@NWez;o>vM~z!kd1IS>jnPQZvz0lur|D{KO&PghuQ zN1*l{T{);=pb#PyrUAXzj-%IC)$U{ri;HTFUii%7j{`5=?D0$kDI;m?nDg?WK~g}_ z?kk0_L-z`Mi<$NFiqc}g%OTW|%H4$ZBPCZn?@`~6hF?t2V@aUUP*75)tGelGP&l)R zgUXp%OGAzo%3Ya}SBA_S*1*gfRf^0UR==FN#Cc`zCDp0;=ROx#)CQA7K819TJa6p0 zXVg4JKRGKau*lb-vmivIViWS;v{wDsnzA%Yx2jWGKC504b(oWtz==Q`xrxGoH}0iV z{{_S~wW7SxRX+xK85QrS6&Fvb=I-UuRzu2m@}I#m&Thfamr&G^+cb70MX~vjGV7Bf i3ZE*#N(!A`tq_Y4Qh^*G>fR?h`N!HO`<7Y3HSK@zD=78= literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee87aacec82c31fbf16b7b2282e272782652fc75 GIT binary patch literal 593 zcmZvZ&1xGl5XZIak6mwV@&P^d0fG;;?;(_isOs)yt3)daNjC9|Dd>s(-9E1N?j=@)aJws_olPS_=G|M9A z$T`gu_f)Uz(|+PU@_-H!50Hm+n0Tm)uB2t+0(nG7$R(|s(KVS?FIa(0v-N%>0tDFs z{|(B5^O&pPp#~eI(J}f257ubVK?=pa0@R- Wq%+Mz!Iun+`hAq~!8qGKW&RgoH==a_ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5db6e20b423e1af5a521e05680f0f8a94e48e454 GIT binary patch literal 8493 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9f3bcd3ddc6aed55a392acb811de1e148343fa6 GIT binary patch literal 2700 zcmbtW&u`l{6s9QIR-9k%&#hh8alJGiHutteFmwx=tP7APK$~=c=Ymy4+EF7*8cAid z;ar*m-CwZFFrYp5zW-wXfv!94+}nVyd!#H+b=+du6zG|xq{sKZ_q~sa7Z>XYuKJH> zgCFJ*`b|&DR~05-z%3In47Cxn7!IvIZsWe)wk^c$wsRXXhgF^+R^gQsyIqBOmDONg zGxHjAxy{{6h|P_E>)h>D**sf#;$l36J)XS0 z0t1fP7UYGWqOPTLd*Zh3r^rEV2lltKvm5a`%FicBHv%%wDl0!1k- zIg*Fntk&mJdOiNa%H}BbLr+RdU!Xr8+*jUT2-lLlq~TorFhUdtt~G zUEA!$zUZ`$cy!d+3idlPQ2dj`^AEwH?BuB30NAJ>3x1h(tga+P>&ZV{WkT&{E2azEsnGBc^FbE7QlaQG%v-XHWe@z z;eM$%chPyvth}+TLca#3yHFs0Cy;$l`3HIRit58lP-cX5YNmQCFkn!%pAf?%4Axc% ztn+j2*j5%)6p!plMJwAwvU|XZA4lDwmkQ3N*-2K0pErT2ToPSp69G~1NrCH_#lY+| zVkC&nLmxcxNCjRf!NJXDi)?nuAWq4F2W7ji${Wsd#=lR(zzUFAPQQ9nw>AjHCYvN`a4r6 zQ#Mm94d?rC%Ox-_#+LI6+tokut44Krb!J5-v=RD~nGDd4rJGfp(?-v-i&G)eTobZ$ zMa<&`3S`f!f~!liC*grDK( z=ma$45Q|I7ehe#GBfMWh5bl}{X4W^AK#u)EUS5N1t6nE?t%;soH6uNnoex77!@45JfrV4YlpccfPKg+&+FHQhdh$#!!gt5IO4 z4@YxV4HAG-Xo(bB7jyd8|7j#c|6F`+D6U~_=4e2Tw^9s~(;#y{%g_Fsx~1f0FwRl~ WJGfyts(8L?;aB>`xc=AW%YOs4CFtD% literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e5f71f188dd1257a70676937216d93871831add GIT binary patch literal 207 zcmd1j<>g`k02KczG$)ehvuVvwyId;rAlH_ZS5 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..510ef3129bd210cbd65bc29f95b10e6b3748cc64 GIT binary patch literal 686 zcmZWn&1xGl5Z2m07^f-4(30aEyHGnln^L+YKA5&iNZf=N!A4n)H;OmXB56%hdh9dw z9r8-P_APqqXubKv0~$2?X6Bn8neFW!BkBF=t9Kp7{s!Z@w8;2E$GssX*^J3Zwtll& zB-cE4sv7ifhg5riPkBjvxrD$neI|+meVRyLs!hPE`{~BWs=&{| L&4rlG>sRgn^= (3, 8): + from importlib import metadata +else: + # TODO(https://github.com/googleapis/python-api-core/issues/835): Remove + # this code path once we drop support for Python 3.7 + import importlib_metadata as metadata + +ParsedVersion = Tuple[int, ...] + +# Here we list all the packages for which we want to issue warnings +# about deprecated and unsupported versions. +DependencyConstraint = namedtuple( + "DependencyConstraint", + ["package_name", "minimum_fully_supported_version", "recommended_version"], +) +_PACKAGE_DEPENDENCY_WARNINGS = [ + DependencyConstraint( + "google.protobuf", + minimum_fully_supported_version="4.25.8", + recommended_version="6.x", + ) +] + + +DependencyVersion = namedtuple("DependencyVersion", ["version", "version_string"]) +# Version string we provide in a DependencyVersion when we can't determine the version of a +# package. +UNKNOWN_VERSION_STRING = "--" + + +def parse_version_to_tuple(version_string: str) -> ParsedVersion: + """Safely converts a semantic version string to a comparable tuple of integers. + + Example: "4.25.8" -> (4, 25, 8) + Ignores non-numeric parts and handles common version formats. + + Args: + version_string: Version string in the format "x.y.z" or "x.y.z" + + Returns: + Tuple of integers for the parsed version string. + """ + parts = [] + for part in version_string.split("."): + try: + parts.append(int(part)) + except ValueError: + # If it's a non-numeric part (e.g., '1.0.0b1' -> 'b1'), stop here. + # This is a simplification compared to 'packaging.parse_version', but sufficient + # for comparing strictly numeric semantic versions. + break + return tuple(parts) + + +def get_dependency_version( + dependency_name: str, +) -> DependencyVersion: + """Get the parsed version of an installed package dependency. + + This function checks for an installed package and returns its version + as a comparable tuple of integers object for safe comparison. It handles + both modern (Python 3.8+) and legacy (Python 3.7) environments. + + Args: + dependency_name: The distribution name of the package (e.g., 'requests'). + + Returns: + A DependencyVersion namedtuple with `version` (a tuple of integers) and + `version_string` attributes, or `DependencyVersion(None, + UNKNOWN_VERSION_STRING)` if the package is not found or + another error occurs during version discovery. + + """ + try: + version_string: str = metadata.version(dependency_name) + parsed_version = parse_version_to_tuple(version_string) + return DependencyVersion(parsed_version, version_string) + except Exception: + # Catch exceptions from metadata.version() (e.g., PackageNotFoundError) + # or errors during parse_version_to_tuple + return DependencyVersion(None, UNKNOWN_VERSION_STRING) + + +def warn_deprecation_for_versions_less_than( + consumer_import_package: str, + dependency_import_package: str, + minimum_fully_supported_version: str, + recommended_version: Optional[str] = None, + message_template: Optional[str] = None, +): + """Issue any needed deprecation warnings for `dependency_import_package`. + + If `dependency_import_package` is installed at a version less than + `minimum_fully_supported_version`, this issues a warning using either a + default `message_template` or one provided by the user. The + default `message_template` informs the user that they will not receive + future updates for `consumer_import_package` if + `dependency_import_package` is somehow pinned to a version lower + than `minimum_fully_supported_version`. + + Args: + consumer_import_package: The import name of the package that + needs `dependency_import_package`. + dependency_import_package: The import name of the dependency to check. + minimum_fully_supported_version: The dependency_import_package version number + below which a deprecation warning will be logged. + recommended_version: If provided, the recommended next version, which + could be higher than `minimum_fully_supported_version`. + message_template: A custom default message template to replace + the default. This `message_template` is treated as an + f-string, where the following variables are defined: + `dependency_import_package`, `consumer_import_package` and + `dependency_distribution_package` and + `consumer_distribution_package` and `dependency_package`, + `consumer_package` , which contain the import packages, the + distribution packages, and pretty string with both the + distribution and import packages for the dependency and the + consumer, respectively; and `minimum_fully_supported_version`, + `version_used`, and `version_used_string`, which refer to supported + and currently-used versions of the dependency. + + """ + if ( + not consumer_import_package + or not dependency_import_package + or not minimum_fully_supported_version + ): # pragma: NO COVER + return + + dependency_version = get_dependency_version(dependency_import_package) + if not dependency_version.version: + return + + if dependency_version.version < parse_version_to_tuple( + minimum_fully_supported_version + ): + ( + dependency_package, + dependency_distribution_package, + ) = _get_distribution_and_import_packages(dependency_import_package) + ( + consumer_package, + consumer_distribution_package, + ) = _get_distribution_and_import_packages(consumer_import_package) + + recommendation = ( + " (we recommend {recommended_version})" if recommended_version else "" + ) + message_template = message_template or _flatten_message( + """ + DEPRECATION: Package {consumer_package} depends on + {dependency_package}, currently installed at version + {version_used_string}. Future updates to + {consumer_package} will require {dependency_package} at + version {minimum_fully_supported_version} or + higher{recommendation}. Please ensure that either (a) your + Python environment doesn't pin the version of + {dependency_package}, so that updates to + {consumer_package} can require the higher version, or (b) + you manually update your Python environment to use at + least version {minimum_fully_supported_version} of + {dependency_package}. + """ + ) + warnings.warn( + message_template.format( + consumer_import_package=consumer_import_package, + dependency_import_package=dependency_import_package, + consumer_distribution_package=consumer_distribution_package, + dependency_distribution_package=dependency_distribution_package, + dependency_package=dependency_package, + consumer_package=consumer_package, + minimum_fully_supported_version=minimum_fully_supported_version, + recommendation=recommendation, + version_used=dependency_version.version, + version_used_string=dependency_version.version_string, + ), + FutureWarning, + ) + + +def check_dependency_versions( + consumer_import_package: str, *package_dependency_warnings: DependencyConstraint +): + """Bundle checks for all package dependencies. + + This function can be called by all consumers of google.api_core, + to emit needed deprecation warnings for any of their + dependencies. The dependencies to check can be passed as arguments, or if + none are provided, it will default to the list in + `_PACKAGE_DEPENDENCY_WARNINGS`. + + Args: + consumer_import_package: The distribution name of the calling package, whose + dependencies we're checking. + *package_dependency_warnings: A variable number of DependencyConstraint + objects, each specifying a dependency to check. + """ + if not package_dependency_warnings: + package_dependency_warnings = tuple(_PACKAGE_DEPENDENCY_WARNINGS) + for package_info in package_dependency_warnings: + warn_deprecation_for_versions_less_than( + consumer_import_package, + package_info.package_name, + package_info.minimum_fully_supported_version, + recommended_version=package_info.recommended_version, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/_python_version_support.py b/ocr/.venv/Lib/site-packages/google/api_core/_python_version_support.py new file mode 100644 index 00000000..9fb92af6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/_python_version_support.py @@ -0,0 +1,269 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Code to check Python versions supported by Google Cloud Client Libraries.""" + +import datetime +import enum +import warnings +import sys +import textwrap +from typing import Any, List, NamedTuple, Optional, Dict, Tuple + + +class PythonVersionStatus(enum.Enum): + """Support status of a Python version in this client library artifact release. + + "Support", in this context, means that this release of a client library + artifact is configured to run on the currently configured version of + Python. + """ + + PYTHON_VERSION_STATUS_UNSPECIFIED = "PYTHON_VERSION_STATUS_UNSPECIFIED" + + PYTHON_VERSION_SUPPORTED = "PYTHON_VERSION_SUPPORTED" + """This Python version is fully supported, so the artifact running on this + version will have all features and bug fixes.""" + + PYTHON_VERSION_DEPRECATED = "PYTHON_VERSION_DEPRECATED" + """This Python version is still supported, but support will end within a + year. At that time, there will be no more releases for this artifact + running under this Python version.""" + + PYTHON_VERSION_EOL = "PYTHON_VERSION_EOL" + """This Python version has reached its end of life in the Python community + (see https://devguide.python.org/versions/), and this artifact will cease + supporting this Python version within the next few releases.""" + + PYTHON_VERSION_UNSUPPORTED = "PYTHON_VERSION_UNSUPPORTED" + """This release of the client library artifact may not be the latest, since + current releases no longer support this Python version.""" + + +class VersionInfo(NamedTuple): + """Hold release and support date information for a Python version.""" + + version: str + python_beta: Optional[datetime.date] + python_start: datetime.date + python_eol: datetime.date + gapic_start: Optional[datetime.date] = None # unused + gapic_deprecation: Optional[datetime.date] = None + gapic_end: Optional[datetime.date] = None + dep_unpatchable_cve: Optional[datetime.date] = None # unused + + +PYTHON_VERSIONS: List[VersionInfo] = [ + # Refer to https://devguide.python.org/versions/ and the PEPs linked therefrom. + VersionInfo( + version="3.7", + python_beta=None, + python_start=datetime.date(2018, 6, 27), + python_eol=datetime.date(2023, 6, 27), + ), + VersionInfo( + version="3.8", + python_beta=None, + python_start=datetime.date(2019, 10, 14), + python_eol=datetime.date(2024, 10, 7), + ), + VersionInfo( + version="3.9", + python_beta=datetime.date(2020, 5, 18), + python_start=datetime.date(2020, 10, 5), + python_eol=datetime.date(2025, 10, 5), + gapic_end=datetime.date(2025, 10, 5) + datetime.timedelta(days=90), + ), + VersionInfo( + version="3.10", + python_beta=datetime.date(2021, 5, 3), + python_start=datetime.date(2021, 10, 4), + python_eol=datetime.date(2026, 10, 4), # TODO: specify day when announced + ), + VersionInfo( + version="3.11", + python_beta=datetime.date(2022, 5, 8), + python_start=datetime.date(2022, 10, 24), + python_eol=datetime.date(2027, 10, 24), # TODO: specify day when announced + ), + VersionInfo( + version="3.12", + python_beta=datetime.date(2023, 5, 22), + python_start=datetime.date(2023, 10, 2), + python_eol=datetime.date(2028, 10, 2), # TODO: specify day when announced + ), + VersionInfo( + version="3.13", + python_beta=datetime.date(2024, 5, 8), + python_start=datetime.date(2024, 10, 7), + python_eol=datetime.date(2029, 10, 7), # TODO: specify day when announced + ), + VersionInfo( + version="3.14", + python_beta=datetime.date(2025, 5, 7), + python_start=datetime.date(2025, 10, 7), + python_eol=datetime.date(2030, 10, 7), # TODO: specify day when announced + ), +] + +PYTHON_VERSION_INFO: Dict[Tuple[int, int], VersionInfo] = {} +for info in PYTHON_VERSIONS: + major, minor = map(int, info.version.split(".")) + PYTHON_VERSION_INFO[(major, minor)] = info + + +LOWEST_TRACKED_VERSION = min(PYTHON_VERSION_INFO.keys()) +_FAKE_PAST_DATE = datetime.date.min + datetime.timedelta(days=900) +_FAKE_PAST_VERSION = VersionInfo( + version="0.0", + python_beta=_FAKE_PAST_DATE, + python_start=_FAKE_PAST_DATE, + python_eol=_FAKE_PAST_DATE, +) +_FAKE_FUTURE_DATE = datetime.date.max - datetime.timedelta(days=900) +_FAKE_FUTURE_VERSION = VersionInfo( + version="999.0", + python_beta=_FAKE_FUTURE_DATE, + python_start=_FAKE_FUTURE_DATE, + python_eol=_FAKE_FUTURE_DATE, +) +DEPRECATION_WARNING_PERIOD = datetime.timedelta(days=365) +EOL_GRACE_PERIOD = datetime.timedelta(weeks=1) + + +def _flatten_message(text: str) -> str: + """Dedent a multi-line string and flatten it into a single line.""" + return " ".join(textwrap.dedent(text).strip().split()) + + +# TODO(https://github.com/googleapis/python-api-core/issues/835): Remove once we +# no longer support Python 3.7 +if sys.version_info < (3, 8): + + def _get_pypi_package_name(module_name): # pragma: NO COVER + """Determine the PyPI package name for a given module name.""" + return None + +else: + from importlib import metadata + + def _get_pypi_package_name(module_name): + """Determine the PyPI package name for a given module name.""" + try: + # Get the mapping of modules to distributions + module_to_distributions = metadata.packages_distributions() + + # Check if the module is found in the mapping + if module_name in module_to_distributions: # pragma: NO COVER + # The value is a list of distribution names, take the first one + return module_to_distributions[module_name][0] + else: + return None # Module not found in the mapping + except Exception as e: + print(f"An error occurred: {e}") + return None + + +def _get_distribution_and_import_packages(import_package: str) -> Tuple[str, Any]: + """Return a pretty string with distribution & import package names.""" + distribution_package = _get_pypi_package_name(import_package) + dependency_distribution_and_import_packages = ( + f"package {distribution_package} ({import_package})" + if distribution_package + else import_package + ) + return dependency_distribution_and_import_packages, distribution_package + + +def check_python_version( + package: str = "this package", today: Optional[datetime.date] = None +) -> PythonVersionStatus: + """Check the running Python version and issue a support warning if needed. + + Args: + today: The date to check against. Defaults to the current date. + + Returns: + The support status of the current Python version. + """ + today = today or datetime.date.today() + package_label, _ = _get_distribution_and_import_packages(package) + + python_version = sys.version_info + version_tuple = (python_version.major, python_version.minor) + py_version_str = sys.version.split()[0] + + version_info = PYTHON_VERSION_INFO.get(version_tuple) + + if not version_info: + if version_tuple < LOWEST_TRACKED_VERSION: + version_info = _FAKE_PAST_VERSION + else: + version_info = _FAKE_FUTURE_VERSION + + gapic_deprecation = version_info.gapic_deprecation or ( + version_info.python_eol - DEPRECATION_WARNING_PERIOD + ) + gapic_end = version_info.gapic_end or (version_info.python_eol + EOL_GRACE_PERIOD) + + def min_python(date: datetime.date) -> str: + """Find the minimum supported Python version for a given date.""" + for version, info in sorted(PYTHON_VERSION_INFO.items()): + if info.python_start <= date < info.python_eol: + return f"{version[0]}.{version[1]}" + return "at a currently supported version [https://devguide.python.org/versions]" + + if gapic_end < today: + message = _flatten_message( + f""" + You are using a non-supported Python version ({py_version_str}). + Google will not post any further updates to {package_label} + supporting this Python version. Please upgrade to the latest Python + version, or at least Python {min_python(today)}, and then update + {package_label}. + """ + ) + warnings.warn(message, FutureWarning) + return PythonVersionStatus.PYTHON_VERSION_UNSUPPORTED + + eol_date = version_info.python_eol + EOL_GRACE_PERIOD + if eol_date <= today <= gapic_end: + message = _flatten_message( + f""" + You are using a Python version ({py_version_str}) + past its end of life. Google will update {package_label} + with critical bug fixes on a best-effort basis, but not + with any other fixes or features. Please upgrade + to the latest Python version, or at least Python + {min_python(today)}, and then update {package_label}. + """ + ) + warnings.warn(message, FutureWarning) + return PythonVersionStatus.PYTHON_VERSION_EOL + + if gapic_deprecation <= today <= gapic_end: + message = _flatten_message( + f""" + You are using a Python version ({py_version_str}) which Google will + stop supporting in new releases of {package_label} once it reaches + its end of life ({version_info.python_eol}). Please upgrade to the + latest Python version, or at least Python + {min_python(version_info.python_eol)}, to continue receiving updates + for {package_label} past that date. + """ + ) + warnings.warn(message, FutureWarning) + return PythonVersionStatus.PYTHON_VERSION_DEPRECATED + + return PythonVersionStatus.PYTHON_VERSION_SUPPORTED diff --git a/ocr/.venv/Lib/site-packages/google/api_core/_rest_streaming_base.py b/ocr/.venv/Lib/site-packages/google/api_core/_rest_streaming_base.py new file mode 100644 index 00000000..3bc87a96 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/_rest_streaming_base.py @@ -0,0 +1,118 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for server-side streaming in REST.""" + +from collections import deque +import string +from typing import Deque, Union +import types + +import proto +import google.protobuf.message +from google.protobuf.json_format import Parse + + +class BaseResponseIterator: + """Base Iterator over REST API responses. This class should not be used directly. + + Args: + response_message_cls (Union[proto.Message, google.protobuf.message.Message]): A response + class expected to be returned from an API. + + Raises: + ValueError: If `response_message_cls` is not a subclass of `proto.Message` or `google.protobuf.message.Message`. + """ + + def __init__( + self, + response_message_cls: Union[proto.Message, google.protobuf.message.Message], + ): + self._response_message_cls = response_message_cls + # Contains a list of JSON responses ready to be sent to user. + self._ready_objs: Deque[str] = deque() + # Current JSON response being built. + self._obj = "" + # Keeps track of the nesting level within a JSON object. + self._level = 0 + # Keeps track whether HTTP response is currently sending values + # inside of a string value. + self._in_string = False + # Whether an escape symbol "\" was encountered. + self._escape_next = False + + self._grab = types.MethodType(self._create_grab(), self) + + def _process_chunk(self, chunk: str): + if self._level == 0: + if chunk[0] != "[": + raise ValueError( + "Can only parse array of JSON objects, instead got %s" % chunk + ) + for char in chunk: + if char == "{": + if self._level == 1: + # Level 1 corresponds to the outermost JSON object + # (i.e. the one we care about). + self._obj = "" + if not self._in_string: + self._level += 1 + self._obj += char + elif char == "}": + self._obj += char + if not self._in_string: + self._level -= 1 + if not self._in_string and self._level == 1: + self._ready_objs.append(self._obj) + elif char == '"': + # Helps to deal with an escaped quotes inside of a string. + if not self._escape_next: + self._in_string = not self._in_string + self._obj += char + elif char in string.whitespace: + if self._in_string: + self._obj += char + elif char == "[": + if self._level == 0: + self._level += 1 + else: + self._obj += char + elif char == "]": + if self._level == 1: + self._level -= 1 + else: + self._obj += char + else: + self._obj += char + self._escape_next = not self._escape_next if char == "\\" else False + + def _create_grab(self): + if issubclass(self._response_message_cls, proto.Message): + + def grab(this): + return this._response_message_cls.from_json( + this._ready_objs.popleft(), ignore_unknown_fields=True + ) + + return grab + elif issubclass(self._response_message_cls, google.protobuf.message.Message): + + def grab(this): + return Parse(this._ready_objs.popleft(), this._response_message_cls()) + + return grab + else: + raise ValueError( + "Response message class must be a subclass of proto.Message or google.protobuf.message.Message." + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/bidi.py b/ocr/.venv/Lib/site-packages/google/api_core/bidi.py new file mode 100644 index 00000000..270ad091 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/bidi.py @@ -0,0 +1,735 @@ +# Copyright 2017, Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for synchronous bidirectional streaming RPCs.""" + +import collections +import datetime +import logging +import queue as queue_module +import threading +import time + +from google.api_core import exceptions +from google.api_core.bidi_base import BidiRpcBase + +_LOGGER = logging.getLogger(__name__) +_BIDIRECTIONAL_CONSUMER_NAME = "Thread-ConsumeBidirectionalStream" + + +class _RequestQueueGenerator(object): + """A helper for sending requests to a gRPC stream from a Queue. + + This generator takes requests off a given queue and yields them to gRPC. + + This helper is useful when you have an indeterminate, indefinite, or + otherwise open-ended set of requests to send through a request-streaming + (or bidirectional) RPC. + + + Example:: + + requests = request_queue_generator(q) + call = stub.StreamingRequest(iter(requests)) + requests.call = call + + for response in call: + print(response) + q.put(...) + + + Args: + queue (queue_module.Queue): The request queue. + period (float): The number of seconds to wait for items from the queue + before checking if the RPC is cancelled. In practice, this + determines the maximum amount of time the request consumption + thread will live after the RPC is cancelled. + initial_request (Union[protobuf.Message, + Callable[None, protobuf.Message]]): The initial request to + yield. This is done independently of the request queue to allow fo + easily restarting streams that require some initial configuration + request. + """ + + def __init__(self, queue, period=1, initial_request=None): + self._queue = queue + self._period = period + self._initial_request = initial_request + self.call = None + + def _is_active(self): + # Note: there is a possibility that this starts *before* the call + # property is set. So we have to check if self.call is set before + # seeing if it's active. We need to return True if self.call is None. + # See https://github.com/googleapis/python-api-core/issues/560. + return self.call is None or self.call.is_active() + + def __iter__(self): + # The reason this is necessary is because gRPC takes an iterator as the + # request for request-streaming RPCs. gRPC consumes this iterator in + # another thread to allow it to block while generating requests for + # the stream. However, if the generator blocks indefinitely gRPC will + # not be able to clean up the thread as it'll be blocked on + # `next(iterator)` and not be able to check the channel status to stop + # iterating. This helper mitigates that by waiting on the queue with + # a timeout and checking the RPC state before yielding. + # + # Finally, it allows for retrying without swapping queues because if + # it does pull an item off the queue when the RPC is inactive, it'll + # immediately put it back and then exit. This is necessary because + # yielding the item in this case will cause gRPC to discard it. In + # practice, this means that the order of messages is not guaranteed. + # If such a thing is necessary it would be easy to use a priority + # queue. + # + # Note that it is possible to accomplish this behavior without + # "spinning" (using a queue timeout). One possible way would be to use + # more threads to multiplex the grpc end event with the queue, another + # possible way is to use selectors and a custom event/queue object. + # Both of these approaches are significant from an engineering + # perspective for small benefit - the CPU consumed by spinning is + # pretty minuscule. + + if self._initial_request is not None: + if callable(self._initial_request): + yield self._initial_request() + else: + yield self._initial_request + + while True: + try: + item = self._queue.get(timeout=self._period) + except queue_module.Empty: + if not self._is_active(): + _LOGGER.debug( + "Empty queue and inactive call, exiting request " "generator." + ) + return + else: + # call is still active, keep waiting for queue items. + continue + + # The consumer explicitly sent "None", indicating that the request + # should end. + if item is None: + _LOGGER.debug("Cleanly exiting request generator.") + return + + if not self._is_active(): + # We have an item, but the call is closed. We should put the + # item back on the queue so that the next call can consume it. + self._queue.put(item) + _LOGGER.debug( + "Inactive call, replacing item on queue and exiting " + "request generator." + ) + return + + yield item + + +class _Throttle(object): + """A context manager limiting the total entries in a sliding time window. + + If more than ``access_limit`` attempts are made to enter the context manager + instance in the last ``time window`` interval, the exceeding requests block + until enough time elapses. + + The context manager instances are thread-safe and can be shared between + multiple threads. If multiple requests are blocked and waiting to enter, + the exact order in which they are allowed to proceed is not determined. + + Example:: + + max_three_per_second = _Throttle( + access_limit=3, time_window=datetime.timedelta(seconds=1) + ) + + for i in range(5): + with max_three_per_second as time_waited: + print("{}: Waited {} seconds to enter".format(i, time_waited)) + + Args: + access_limit (int): the maximum number of entries allowed in the time window + time_window (datetime.timedelta): the width of the sliding time window + """ + + def __init__(self, access_limit, time_window): + if access_limit < 1: + raise ValueError("access_limit argument must be positive") + + if time_window <= datetime.timedelta(0): + raise ValueError("time_window argument must be a positive timedelta") + + self._time_window = time_window + self._access_limit = access_limit + self._past_entries = collections.deque( + maxlen=access_limit + ) # least recent first + self._entry_lock = threading.Lock() + + def __enter__(self): + with self._entry_lock: + cutoff_time = datetime.datetime.now() - self._time_window + + # drop the entries that are too old, as they are no longer relevant + while self._past_entries and self._past_entries[0] < cutoff_time: + self._past_entries.popleft() + + if len(self._past_entries) < self._access_limit: + self._past_entries.append(datetime.datetime.now()) + return 0.0 # no waiting was needed + + to_wait = (self._past_entries[0] - cutoff_time).total_seconds() + time.sleep(to_wait) + + self._past_entries.append(datetime.datetime.now()) + return to_wait + + def __exit__(self, *_): + pass + + def __repr__(self): + return "{}(access_limit={}, time_window={})".format( + self.__class__.__name__, self._access_limit, repr(self._time_window) + ) + + +class BidiRpc(BidiRpcBase): + """A helper for consuming a bi-directional streaming RPC. + + This maps gRPC's built-in interface which uses a request iterator and a + response iterator into a socket-like :func:`send` and :func:`recv`. This + is a more useful pattern for long-running or asymmetric streams (streams + where there is not a direct correlation between the requests and + responses). + + Example:: + + initial_request = example_pb2.StreamingRpcRequest( + setting='example') + rpc = BidiRpc( + stub.StreamingRpc, + initial_request=initial_request, + metadata=[('name', 'value')] + ) + + rpc.open() + + while rpc.is_active(): + print(rpc.recv()) + rpc.send(example_pb2.StreamingRpcRequest( + data='example')) + + rpc.close() + + This does *not* retry the stream on errors. See :class:`ResumableBidiRpc`. + + Args: + start_rpc (grpc.StreamStreamMultiCallable): The gRPC method used to + start the RPC. + initial_request (Union[protobuf.Message, + Callable[None, protobuf.Message]]): The initial request to + yield. This is useful if an initial request is needed to start the + stream. + metadata (Sequence[Tuple(str, str)]): RPC metadata to include in + the request. + """ + + def _create_queue(self): + """Create a queue for requests.""" + return queue_module.Queue() + + def open(self): + """Opens the stream.""" + if self.is_active: + raise ValueError("Cannot open an already open stream.") + + request_generator = _RequestQueueGenerator( + self._request_queue, initial_request=self._initial_request + ) + try: + call = self._start_rpc(iter(request_generator), metadata=self._rpc_metadata) + except exceptions.GoogleAPICallError as exc: + # The original `grpc.RpcError` (which is usually also a `grpc.Call`) is + # available from the ``response`` property on the mapped exception. + self._on_call_done(exc.response) + raise + + request_generator.call = call + + # TODO: api_core should expose the future interface for wrapped + # callables as well. + if hasattr(call, "_wrapped"): # pragma: NO COVER + call._wrapped.add_done_callback(self._on_call_done) + else: + call.add_done_callback(self._on_call_done) + + self._request_generator = request_generator + self.call = call + + def close(self): + """Closes the stream.""" + if self.call is None: + return + + self._request_queue.put(None) + self.call.cancel() + self._request_generator = None + self._initial_request = None + self._callbacks = [] + # Don't set self.call to None. Keep it around so that send/recv can + # raise the error. + + def send(self, request): + """Queue a message to be sent on the stream. + + Send is non-blocking. + + If the underlying RPC has been closed, this will raise. + + Args: + request (protobuf.Message): The request to send. + """ + if self.call is None: + raise ValueError("Cannot send on an RPC stream that has never been opened.") + + # Don't use self.is_active(), as ResumableBidiRpc will overload it + # to mean something semantically different. + if self.call.is_active(): + self._request_queue.put(request) + else: + # calling next should cause the call to raise. + next(self.call) + + def recv(self): + """Wait for a message to be returned from the stream. + + Recv is blocking. + + If the underlying RPC has been closed, this will raise. + + Returns: + protobuf.Message: The received message. + """ + if self.call is None: + raise ValueError("Cannot recv on an RPC stream that has never been opened.") + + return next(self.call) + + @property + def is_active(self): + """True if this stream is currently open and active.""" + return self.call is not None and self.call.is_active() + + +def _never_terminate(future_or_error): + """By default, no errors cause BiDi termination.""" + return False + + +class ResumableBidiRpc(BidiRpc): + """A :class:`BidiRpc` that can automatically resume the stream on errors. + + It uses the ``should_recover`` arg to determine if it should re-establish + the stream on error. + + Example:: + + def should_recover(exc): + return ( + isinstance(exc, grpc.RpcError) and + exc.code() == grpc.StatusCode.UNAVAILABLE) + + initial_request = example_pb2.StreamingRpcRequest( + setting='example') + + metadata = [('header_name', 'value')] + + rpc = ResumableBidiRpc( + stub.StreamingRpc, + should_recover=should_recover, + initial_request=initial_request, + metadata=metadata + ) + + rpc.open() + + while rpc.is_active(): + print(rpc.recv()) + rpc.send(example_pb2.StreamingRpcRequest( + data='example')) + + Args: + start_rpc (grpc.StreamStreamMultiCallable): The gRPC method used to + start the RPC. + initial_request (Union[protobuf.Message, + Callable[None, protobuf.Message]]): The initial request to + yield. This is useful if an initial request is needed to start the + stream. + should_recover (Callable[[Exception], bool]): A function that returns + True if the stream should be recovered. This will be called + whenever an error is encountered on the stream. + should_terminate (Callable[[Exception], bool]): A function that returns + True if the stream should be terminated. This will be called + whenever an error is encountered on the stream. + metadata Sequence[Tuple(str, str)]: RPC metadata to include in + the request. + throttle_reopen (bool): If ``True``, throttling will be applied to + stream reopen calls. Defaults to ``False``. + """ + + def __init__( + self, + start_rpc, + should_recover, + should_terminate=_never_terminate, + initial_request=None, + metadata=None, + throttle_reopen=False, + ): + super(ResumableBidiRpc, self).__init__(start_rpc, initial_request, metadata) + self._should_recover = should_recover + self._should_terminate = should_terminate + self._operational_lock = threading.RLock() + self._finalized = False + self._finalize_lock = threading.Lock() + + if throttle_reopen: + self._reopen_throttle = _Throttle( + access_limit=5, time_window=datetime.timedelta(seconds=10) + ) + else: + self._reopen_throttle = None + + def _finalize(self, result): + with self._finalize_lock: + if self._finalized: + return + + for callback in self._callbacks: + callback(result) + + self._finalized = True + + def _on_call_done(self, future): + # Unlike the base class, we only execute the callbacks on a terminal + # error, not for errors that we can recover from. Note that grpc's + # "future" here is also a grpc.RpcError. + with self._operational_lock: + if self._should_terminate(future): + self._finalize(future) + elif not self._should_recover(future): + self._finalize(future) + else: + _LOGGER.debug("Re-opening stream from gRPC callback.") + self._reopen() + + def _reopen(self): + with self._operational_lock: + # Another thread already managed to re-open this stream. + if self.call is not None and self.call.is_active(): + _LOGGER.debug("Stream was already re-established.") + return + + self.call = None + # Request generator should exit cleanly since the RPC its bound to + # has exited. + self._request_generator = None + + # Note: we do not currently do any sort of backoff here. The + # assumption is that re-establishing the stream under normal + # circumstances will happen in intervals greater than 60s. + # However, it is possible in a degenerative case that the server + # closes the stream rapidly which would lead to thrashing here, + # but hopefully in those cases the server would return a non- + # retryable error. + + try: + if self._reopen_throttle: + with self._reopen_throttle: + self.open() + else: + self.open() + # If re-opening or re-calling the method fails for any reason, + # consider it a terminal error and finalize the stream. + except Exception as exc: + _LOGGER.debug("Failed to re-open stream due to %s", exc) + self._finalize(exc) + raise + + _LOGGER.info("Re-established stream") + + def _recoverable(self, method, *args, **kwargs): + """Wraps a method to recover the stream and retry on error. + + If a retryable error occurs while making the call, then the stream will + be re-opened and the method will be retried. This happens indefinitely + so long as the error is a retryable one. If an error occurs while + re-opening the stream, then this method will raise immediately and + trigger finalization of this object. + + Args: + method (Callable[..., Any]): The method to call. + args: The args to pass to the method. + kwargs: The kwargs to pass to the method. + """ + while True: + try: + return method(*args, **kwargs) + + except Exception as exc: + with self._operational_lock: + _LOGGER.debug("Call to retryable %r caused %s.", method, exc) + + if self._should_terminate(exc): + self.close() + _LOGGER.debug("Terminating %r due to %s.", method, exc) + self._finalize(exc) + break + + if not self._should_recover(exc): + self.close() + _LOGGER.debug("Not retrying %r due to %s.", method, exc) + self._finalize(exc) + raise exc + + _LOGGER.debug("Re-opening stream from retryable %r.", method) + self._reopen() + + def _send(self, request): + # Grab a reference to the RPC call. Because another thread (notably + # the gRPC error thread) can modify self.call (by invoking reopen), + # we should ensure our reference can not change underneath us. + # If self.call is modified (such as replaced with a new RPC call) then + # this will use the "old" RPC, which should result in the same + # exception passed into gRPC's error handler being raised here, which + # will be handled by the usual error handling in retryable. + with self._operational_lock: + call = self.call + + if call is None: + raise ValueError("Cannot send on an RPC that has never been opened.") + + # Don't use self.is_active(), as ResumableBidiRpc will overload it + # to mean something semantically different. + if call.is_active(): + self._request_queue.put(request) + pass + else: + # calling next should cause the call to raise. + next(call) + + def send(self, request): + return self._recoverable(self._send, request) + + def _recv(self): + with self._operational_lock: + call = self.call + + if call is None: + raise ValueError("Cannot recv on an RPC that has never been opened.") + + return next(call) + + def recv(self): + return self._recoverable(self._recv) + + def close(self): + self._finalize(None) + super(ResumableBidiRpc, self).close() + + @property + def is_active(self): + """bool: True if this stream is currently open and active.""" + # Use the operational lock. It's entirely possible for something + # to check the active state *while* the RPC is being retried. + # Also, use finalized to track the actual terminal state here. + # This is because if the stream is re-established by the gRPC thread + # it's technically possible to check this between when gRPC marks the + # RPC as inactive and when gRPC executes our callback that re-opens + # the stream. + with self._operational_lock: + return self.call is not None and not self._finalized + + +class BackgroundConsumer(object): + """A bi-directional stream consumer that runs in a separate thread. + + This maps the consumption of a stream into a callback-based model. It also + provides :func:`pause` and :func:`resume` to allow for flow-control. + + Example:: + + def should_recover(exc): + return ( + isinstance(exc, grpc.RpcError) and + exc.code() == grpc.StatusCode.UNAVAILABLE) + + initial_request = example_pb2.StreamingRpcRequest( + setting='example') + + rpc = ResumeableBidiRpc( + stub.StreamingRpc, + initial_request=initial_request, + should_recover=should_recover) + + def on_response(response): + print(response) + + consumer = BackgroundConsumer(rpc, on_response) + consumer.start() + + Note that error handling *must* be done by using the provided + ``bidi_rpc``'s ``add_done_callback``. This helper will automatically exit + whenever the RPC itself exits and will not provide any error details. + + Args: + bidi_rpc (BidiRpc): The RPC to consume. Should not have been + ``open()``ed yet. + on_response (Callable[[protobuf.Message], None]): The callback to + be called for every response on the stream. + on_fatal_exception (Callable[[Exception], None]): The callback to + be called on fatal errors during consumption. Default None. + """ + + def __init__(self, bidi_rpc, on_response, on_fatal_exception=None): + self._bidi_rpc = bidi_rpc + self._on_response = on_response + self._paused = False + self._on_fatal_exception = on_fatal_exception + self._wake = threading.Condition() + self._thread = None + self._operational_lock = threading.Lock() + + def _on_call_done(self, future): + # Resume the thread if it's paused, this prevents blocking forever + # when the RPC has terminated. + self.resume() + + def _thread_main(self, ready): + try: + ready.set() + self._bidi_rpc.add_done_callback(self._on_call_done) + self._bidi_rpc.open() + + while self._bidi_rpc.is_active: + # Do not allow the paused status to change at all during this + # section. There is a condition where we could be resumed + # between checking if we are paused and calling wake.wait(), + # which means that we will miss the notification to wake up + # (oops!) and wait for a notification that will never come. + # Keeping the lock throughout avoids that. + # In the future, we could use `Condition.wait_for` if we drop + # Python 2.7. + # See: https://github.com/googleapis/python-api-core/issues/211 + with self._wake: + while self._paused: + _LOGGER.debug("paused, waiting for waking.") + self._wake.wait() + _LOGGER.debug("woken.") + + _LOGGER.debug("waiting for recv.") + response = self._bidi_rpc.recv() + _LOGGER.debug("recved response.") + if self._on_response is not None: + self._on_response(response) + + except exceptions.GoogleAPICallError as exc: + _LOGGER.debug( + "%s caught error %s and will exit. Generally this is due to " + "the RPC itself being cancelled and the error will be " + "surfaced to the calling code.", + _BIDIRECTIONAL_CONSUMER_NAME, + exc, + exc_info=True, + ) + if self._on_fatal_exception is not None: + self._on_fatal_exception(exc) + + except Exception as exc: + _LOGGER.exception( + "%s caught unexpected exception %s and will exit.", + _BIDIRECTIONAL_CONSUMER_NAME, + exc, + ) + if self._on_fatal_exception is not None: + self._on_fatal_exception(exc) + + _LOGGER.info("%s exiting", _BIDIRECTIONAL_CONSUMER_NAME) + + def start(self): + """Start the background thread and begin consuming the thread.""" + with self._operational_lock: + ready = threading.Event() + thread = threading.Thread( + name=_BIDIRECTIONAL_CONSUMER_NAME, + target=self._thread_main, + args=(ready,), + daemon=True, + ) + thread.start() + # Other parts of the code rely on `thread.is_alive` which + # isn't sufficient to know if a thread is active, just that it may + # soon be active. This can cause races. Further protect + # against races by using a ready event and wait on it to be set. + ready.wait() + self._thread = thread + _LOGGER.debug("Started helper thread %s", thread.name) + + def stop(self): + """Stop consuming the stream and shutdown the background thread. + + NOTE: Cannot be called within `_thread_main`, since it is not + possible to join a thread to itself. + """ + with self._operational_lock: + self._bidi_rpc.close() + + if self._thread is not None: + # Resume the thread to wake it up in case it is sleeping. + self.resume() + # The daemonized thread may itself block, so don't wait + # for it longer than a second. + self._thread.join(1.0) + if self._thread.is_alive(): # pragma: NO COVER + _LOGGER.warning("Background thread did not exit.") + + self._thread = None + self._on_response = None + self._on_fatal_exception = None + + @property + def is_active(self): + """bool: True if the background thread is active.""" + return self._thread is not None and self._thread.is_alive() + + def pause(self): + """Pauses the response stream. + + This does *not* pause the request stream. + """ + with self._wake: + self._paused = True + + def resume(self): + """Resumes the response stream.""" + with self._wake: + self._paused = False + self._wake.notify_all() + + @property + def is_paused(self): + """bool: True if the response stream is paused.""" + return self._paused diff --git a/ocr/.venv/Lib/site-packages/google/api_core/bidi_async.py b/ocr/.venv/Lib/site-packages/google/api_core/bidi_async.py new file mode 100644 index 00000000..d73b4c98 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/bidi_async.py @@ -0,0 +1,244 @@ +# Copyright 2025, Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Asynchronous bi-directional streaming RPC helpers.""" + +import asyncio +import logging +from typing import Callable, Optional, Union + +from grpc import aio + +from google.api_core import exceptions +from google.api_core.bidi_base import BidiRpcBase + +from google.protobuf.message import Message as ProtobufMessage + + +_LOGGER = logging.getLogger(__name__) + + +class _AsyncRequestQueueGenerator: + """_AsyncRequestQueueGenerator is a helper class for sending asynchronous + requests to a gRPC stream from a Queue. + + This generator takes asynchronous requests off a given `asyncio.Queue` and + yields them to gRPC. + + It's useful when you have an indeterminate, indefinite, or otherwise + open-ended set of requests to send through a request-streaming (or + bidirectional) RPC. + + Example:: + + requests = _AsyncRequestQueueGenerator(q) + call = await stub.StreamingRequest(requests) + requests.call = call + + async for response in call: + print(response) + await q.put(...) + + Args: + queue (asyncio.Queue): The request queue. + initial_request (Union[ProtobufMessage, + Callable[[], ProtobufMessage]]): The initial request to + yield. This is done independently of the request queue to allow for + easily restarting streams that require some initial configuration + request. + """ + + def __init__( + self, + queue: asyncio.Queue, + initial_request: Optional[ + Union[ProtobufMessage, Callable[[], ProtobufMessage]] + ] = None, + ) -> None: + self._queue = queue + self._initial_request = initial_request + self.call: Optional[aio.Call] = None + + def _is_active(self) -> bool: + """Returns true if the call is not set or not completed.""" + # Note: there is a possibility that this starts *before* the call + # property is set. So we have to check if self.call is set before + # seeing if it's active. We need to return True if self.call is None. + # See https://github.com/googleapis/python-api-core/issues/560. + return self.call is None or not self.call.done() + + async def __aiter__(self): + # The reason this is necessary is because it lets the user have + # control on when they would want to send requests proto messages + # instead of sending all of them initially. + # + # This is achieved via asynchronous queue (asyncio.Queue), + # gRPC awaits until there's a message in the queue. + # + # Finally, it allows for retrying without swapping queues because if + # it does pull an item off the queue when the RPC is inactive, it'll + # immediately put it back and then exit. This is necessary because + # yielding the item in this case will cause gRPC to discard it. In + # practice, this means that the order of messages is not guaranteed. + # If preserving order is necessary it would be easy to use a priority + # queue. + if self._initial_request is not None: + if callable(self._initial_request): + yield self._initial_request() + else: + yield self._initial_request + + while True: + item = await self._queue.get() + + # The consumer explicitly sent "None", indicating that the request + # should end. + if item is None: + _LOGGER.debug("Cleanly exiting request generator.") + return + + if not self._is_active(): + # We have an item, but the call is closed. We should put the + # item back on the queue so that the next call can consume it. + await self._queue.put(item) + _LOGGER.debug( + "Inactive call, replacing item on queue and exiting " + "request generator." + ) + return + + yield item + + +class AsyncBidiRpc(BidiRpcBase): + """A helper for consuming a async bi-directional streaming RPC. + + This maps gRPC's built-in interface which uses a request iterator and a + response iterator into a socket-like :func:`send` and :func:`recv`. This + is a more useful pattern for long-running or asymmetric streams (streams + where there is not a direct correlation between the requests and + responses). + + Example:: + + initial_request = example_pb2.StreamingRpcRequest( + setting='example') + rpc = AsyncBidiRpc( + stub.StreamingRpc, + initial_request=initial_request, + metadata=[('name', 'value')] + ) + + await rpc.open() + + while rpc.is_active: + print(await rpc.recv()) + await rpc.send(example_pb2.StreamingRpcRequest( + data='example')) + + await rpc.close() + + This does *not* retry the stream on errors. + + Args: + start_rpc (grpc.aio.StreamStreamMultiCallable): The gRPC method used to + start the RPC. + initial_request (Union[ProtobufMessage, + Callable[[], ProtobufMessage]]): The initial request to + yield. This is useful if an initial request is needed to start the + stream. + metadata (Sequence[Tuple(str, str)]): RPC metadata to include in + the request. + """ + + def _create_queue(self) -> asyncio.Queue: + """Create a queue for requests.""" + return asyncio.Queue() + + async def open(self) -> None: + """Opens the stream.""" + if self.is_active: + raise ValueError("Cannot open an already open stream.") + + request_generator = _AsyncRequestQueueGenerator( + self._request_queue, initial_request=self._initial_request + ) + try: + call = await self._start_rpc(request_generator, metadata=self._rpc_metadata) + except exceptions.GoogleAPICallError as exc: + # The original `grpc.aio.AioRpcError` (which is usually also a + # `grpc.aio.Call`) is available from the ``response`` property on + # the mapped exception. + self._on_call_done(exc.response) + raise + + request_generator.call = call + + # TODO: api_core should expose the future interface for wrapped + # callables as well. + if hasattr(call, "_wrapped"): # pragma: NO COVER + call._wrapped.add_done_callback(self._on_call_done) + else: + call.add_done_callback(self._on_call_done) + + self._request_generator = request_generator + self.call = call + + async def close(self) -> None: + """Closes the stream.""" + if self.call is None: + return + + await self._request_queue.put(None) + self.call.cancel() + self._request_generator = None + self._initial_request = None + self._callbacks = [] + # Don't set self.call to None. Keep it around so that send/recv can + # raise the error. + + async def send(self, request: ProtobufMessage) -> None: + """Queue a message to be sent on the stream. + + If the underlying RPC has been closed, this will raise. + + Args: + request (ProtobufMessage): The request to send. + """ + if self.call is None: + raise ValueError("Cannot send on an RPC stream that has never been opened.") + + if not self.call.done(): + await self._request_queue.put(request) + else: + # calling read should cause the call to raise. + await self.call.read() + + async def recv(self) -> ProtobufMessage: + """Wait for a message to be returned from the stream. + + If the underlying RPC has been closed, this will raise. + + Returns: + ProtobufMessage: The received message. + """ + if self.call is None: + raise ValueError("Cannot recv on an RPC stream that has never been opened.") + + return await self.call.read() + + @property + def is_active(self) -> bool: + """Whether the stream is currently open and active.""" + return self.call is not None and not self.call.done() diff --git a/ocr/.venv/Lib/site-packages/google/api_core/bidi_base.py b/ocr/.venv/Lib/site-packages/google/api_core/bidi_base.py new file mode 100644 index 00000000..9288fda4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/bidi_base.py @@ -0,0 +1,88 @@ +# Copyright 2025, Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may obtain a copy of the License at +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Base class for bi-directional streaming RPC helpers.""" + + +class BidiRpcBase: + """A base class for consuming a bi-directional streaming RPC. + + This maps gRPC's built-in interface which uses a request iterator and a + response iterator into a socket-like :func:`send` and :func:`recv`. This + is a more useful pattern for long-running or asymmetric streams (streams + where there is not a direct correlation between the requests and + responses). + + This does *not* retry the stream on errors. + + Args: + start_rpc (Union[grpc.StreamStreamMultiCallable, + grpc.aio.StreamStreamMultiCallable]): The gRPC method used + to start the RPC. + initial_request (Union[protobuf.Message, + Callable[[], protobuf.Message]]): The initial request to + yield. This is useful if an initial request is needed to start the + stream. + metadata (Sequence[Tuple(str, str)]): RPC metadata to include in + the request. + """ + + def __init__(self, start_rpc, initial_request=None, metadata=None): + self._start_rpc = start_rpc + self._initial_request = initial_request + self._rpc_metadata = metadata + self._request_queue = self._create_queue() + self._request_generator = None + self._callbacks = [] + self.call = None + + def _create_queue(self): + """Create a queue for requests.""" + raise NotImplementedError("`_create_queue` is not implemented.") + + def add_done_callback(self, callback): + """Adds a callback that will be called when the RPC terminates. + + This occurs when the RPC errors or is successfully terminated. + + Args: + callback (Union[Callable[[grpc.Future], None], Callable[[Any], None]]): + The callback to execute after gRPC call completed (success or + failure). + + For sync streaming gRPC: Callable[[grpc.Future], None] + + For async streaming gRPC: Callable[[Any], None] + """ + self._callbacks.append(callback) + + def _on_call_done(self, future): + # This occurs when the RPC errors or is successfully terminated. + # Note that grpc's "future" here can also be a grpc.RpcError. + # See note in https://github.com/grpc/grpc/issues/10885#issuecomment-302651331 + # that `grpc.RpcError` is also `grpc.Call`. + # for asynchronous gRPC call it would be `grpc.aio.AioRpcError` + + # Note: sync callbacks can be limiting for async code, because you can't + # await anything in a sync callback. + for callback in self._callbacks: + callback(future) + + @property + def is_active(self): + """True if the gRPC call is not done yet.""" + raise NotImplementedError("`is_active` is not implemented.") + + @property + def pending_requests(self): + """Estimate of the number of queued requests.""" + return self._request_queue.qsize() diff --git a/ocr/.venv/Lib/site-packages/google/api_core/client_info.py b/ocr/.venv/Lib/site-packages/google/api_core/client_info.py new file mode 100644 index 00000000..f0678d24 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/client_info.py @@ -0,0 +1,114 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for providing client information. + +Client information is used to send information about the calling client, +such as the library and Python version, to API services. +""" + +import platform +from typing import Union + +from google.api_core import version as api_core_version + +_PY_VERSION = platform.python_version() +_API_CORE_VERSION = api_core_version.__version__ + +_GRPC_VERSION: Union[str, None] + +try: + import grpc + + _GRPC_VERSION = grpc.__version__ +except ImportError: # pragma: NO COVER + _GRPC_VERSION = None + + +class ClientInfo(object): + """Client information used to generate a user-agent for API calls. + + This user-agent information is sent along with API calls to allow the + receiving service to do analytics on which versions of Python and Google + libraries are being used. + + Args: + python_version (str): The Python interpreter version, for example, + ``'3.9.6'``. + grpc_version (Optional[str]): The gRPC library version. + api_core_version (str): The google-api-core library version. + gapic_version (Optional[str]): The version of gapic-generated client + library, if the library was generated by gapic. + client_library_version (Optional[str]): The version of the client + library, generally used if the client library was not generated + by gapic or if additional functionality was built on top of + a gapic client library. + user_agent (Optional[str]): Prefix to the user agent header. This is + used to supply information such as application name or partner tool. + Recommended format: ``application-or-tool-ID/major.minor.version``. + rest_version (Optional[str]): A string with labeled versions of the + dependencies used for REST transport. + protobuf_runtime_version (Optional[str]): The protobuf runtime version. + """ + + def __init__( + self, + python_version=_PY_VERSION, + grpc_version=_GRPC_VERSION, + api_core_version=_API_CORE_VERSION, + gapic_version=None, + client_library_version=None, + user_agent=None, + rest_version=None, + protobuf_runtime_version=None, + ): + self.python_version = python_version + self.grpc_version = grpc_version + self.api_core_version = api_core_version + self.gapic_version = gapic_version + self.client_library_version = client_library_version + self.user_agent = user_agent + self.rest_version = rest_version + self.protobuf_runtime_version = protobuf_runtime_version + + def to_user_agent(self): + """Returns the user-agent string for this client info.""" + + # Note: the order here is important as the internal metrics system + # expects these items to be in specific locations. + ua = "" + + if self.user_agent is not None: + ua += "{user_agent} " + + ua += "gl-python/{python_version} " + + if self.grpc_version is not None: + ua += "grpc/{grpc_version} " + + if self.rest_version is not None: + ua += "rest/{rest_version} " + + ua += "gax/{api_core_version} " + + if self.gapic_version is not None: + ua += "gapic/{gapic_version} " + + if self.client_library_version is not None: + ua += "gccl/{client_library_version} " + + if self.protobuf_runtime_version is not None: + ua += "pb/{protobuf_runtime_version} " + + return ua.format(**self.__dict__).strip() diff --git a/ocr/.venv/Lib/site-packages/google/api_core/client_logging.py b/ocr/.venv/Lib/site-packages/google/api_core/client_logging.py new file mode 100644 index 00000000..837e3e0c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/client_logging.py @@ -0,0 +1,144 @@ +import logging +import json +import os + +from typing import List, Optional + +_LOGGING_INITIALIZED = False +_BASE_LOGGER_NAME = "google" + +# Fields to be included in the StructuredLogFormatter. +# +# TODO(https://github.com/googleapis/python-api-core/issues/761): Update this list to support additional logging fields. +_recognized_logging_fields = [ + "httpRequest", + "rpcName", + "serviceName", + "credentialsType", + "credentialsInfo", + "universeDomain", + "request", + "response", + "metadata", + "retryAttempt", + "httpResponse", +] # Additional fields to be Logged. + + +def logger_configured(logger) -> bool: + """Determines whether `logger` has non-default configuration + + Args: + logger: The logger to check. + + Returns: + bool: Whether the logger has any non-default configuration. + """ + return ( + logger.handlers != [] or logger.level != logging.NOTSET or not logger.propagate + ) + + +def initialize_logging(): + """Initializes "google" loggers, partly based on the environment variable + + Initializes the "google" logger and any loggers (at the "google" + level or lower) specified by the environment variable + GOOGLE_SDK_PYTHON_LOGGING_SCOPE, as long as none of these loggers + were previously configured. If any such loggers (including the + "google" logger) are initialized, they are set to NOT propagate + log events up to their parent loggers. + + This initialization is executed only once, and hence the + environment variable is only processed the first time this + function is called. + """ + global _LOGGING_INITIALIZED + if _LOGGING_INITIALIZED: + return + scopes = os.getenv("GOOGLE_SDK_PYTHON_LOGGING_SCOPE", "") + setup_logging(scopes) + _LOGGING_INITIALIZED = True + + +def parse_logging_scopes(scopes: Optional[str] = None) -> List[str]: + """Returns a list of logger names. + + Splits the single string of comma-separated logger names into a list of individual logger name strings. + + Args: + scopes: The name of a single logger. (In the future, this will be a comma-separated list of multiple loggers.) + + Returns: + A list of all the logger names in scopes. + """ + if not scopes: + return [] + # TODO(https://github.com/googleapis/python-api-core/issues/759): check if the namespace is a valid namespace. + # TODO(b/380481951): Support logging multiple scopes. + # TODO(b/380483756): Raise or log a warning for an invalid scope. + namespaces = [scopes] + return namespaces + + +def configure_defaults(logger): + """Configures `logger` to emit structured info to stdout.""" + if not logger_configured(logger): + console_handler = logging.StreamHandler() + logger.setLevel("DEBUG") + logger.propagate = False + formatter = StructuredLogFormatter() + console_handler.setFormatter(formatter) + logger.addHandler(console_handler) + + +def setup_logging(scopes: str = ""): + """Sets up logging for the specified `scopes`. + + If the loggers specified in `scopes` have not been previously + configured, this will configure them to emit structured log + entries to stdout, and to not propagate their log events to their + parent loggers. Additionally, if the "google" logger (whether it + was specified in `scopes` or not) was not previously configured, + it will also configure it to not propagate log events to the root + logger. + + Args: + scopes: The name of a single logger. (In the future, this will be a comma-separated list of multiple loggers.) + + """ + + # only returns valid logger scopes (namespaces) + # this list has at most one element. + logger_names = parse_logging_scopes(scopes) + + for namespace in logger_names: + # This will either create a module level logger or get the reference of the base logger instantiated above. + logger = logging.getLogger(namespace) + + # Configure default settings. + configure_defaults(logger) + + # disable log propagation at base logger level to the root logger only if a base logger is not already configured via code changes. + base_logger = logging.getLogger(_BASE_LOGGER_NAME) + if not logger_configured(base_logger): + base_logger.propagate = False + + +# TODO(https://github.com/googleapis/python-api-core/issues/763): Expand documentation. +class StructuredLogFormatter(logging.Formatter): + # TODO(https://github.com/googleapis/python-api-core/issues/761): ensure that additional fields such as + # function name, file name, and line no. appear in a log output. + def format(self, record: logging.LogRecord): + log_obj = { + "timestamp": self.formatTime(record), + "severity": record.levelname, + "name": record.name, + "message": record.getMessage(), + } + + for field_name in _recognized_logging_fields: + value = getattr(record, field_name, None) + if value is not None: + log_obj[field_name] = value + return json.dumps(log_obj) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/client_options.py b/ocr/.venv/Lib/site-packages/google/api_core/client_options.py new file mode 100644 index 00000000..30bff482 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/client_options.py @@ -0,0 +1,160 @@ +# Copyright 2019 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Client options class. + +Client options provide a consistent interface for user options to be defined +across clients. + +You can pass a client options object to a client. + +.. code-block:: python + + from google.api_core.client_options import ClientOptions + from google.cloud.vision_v1 import ImageAnnotatorClient + + def get_client_cert(): + # code to load client certificate and private key. + return client_cert_bytes, client_private_key_bytes + + options = ClientOptions(api_endpoint="foo.googleapis.com", + client_cert_source=get_client_cert) + + client = ImageAnnotatorClient(client_options=options) + +You can also pass a mapping object. + +.. code-block:: python + + from google.cloud.vision_v1 import ImageAnnotatorClient + + client = ImageAnnotatorClient( + client_options={ + "api_endpoint": "foo.googleapis.com", + "client_cert_source" : get_client_cert + }) + + +""" + +from typing import Callable, Mapping, Optional, Sequence, Tuple +import warnings + +from google.api_core import general_helpers + + +class ClientOptions(object): + """Client Options used to set options on clients. + + Args: + api_endpoint (Optional[str]): The desired API endpoint, e.g., + compute.googleapis.com + client_cert_source (Optional[Callable[[], Tuple[bytes, bytes]]]): A callback + which returns client certificate bytes and private key bytes both in + PEM format. ``client_cert_source`` and ``client_encrypted_cert_source`` + are mutually exclusive. + client_encrypted_cert_source (Optional[Callable[[], Tuple[str, str, bytes]]]): + A callback which returns client certificate file path, encrypted + private key file path, and the passphrase bytes.``client_cert_source`` + and ``client_encrypted_cert_source`` are mutually exclusive. + quota_project_id (Optional[str]): A project name that a client's + quota belongs to. + credentials_file (Optional[str]): Deprecated. A path to a file storing credentials. + ``credentials_file` and ``api_key`` are mutually exclusive. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + scopes (Optional[Sequence[str]]): OAuth access token override scopes. + api_key (Optional[str]): Google API key. ``credentials_file`` and + ``api_key`` are mutually exclusive. + api_audience (Optional[str]): The intended audience for the API calls + to the service that will be set when using certain 3rd party + authentication flows. Audience is typically a resource identifier. + If not set, the service endpoint value will be used as a default. + An example of a valid ``api_audience`` is: "https://language.googleapis.com". + universe_domain (Optional[str]): The desired universe domain. This must match + the one in credentials. If not set, the default universe domain is + `googleapis.com`. If both `api_endpoint` and `universe_domain` are set, + then `api_endpoint` is used as the service endpoint. If `api_endpoint` is + not specified, the format will be `{service}.{universe_domain}`. + + Raises: + ValueError: If both ``client_cert_source`` and ``client_encrypted_cert_source`` + are provided, or both ``credentials_file`` and ``api_key`` are provided. + """ + + def __init__( + self, + api_endpoint: Optional[str] = None, + client_cert_source: Optional[Callable[[], Tuple[bytes, bytes]]] = None, + client_encrypted_cert_source: Optional[ + Callable[[], Tuple[str, str, bytes]] + ] = None, + quota_project_id: Optional[str] = None, + credentials_file: Optional[str] = None, + scopes: Optional[Sequence[str]] = None, + api_key: Optional[str] = None, + api_audience: Optional[str] = None, + universe_domain: Optional[str] = None, + ): + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + if client_cert_source and client_encrypted_cert_source: + raise ValueError( + "client_cert_source and client_encrypted_cert_source are mutually exclusive" + ) + if api_key and credentials_file: + raise ValueError("api_key and credentials_file are mutually exclusive") + self.api_endpoint = api_endpoint + self.client_cert_source = client_cert_source + self.client_encrypted_cert_source = client_encrypted_cert_source + self.quota_project_id = quota_project_id + self.credentials_file = credentials_file + self.scopes = scopes + self.api_key = api_key + self.api_audience = api_audience + self.universe_domain = universe_domain + + def __repr__(self) -> str: + return "ClientOptions: " + repr(self.__dict__) + + +def from_dict(options: Mapping[str, object]) -> ClientOptions: + """Construct a client options object from a mapping object. + + Args: + options (collections.abc.Mapping): A mapping object with client options. + See the docstring for ClientOptions for details on valid arguments. + """ + + client_options = ClientOptions() + + for key, value in options.items(): + if hasattr(client_options, key): + setattr(client_options, key, value) + else: + raise ValueError("ClientOptions does not accept an option '" + key + "'") + + return client_options diff --git a/ocr/.venv/Lib/site-packages/google/api_core/datetime_helpers.py b/ocr/.venv/Lib/site-packages/google/api_core/datetime_helpers.py new file mode 100644 index 00000000..c3792300 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/datetime_helpers.py @@ -0,0 +1,298 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for :mod:`datetime`.""" + +import calendar +import datetime +import re + +from google.protobuf import timestamp_pb2 + + +_UTC_EPOCH = datetime.datetime(1970, 1, 1, tzinfo=datetime.timezone.utc) +_RFC3339_MICROS = "%Y-%m-%dT%H:%M:%S.%fZ" +_RFC3339_NO_FRACTION = "%Y-%m-%dT%H:%M:%S" +# datetime.strptime cannot handle nanosecond precision: parse w/ regex +_RFC3339_NANOS = re.compile( + r""" + (?P + \d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2} # YYYY-MM-DDTHH:MM:SS + ) + ( # Optional decimal part + \. # decimal point + (?P\d{1,9}) # nanoseconds, maybe truncated + )? + Z # Zulu +""", + re.VERBOSE, +) + + +def utcnow(): + """A :meth:`datetime.datetime.utcnow()` alias to allow mocking in tests.""" + return datetime.datetime.now(tz=datetime.timezone.utc).replace(tzinfo=None) + + +def to_milliseconds(value): + """Convert a zone-aware datetime to milliseconds since the unix epoch. + + Args: + value (datetime.datetime): The datetime to covert. + + Returns: + int: Milliseconds since the unix epoch. + """ + micros = to_microseconds(value) + return micros // 1000 + + +def from_microseconds(value): + """Convert timestamp in microseconds since the unix epoch to datetime. + + Args: + value (float): The timestamp to convert, in microseconds. + + Returns: + datetime.datetime: The datetime object equivalent to the timestamp in + UTC. + """ + return _UTC_EPOCH + datetime.timedelta(microseconds=value) + + +def to_microseconds(value): + """Convert a datetime to microseconds since the unix epoch. + + Args: + value (datetime.datetime): The datetime to covert. + + Returns: + int: Microseconds since the unix epoch. + """ + if not value.tzinfo: + value = value.replace(tzinfo=datetime.timezone.utc) + # Regardless of what timezone is on the value, convert it to UTC. + value = value.astimezone(datetime.timezone.utc) + # Convert the datetime to a microsecond timestamp. + return int(calendar.timegm(value.timetuple()) * 1e6) + value.microsecond + + +def from_iso8601_date(value): + """Convert a ISO8601 date string to a date. + + Args: + value (str): The ISO8601 date string. + + Returns: + datetime.date: A date equivalent to the date string. + """ + return datetime.datetime.strptime(value, "%Y-%m-%d").date() + + +def from_iso8601_time(value): + """Convert a zoneless ISO8601 time string to a time. + + Args: + value (str): The ISO8601 time string. + + Returns: + datetime.time: A time equivalent to the time string. + """ + return datetime.datetime.strptime(value, "%H:%M:%S").time() + + +def from_rfc3339(value): + """Convert an RFC3339-format timestamp to a native datetime. + + Supported formats include those without fractional seconds, or with + any fraction up to nanosecond precision. + + .. note:: + Python datetimes do not support nanosecond precision; this function + therefore truncates such values to microseconds. + + Args: + value (str): The RFC3339 string to convert. + + Returns: + datetime.datetime: The datetime object equivalent to the timestamp + in UTC. + + Raises: + ValueError: If the timestamp does not match the RFC3339 + regular expression. + """ + with_nanos = _RFC3339_NANOS.match(value) + + if with_nanos is None: + raise ValueError( + "Timestamp: {!r}, does not match pattern: {!r}".format( + value, _RFC3339_NANOS.pattern + ) + ) + + bare_seconds = datetime.datetime.strptime( + with_nanos.group("no_fraction"), _RFC3339_NO_FRACTION + ) + fraction = with_nanos.group("nanos") + + if fraction is None: + micros = 0 + else: + scale = 9 - len(fraction) + nanos = int(fraction) * (10**scale) + micros = nanos // 1000 + + return bare_seconds.replace(microsecond=micros, tzinfo=datetime.timezone.utc) + + +from_rfc3339_nanos = from_rfc3339 # from_rfc3339_nanos method was deprecated. + + +def to_rfc3339(value, ignore_zone=True): + """Convert a datetime to an RFC3339 timestamp string. + + Args: + value (datetime.datetime): + The datetime object to be converted to a string. + ignore_zone (bool): If True, then the timezone (if any) of the + datetime object is ignored and the datetime is treated as UTC. + + Returns: + str: The RFC3339 formatted string representing the datetime. + """ + if not ignore_zone and value.tzinfo is not None: + # Convert to UTC and remove the time zone info. + value = value.replace(tzinfo=None) - value.utcoffset() + + return value.strftime(_RFC3339_MICROS) + + +class DatetimeWithNanoseconds(datetime.datetime): + """Track nanosecond in addition to normal datetime attrs. + + Nanosecond can be passed only as a keyword argument. + """ + + __slots__ = ("_nanosecond",) + + # pylint: disable=arguments-differ + def __new__(cls, *args, **kw): + nanos = kw.pop("nanosecond", 0) + if nanos > 0: + if "microsecond" in kw: + raise TypeError("Specify only one of 'microsecond' or 'nanosecond'") + kw["microsecond"] = nanos // 1000 + inst = datetime.datetime.__new__(cls, *args, **kw) + inst._nanosecond = nanos or 0 + return inst + + # pylint: disable=arguments-differ + + @property + def nanosecond(self): + """Read-only: nanosecond precision.""" + return self._nanosecond + + def rfc3339(self): + """Return an RFC3339-compliant timestamp. + + Returns: + (str): Timestamp string according to RFC3339 spec. + """ + if self._nanosecond == 0: + return to_rfc3339(self) + nanos = str(self._nanosecond).rjust(9, "0").rstrip("0") + return "{}.{}Z".format(self.strftime(_RFC3339_NO_FRACTION), nanos) + + @classmethod + def from_rfc3339(cls, stamp): + """Parse RFC3339-compliant timestamp, preserving nanoseconds. + + Args: + stamp (str): RFC3339 stamp, with up to nanosecond precision + + Returns: + :class:`DatetimeWithNanoseconds`: + an instance matching the timestamp string + + Raises: + ValueError: if `stamp` does not match the expected format + """ + with_nanos = _RFC3339_NANOS.match(stamp) + if with_nanos is None: + raise ValueError( + "Timestamp: {}, does not match pattern: {}".format( + stamp, _RFC3339_NANOS.pattern + ) + ) + bare = datetime.datetime.strptime( + with_nanos.group("no_fraction"), _RFC3339_NO_FRACTION + ) + fraction = with_nanos.group("nanos") + if fraction is None: + nanos = 0 + else: + scale = 9 - len(fraction) + nanos = int(fraction) * (10**scale) + return cls( + bare.year, + bare.month, + bare.day, + bare.hour, + bare.minute, + bare.second, + nanosecond=nanos, + tzinfo=datetime.timezone.utc, + ) + + def timestamp_pb(self): + """Return a timestamp message. + + Returns: + (:class:`~google.protobuf.timestamp_pb2.Timestamp`): Timestamp message + """ + inst = ( + self + if self.tzinfo is not None + else self.replace(tzinfo=datetime.timezone.utc) + ) + delta = inst - _UTC_EPOCH + seconds = int(delta.total_seconds()) + nanos = self._nanosecond or self.microsecond * 1000 + return timestamp_pb2.Timestamp(seconds=seconds, nanos=nanos) + + @classmethod + def from_timestamp_pb(cls, stamp): + """Parse RFC3339-compliant timestamp, preserving nanoseconds. + + Args: + stamp (:class:`~google.protobuf.timestamp_pb2.Timestamp`): timestamp message + + Returns: + :class:`DatetimeWithNanoseconds`: + an instance matching the timestamp message + """ + microseconds = int(stamp.seconds * 1e6) + bare = from_microseconds(microseconds) + return cls( + bare.year, + bare.month, + bare.day, + bare.hour, + bare.minute, + bare.second, + nanosecond=stamp.nanos, + tzinfo=datetime.timezone.utc, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/exceptions.py b/ocr/.venv/Lib/site-packages/google/api_core/exceptions.py new file mode 100644 index 00000000..e3eb696c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/exceptions.py @@ -0,0 +1,670 @@ +# Copyright 2014 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Exceptions raised by Google API core & clients. + +This module provides base classes for all errors raised by libraries based +on :mod:`google.api_core`, including both HTTP and gRPC clients. +""" + +from __future__ import absolute_import +from __future__ import unicode_literals + +import http.client +from typing import Optional, Dict +from typing import Union +import warnings + +from google.rpc import error_details_pb2 + + +def _warn_could_not_import_grpcio_status(): + warnings.warn( + "Please install grpcio-status to obtain helpful grpc error messages.", + ImportWarning, + ) # pragma: NO COVER + + +try: + import grpc + + try: + from grpc_status import rpc_status + except ImportError: # pragma: NO COVER + _warn_could_not_import_grpcio_status() + rpc_status = None +except ImportError: # pragma: NO COVER + grpc = None + +# Lookup tables for mapping exceptions from HTTP and gRPC transports. +# Populated by _GoogleAPICallErrorMeta +_HTTP_CODE_TO_EXCEPTION: Dict[int, Exception] = {} +_GRPC_CODE_TO_EXCEPTION: Dict[int, Exception] = {} + +# Additional lookup table to map integer status codes to grpc status code +# grpc does not currently support initializing enums from ints +# i.e., grpc.StatusCode(5) raises an error +_INT_TO_GRPC_CODE = {} +if grpc is not None: # pragma: no branch + for x in grpc.StatusCode: + _INT_TO_GRPC_CODE[x.value[0]] = x + + +class GoogleAPIError(Exception): + """Base class for all exceptions raised by Google API Clients.""" + + pass + + +class DuplicateCredentialArgs(GoogleAPIError): + """Raised when multiple credentials are passed.""" + + pass + + +class RetryError(GoogleAPIError): + """Raised when a function has exhausted all of its available retries. + + Args: + message (str): The exception message. + cause (Exception): The last exception raised when retrying the + function. + """ + + def __init__(self, message, cause): + super(RetryError, self).__init__(message) + self.message = message + self._cause = cause + + @property + def cause(self): + """The last exception raised when retrying the function.""" + return self._cause + + def __str__(self): + return "{}, last exception: {}".format(self.message, self.cause) + + +class _GoogleAPICallErrorMeta(type): + """Metaclass for registering GoogleAPICallError subclasses.""" + + def __new__(mcs, name, bases, class_dict): + cls = type.__new__(mcs, name, bases, class_dict) + if cls.code is not None: + _HTTP_CODE_TO_EXCEPTION.setdefault(cls.code, cls) + if cls.grpc_status_code is not None: + _GRPC_CODE_TO_EXCEPTION.setdefault(cls.grpc_status_code, cls) + return cls + + +class GoogleAPICallError(GoogleAPIError, metaclass=_GoogleAPICallErrorMeta): + """Base class for exceptions raised by calling API methods. + + Args: + message (str): The exception message. + errors (Sequence[Any]): An optional list of error details. + details (Sequence[Any]): An optional list of objects defined in google.rpc.error_details. + response (Union[requests.Request, grpc.Call]): The response or + gRPC call metadata. + error_info (Union[error_details_pb2.ErrorInfo, None]): An optional object containing error info + (google.rpc.error_details.ErrorInfo). + """ + + code: Union[int, None] = None + """Optional[int]: The HTTP status code associated with this error. + + This may be ``None`` if the exception does not have a direct mapping + to an HTTP error. + + See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html + """ + + grpc_status_code = None + """Optional[grpc.StatusCode]: The gRPC status code associated with this + error. + + This may be ``None`` if the exception does not match up to a gRPC error. + """ + + def __init__(self, message, errors=(), details=(), response=None, error_info=None): + super(GoogleAPICallError, self).__init__(message) + self.message = message + """str: The exception message.""" + self._errors = errors + self._details = details + self._response = response + self._error_info = error_info + + def __str__(self): + error_msg = "{} {}".format(self.code, self.message) + if self.details: + error_msg = "{} {}".format(error_msg, self.details) + # Note: This else condition can be removed once proposal A from + # b/284179390 is implemented. + else: + if self.errors: + errors = [ + f"{error.code}: {error.message}" + for error in self.errors + if hasattr(error, "code") and hasattr(error, "message") + ] + if errors: + error_msg = "{} {}".format(error_msg, "\n".join(errors)) + return error_msg + + @property + def reason(self): + """The reason of the error. + + Reference: + https://github.com/googleapis/googleapis/blob/master/google/rpc/error_details.proto#L112 + + Returns: + Union[str, None]: An optional string containing reason of the error. + """ + return self._error_info.reason if self._error_info else None + + @property + def domain(self): + """The logical grouping to which the "reason" belongs. + + Reference: + https://github.com/googleapis/googleapis/blob/master/google/rpc/error_details.proto#L112 + + Returns: + Union[str, None]: An optional string containing a logical grouping to which the "reason" belongs. + """ + return self._error_info.domain if self._error_info else None + + @property + def metadata(self): + """Additional structured details about this error. + + Reference: + https://github.com/googleapis/googleapis/blob/master/google/rpc/error_details.proto#L112 + + Returns: + Union[Dict[str, str], None]: An optional object containing structured details about the error. + """ + return self._error_info.metadata if self._error_info else None + + @property + def errors(self): + """Detailed error information. + + Returns: + Sequence[Any]: A list of additional error details. + """ + return list(self._errors) + + @property + def details(self): + """Information contained in google.rpc.status.details. + + Reference: + https://github.com/googleapis/googleapis/blob/master/google/rpc/status.proto + https://github.com/googleapis/googleapis/blob/master/google/rpc/error_details.proto + + Returns: + Sequence[Any]: A list of structured objects from error_details.proto + """ + return list(self._details) + + @property + def response(self): + """Optional[Union[requests.Request, grpc.Call]]: The response or + gRPC call metadata.""" + return self._response + + +class Redirection(GoogleAPICallError): + """Base class for for all redirection (HTTP 3xx) responses.""" + + +class MovedPermanently(Redirection): + """Exception mapping a ``301 Moved Permanently`` response.""" + + code = http.client.MOVED_PERMANENTLY + + +class NotModified(Redirection): + """Exception mapping a ``304 Not Modified`` response.""" + + code = http.client.NOT_MODIFIED + + +class TemporaryRedirect(Redirection): + """Exception mapping a ``307 Temporary Redirect`` response.""" + + code = http.client.TEMPORARY_REDIRECT + + +class ResumeIncomplete(Redirection): + """Exception mapping a ``308 Resume Incomplete`` response. + + .. note:: :attr:`http.client.PERMANENT_REDIRECT` is ``308``, but Google + APIs differ in their use of this status code. + """ + + code = 308 + + +class ClientError(GoogleAPICallError): + """Base class for all client error (HTTP 4xx) responses.""" + + +class BadRequest(ClientError): + """Exception mapping a ``400 Bad Request`` response.""" + + code = http.client.BAD_REQUEST + + +class InvalidArgument(BadRequest): + """Exception mapping a :attr:`grpc.StatusCode.INVALID_ARGUMENT` error.""" + + grpc_status_code = grpc.StatusCode.INVALID_ARGUMENT if grpc is not None else None + + +class FailedPrecondition(BadRequest): + """Exception mapping a :attr:`grpc.StatusCode.FAILED_PRECONDITION` + error.""" + + grpc_status_code = grpc.StatusCode.FAILED_PRECONDITION if grpc is not None else None + + +class OutOfRange(BadRequest): + """Exception mapping a :attr:`grpc.StatusCode.OUT_OF_RANGE` error.""" + + grpc_status_code = grpc.StatusCode.OUT_OF_RANGE if grpc is not None else None + + +class Unauthorized(ClientError): + """Exception mapping a ``401 Unauthorized`` response.""" + + code = http.client.UNAUTHORIZED + + +class Unauthenticated(Unauthorized): + """Exception mapping a :attr:`grpc.StatusCode.UNAUTHENTICATED` error.""" + + grpc_status_code = grpc.StatusCode.UNAUTHENTICATED if grpc is not None else None + + +class Forbidden(ClientError): + """Exception mapping a ``403 Forbidden`` response.""" + + code = http.client.FORBIDDEN + + +class PermissionDenied(Forbidden): + """Exception mapping a :attr:`grpc.StatusCode.PERMISSION_DENIED` error.""" + + grpc_status_code = grpc.StatusCode.PERMISSION_DENIED if grpc is not None else None + + +class NotFound(ClientError): + """Exception mapping a ``404 Not Found`` response or a + :attr:`grpc.StatusCode.NOT_FOUND` error.""" + + code = http.client.NOT_FOUND + grpc_status_code = grpc.StatusCode.NOT_FOUND if grpc is not None else None + + +class MethodNotAllowed(ClientError): + """Exception mapping a ``405 Method Not Allowed`` response.""" + + code = http.client.METHOD_NOT_ALLOWED + + +class Conflict(ClientError): + """Exception mapping a ``409 Conflict`` response.""" + + code = http.client.CONFLICT + + +class AlreadyExists(Conflict): + """Exception mapping a :attr:`grpc.StatusCode.ALREADY_EXISTS` error.""" + + grpc_status_code = grpc.StatusCode.ALREADY_EXISTS if grpc is not None else None + + +class Aborted(Conflict): + """Exception mapping a :attr:`grpc.StatusCode.ABORTED` error.""" + + grpc_status_code = grpc.StatusCode.ABORTED if grpc is not None else None + + +class LengthRequired(ClientError): + """Exception mapping a ``411 Length Required`` response.""" + + code = http.client.LENGTH_REQUIRED + + +class PreconditionFailed(ClientError): + """Exception mapping a ``412 Precondition Failed`` response.""" + + code = http.client.PRECONDITION_FAILED + + +class RequestRangeNotSatisfiable(ClientError): + """Exception mapping a ``416 Request Range Not Satisfiable`` response.""" + + code = http.client.REQUESTED_RANGE_NOT_SATISFIABLE + + +class TooManyRequests(ClientError): + """Exception mapping a ``429 Too Many Requests`` response.""" + + code = http.client.TOO_MANY_REQUESTS + + +class ResourceExhausted(TooManyRequests): + """Exception mapping a :attr:`grpc.StatusCode.RESOURCE_EXHAUSTED` error.""" + + grpc_status_code = grpc.StatusCode.RESOURCE_EXHAUSTED if grpc is not None else None + + +class Cancelled(ClientError): + """Exception mapping a :attr:`grpc.StatusCode.CANCELLED` error.""" + + # This maps to HTTP status code 499. See + # https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto + code = 499 + grpc_status_code = grpc.StatusCode.CANCELLED if grpc is not None else None + + +class ServerError(GoogleAPICallError): + """Base for 5xx responses.""" + + +class InternalServerError(ServerError): + """Exception mapping a ``500 Internal Server Error`` response. or a + :attr:`grpc.StatusCode.INTERNAL` error.""" + + code = http.client.INTERNAL_SERVER_ERROR + grpc_status_code = grpc.StatusCode.INTERNAL if grpc is not None else None + + +class Unknown(ServerError): + """Exception mapping a :attr:`grpc.StatusCode.UNKNOWN` error.""" + + grpc_status_code = grpc.StatusCode.UNKNOWN if grpc is not None else None + + +class DataLoss(ServerError): + """Exception mapping a :attr:`grpc.StatusCode.DATA_LOSS` error.""" + + grpc_status_code = grpc.StatusCode.DATA_LOSS if grpc is not None else None + + +class MethodNotImplemented(ServerError): + """Exception mapping a ``501 Not Implemented`` response or a + :attr:`grpc.StatusCode.UNIMPLEMENTED` error.""" + + code = http.client.NOT_IMPLEMENTED + grpc_status_code = grpc.StatusCode.UNIMPLEMENTED if grpc is not None else None + + +class BadGateway(ServerError): + """Exception mapping a ``502 Bad Gateway`` response.""" + + code = http.client.BAD_GATEWAY + + +class ServiceUnavailable(ServerError): + """Exception mapping a ``503 Service Unavailable`` response or a + :attr:`grpc.StatusCode.UNAVAILABLE` error.""" + + code = http.client.SERVICE_UNAVAILABLE + grpc_status_code = grpc.StatusCode.UNAVAILABLE if grpc is not None else None + + +class GatewayTimeout(ServerError): + """Exception mapping a ``504 Gateway Timeout`` response.""" + + code = http.client.GATEWAY_TIMEOUT + + +class DeadlineExceeded(GatewayTimeout): + """Exception mapping a :attr:`grpc.StatusCode.DEADLINE_EXCEEDED` error.""" + + grpc_status_code = grpc.StatusCode.DEADLINE_EXCEEDED if grpc is not None else None + + +class AsyncRestUnsupportedParameterError(NotImplementedError): + """Raised when an unsupported parameter is configured against async rest transport.""" + + pass + + +def exception_class_for_http_status(status_code): + """Return the exception class for a specific HTTP status code. + + Args: + status_code (int): The HTTP status code. + + Returns: + :func:`type`: the appropriate subclass of :class:`GoogleAPICallError`. + """ + return _HTTP_CODE_TO_EXCEPTION.get(status_code, GoogleAPICallError) + + +def from_http_status(status_code, message, **kwargs): + """Create a :class:`GoogleAPICallError` from an HTTP status code. + + Args: + status_code (int): The HTTP status code. + message (str): The exception message. + kwargs: Additional arguments passed to the :class:`GoogleAPICallError` + constructor. + + Returns: + GoogleAPICallError: An instance of the appropriate subclass of + :class:`GoogleAPICallError`. + """ + error_class = exception_class_for_http_status(status_code) + error = error_class(message, **kwargs) + + if error.code is None: + error.code = status_code + + return error + + +def _format_rest_error_message(error, method, url): + method = method.upper() if method else None + message = "{method} {url}: {error}".format( + method=method, + url=url, + error=error, + ) + return message + + +# NOTE: We're moving away from `from_http_status` because it expects an aiohttp response compared +# to `format_http_response_error` which expects a more abstract response from google.auth and is +# compatible with both sync and async response types. +# TODO(https://github.com/googleapis/python-api-core/issues/691): Add type hint for response. +def format_http_response_error( + response, method: str, url: str, payload: Optional[Dict] = None +): + """Create a :class:`GoogleAPICallError` from a google auth rest response. + + Args: + response Union[google.auth.transport.Response, google.auth.aio.transport.Response]: The HTTP response. + method Optional(str): The HTTP request method. + url Optional(str): The HTTP request url. + payload Optional(dict): The HTTP response payload. If not passed in, it is read from response for a response type of google.auth.transport.Response. + + Returns: + GoogleAPICallError: An instance of the appropriate subclass of + :class:`GoogleAPICallError`, with the message and errors populated + from the response. + """ + payload = {} if not payload else payload + error_message = payload.get("error", {}).get("message", "unknown error") + errors = payload.get("error", {}).get("errors", ()) + # In JSON, details are already formatted in developer-friendly way. + details = payload.get("error", {}).get("details", ()) + error_info_list = list( + filter( + lambda detail: detail.get("@type", "") + == "type.googleapis.com/google.rpc.ErrorInfo", + details, + ) + ) + error_info = error_info_list[0] if error_info_list else None + message = _format_rest_error_message(error_message, method, url) + + exception = from_http_status( + response.status_code, + message, + errors=errors, + details=details, + response=response, + error_info=error_info, + ) + return exception + + +def from_http_response(response): + """Create a :class:`GoogleAPICallError` from a :class:`requests.Response`. + + Args: + response (requests.Response): The HTTP response. + + Returns: + GoogleAPICallError: An instance of the appropriate subclass of + :class:`GoogleAPICallError`, with the message and errors populated + from the response. + """ + try: + payload = response.json() + except ValueError: + payload = {"error": {"message": response.text or "unknown error"}} + return format_http_response_error( + response, response.request.method, response.request.url, payload + ) + + +def exception_class_for_grpc_status(status_code): + """Return the exception class for a specific :class:`grpc.StatusCode`. + + Args: + status_code (grpc.StatusCode): The gRPC status code. + + Returns: + :func:`type`: the appropriate subclass of :class:`GoogleAPICallError`. + """ + return _GRPC_CODE_TO_EXCEPTION.get(status_code, GoogleAPICallError) + + +def from_grpc_status(status_code, message, **kwargs): + """Create a :class:`GoogleAPICallError` from a :class:`grpc.StatusCode`. + + Args: + status_code (Union[grpc.StatusCode, int]): The gRPC status code. + message (str): The exception message. + kwargs: Additional arguments passed to the :class:`GoogleAPICallError` + constructor. + + Returns: + GoogleAPICallError: An instance of the appropriate subclass of + :class:`GoogleAPICallError`. + """ + + if isinstance(status_code, int): + status_code = _INT_TO_GRPC_CODE.get(status_code, status_code) + + error_class = exception_class_for_grpc_status(status_code) + error = error_class(message, **kwargs) + + if error.grpc_status_code is None: + error.grpc_status_code = status_code + + return error + + +def _is_informative_grpc_error(rpc_exc): + return hasattr(rpc_exc, "code") and hasattr(rpc_exc, "details") + + +def _parse_grpc_error_details(rpc_exc): + if not rpc_status: # pragma: NO COVER + _warn_could_not_import_grpcio_status() + return [], None + try: + status = rpc_status.from_call(rpc_exc) + except NotImplementedError: # workaround + return [], None + + if not status: + return [], None + + possible_errors = [ + error_details_pb2.BadRequest, + error_details_pb2.PreconditionFailure, + error_details_pb2.QuotaFailure, + error_details_pb2.ErrorInfo, + error_details_pb2.RetryInfo, + error_details_pb2.ResourceInfo, + error_details_pb2.RequestInfo, + error_details_pb2.DebugInfo, + error_details_pb2.Help, + error_details_pb2.LocalizedMessage, + ] + error_info = None + error_details = [] + for detail in status.details: + matched_detail_cls = list( + filter(lambda x: detail.Is(x.DESCRIPTOR), possible_errors) + ) + # If nothing matched, use detail directly. + if len(matched_detail_cls) == 0: + info = detail + else: + info = matched_detail_cls[0]() + detail.Unpack(info) + error_details.append(info) + if isinstance(info, error_details_pb2.ErrorInfo): + error_info = info + return error_details, error_info + + +def from_grpc_error(rpc_exc): + """Create a :class:`GoogleAPICallError` from a :class:`grpc.RpcError`. + + Args: + rpc_exc (grpc.RpcError): The gRPC error. + + Returns: + GoogleAPICallError: An instance of the appropriate subclass of + :class:`GoogleAPICallError`. + """ + # NOTE(lidiz) All gRPC error shares the parent class grpc.RpcError. + # However, check for grpc.RpcError breaks backward compatibility. + if ( + grpc is not None and isinstance(rpc_exc, grpc.Call) + ) or _is_informative_grpc_error(rpc_exc): + details, err_info = _parse_grpc_error_details(rpc_exc) + return from_grpc_status( + rpc_exc.code(), + rpc_exc.details(), + errors=(rpc_exc,), + details=details, + response=rpc_exc, + error_info=err_info, + ) + else: + return GoogleAPICallError(str(rpc_exc), errors=(rpc_exc,), response=rpc_exc) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/extended_operation.py b/ocr/.venv/Lib/site-packages/google/api_core/extended_operation.py new file mode 100644 index 00000000..d474632b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/extended_operation.py @@ -0,0 +1,225 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Futures for extended long-running operations returned from Google Cloud APIs. + +These futures can be used to synchronously wait for the result of a +long-running operations using :meth:`ExtendedOperation.result`: + +.. code-block:: python + + extended_operation = my_api_client.long_running_method() + + extended_operation.result() + +Or asynchronously using callbacks and :meth:`Operation.add_done_callback`: + +.. code-block:: python + + extended_operation = my_api_client.long_running_method() + + def my_callback(ex_op): + print(f"Operation {ex_op.name} completed") + + extended_operation.add_done_callback(my_callback) + +""" + +import threading + +from google.api_core import exceptions +from google.api_core.future import polling + + +class ExtendedOperation(polling.PollingFuture): + """An ExtendedOperation future for interacting with a Google API Long-Running Operation. + + Args: + extended_operation (proto.Message): The initial operation. + refresh (Callable[[], type(extended_operation)]): A callable that returns + the latest state of the operation. + cancel (Callable[[], None]): A callable that tries to cancel the operation. + polling Optional(google.api_core.retry.Retry): The configuration used + for polling. This can be used to control how often :meth:`done` + is polled. If the ``timeout`` argument to :meth:`result` is + specified it will override the ``polling.timeout`` property. + retry Optional(google.api_core.retry.Retry): DEPRECATED use ``polling`` + instead. If specified it will override ``polling`` parameter to + maintain backward compatibility. + + Note: Most long-running API methods use google.api_core.operation.Operation + This class is a wrapper for a subset of methods that use alternative + Long-Running Operation (LRO) semantics. + + Note: there is not a concrete type the extended operation must be. + It MUST have fields that correspond to the following, POSSIBLY WITH DIFFERENT NAMES: + * name: str + * status: Union[str, bool, enum.Enum] + * error_code: int + * error_message: str + """ + + def __init__( + self, + extended_operation, + refresh, + cancel, + polling=polling.DEFAULT_POLLING, + **kwargs, + ): + super().__init__(polling=polling, **kwargs) + self._extended_operation = extended_operation + self._refresh = refresh + self._cancel = cancel + # Note: the extended operation does not give a good way to indicate cancellation. + # We make do with manually tracking cancellation and checking for doneness. + self._cancelled = False + self._completion_lock = threading.Lock() + # Invoke in case the operation came back already complete. + self._handle_refreshed_operation() + + # Note: the following four properties MUST be overridden in a subclass + # if, and only if, the fields in the corresponding extended operation message + # have different names. + # + # E.g. we have an extended operation class that looks like + # + # class MyOperation(proto.Message): + # moniker = proto.Field(proto.STRING, number=1) + # status_msg = proto.Field(proto.STRING, number=2) + # optional http_error_code = proto.Field(proto.INT32, number=3) + # optional http_error_msg = proto.Field(proto.STRING, number=4) + # + # the ExtendedOperation subclass would provide property overrides that map + # to these (poorly named) fields. + @property + def name(self): + return self._extended_operation.name + + @property + def status(self): + return self._extended_operation.status + + @property + def error_code(self): + return self._extended_operation.error_code + + @property + def error_message(self): + return self._extended_operation.error_message + + def __getattr__(self, name): + return getattr(self._extended_operation, name) + + def done(self, retry=None): + self._refresh_and_update(retry) + return self._extended_operation.done + + def cancel(self): + if self.done(): + return False + + self._cancel() + self._cancelled = True + return True + + def cancelled(self): + # TODO(dovs): there is not currently a good way to determine whether the + # operation has been cancelled. + # The best we can do is manually keep track of cancellation + # and check for doneness. + if not self._cancelled: + return False + + self._refresh_and_update() + return self._extended_operation.done + + def _refresh_and_update(self, retry=None): + if not self._extended_operation.done: + self._extended_operation = ( + self._refresh(retry=retry) if retry else self._refresh() + ) + self._handle_refreshed_operation() + + def _handle_refreshed_operation(self): + with self._completion_lock: + if not self._extended_operation.done: + return + + if self.error_code and self.error_message: + # Note: `errors` can be removed once proposal A from + # b/284179390 is implemented. + errors = [] + if hasattr(self, "error") and hasattr(self.error, "errors"): + errors = self.error.errors + exception = exceptions.from_http_status( + status_code=self.error_code, + message=self.error_message, + response=self._extended_operation, + errors=errors, + ) + self.set_exception(exception) + elif self.error_code or self.error_message: + exception = exceptions.GoogleAPICallError( + f"Unexpected error {self.error_code}: {self.error_message}" + ) + self.set_exception(exception) + else: + # Extended operations have no payload. + self.set_result(None) + + @classmethod + def make(cls, refresh, cancel, extended_operation, **kwargs): + """ + Return an instantiated ExtendedOperation (or child) that wraps + * a refresh callable + * a cancel callable (can be a no-op) + * an initial result + + .. note:: + It is the caller's responsibility to set up refresh and cancel + with their correct request argument. + The reason for this is that the services that use Extended Operations + have rpcs that look something like the following: + + // service.proto + service MyLongService { + rpc StartLongTask(StartLongTaskRequest) returns (ExtendedOperation) { + option (google.cloud.operation_service) = "CustomOperationService"; + } + } + + service CustomOperationService { + rpc Get(GetOperationRequest) returns (ExtendedOperation) { + option (google.cloud.operation_polling_method) = true; + } + } + + Any info needed for the poll, e.g. a name, path params, etc. + is held in the request, which the initial client method is in a much + better position to make made because the caller made the initial request. + + TL;DR: the caller sets up closures for refresh and cancel that carry + the properly configured requests. + + Args: + refresh (Callable[Optional[Retry]][type(extended_operation)]): A callable that + returns the latest state of the operation. + cancel (Callable[][Any]): A callable that tries to cancel the operation + on a best effort basis. + extended_operation (Any): The initial response of the long running method. + See the docstring for ExtendedOperation.__init__ for requirements on + the type and fields of extended_operation + """ + return cls(extended_operation, refresh, cancel, **kwargs) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/future/__init__.py b/ocr/.venv/Lib/site-packages/google/api_core/future/__init__.py new file mode 100644 index 00000000..3768b2c5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/future/__init__.py @@ -0,0 +1,19 @@ +# Copyright 2017, Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Futures for dealing with asynchronous operations.""" + +from google.api_core.future.base import Future + +__all__ = ["Future"] diff --git a/ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd61966916aeab0f1391ae30f49cbcd806f99862 GIT binary patch literal 339 zcmYj~!AiqG5QaC~v`VlZJnALa98B;kB8nmiMGqoESXj2%X}WE?6LvS1`XIi8FX4ma z>d9B|vB67tn8|K)Gw%8xzvCP_|YAZZnBXiftnM`e(Y zWcWmq@!Q#5;~E1tUZ9C3h)U@)epPN63%k?B(xAr1##n<9PNBBxw|_~Jpq&g&)3F|s zu-)TaV!?TSQX-ZWq@q^5Km+NbN2GIMp-*>FQB|CO5Ht4e-hSlGIeYdA%T_BuU9wxS zYlk&^tUjg-O>m7W`_6cd*6#%Utc9?tKV-Gzd}NO`^R+)@bL;i^Atgn zA(2$Fk`8HevLOR{9zb|OhbuCW;a4(@`1mx`kndx_qv!03&{zTHE5F@E1euq z>_meZ{K2YZH}kkO-w~ORJ^aiA1WQiof)r#yf6#CA3zKxgI9ssu;DS)H@Lkya$-WiZ znnWb_M1zotsAMu0dSsHqCc--7T{3Y{Al zjb`oHX8a_&i_HGYH_y|L28T*dPeE0A`WDQ{syf}Pp*j?036{U!PF1GU!4#@#x>Fpb zrm*n17THMTVA5Qvyo3!=7d%rMHdcj{=7SWi7RNufy zMiG|gh4c}PkWcV3j~6H+3dy{Xhh!ghw&d(CMHwlv^c;FoI!01Rhhy3;ilHO>Dft90y-d@SReMT+5Af!x>vO@AYOLY5ze7I9{d7Y@PDwoW5hA=qM^%|;R$+-ceAiZ z*JzKjf4YayevFN{R2k>4b2)%!=y2T}><&%@+Qpn#Vho(?b@Vj)Hp$mIHyoPw@r$vN WlM-I~4VX2A@Mg?nx*Ej6TKpdtGU#al literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99c276b882fcb31efc6a26c9fe1ce1dff5f02a29 GIT binary patch literal 5395 zcmdT|&u`nv6(%X_hhYtXqe_qqHzthF^QNqPNoY5OJT(dN;bHmpy9sdR2I4)QPo$i_Fo0h5i zMf8hSQT0oH>9}l_b?u?X%e?YN;}ubPU9jeac~%v3qHs8mvxalw+_dVVc(^F)eC`|F zYG6f`&tt{BC?76i%`!KhYR%f{J`Scr9x}FX^tzl9XQ9rw#QZ5J`VZ7r+&@0zZf`vI#RZ69=f)Dp~-ouqndyBHrDn( zjf9N$4-Z8cbocLz=qL{R`%o-+=J?RZUfvz)Z*0nN?2R;oD&a-IQ4uVQ0NOhi2Fn4!fWgxdBOo31hMBcFD9@IWDv1EImq;B zwOA0wVr?x^k5p91bBC-a5D8wyydV|q2?4PTebx(4K@`~kjMHX>VKMnc@D|$@ zT}N^s`^nfvsdFnLUkHaIYQ@39D!D>=tSx3Fk=>-nIi3c`6FD6m#NM$82l2rHb7Xfw z>_x^*5hO)4@Z*D)lHvlB`9Xa;3pk_OXkzWPcBY?ey7oeUq1i@UI5W?+v*Njis}iTS z%(bW5g}&XajEm6#q(qeB1zrpqDcNc#b&8CB3!^^#uKtNQ5LR0y^* z)vj!t2=}kq+Anq5_*Z&UAN^~iC)}eb2}=Mwq5m)=UqZT@vTq7Og32rm=}v;MAAsWR zCn{Yyev>@{gy6Dd898-#XJhICyGcw=pia+dhoKKVBTTagrKI? zbbwMM!(YA=b(8TnBp^qmPvFv&|$Kfh?B|@G6`4`Fnw%w*ft=snk@E^zmTp_v-rbFjBJlS z&TB8mJ+4w!CK3!C_n-)Em5a#h29#S_x`$SCP7*j0r!J#s)o6j8j!Q;^6er^SS${(5mWXcp1m~1!8@;x|BQht&6Fr$s<(|Vjr?n#V~ zmmJQM;wO7Psw`Dm8J*xVmR2F?4>(mRRh_S(kScxGD2zUw#?uvnS8!E;2*TC3^aX@) zb%y$If}GLKr)fG#3^XBCssJg+jjIt}Hqy%PEd`Xki%EZ`Cr~ ziVtWW)fTdjhKMGjmjn7N(^#sNDz!?fTC85HE?4T6rG}|yHCL2Y3TM{hCB{?bj(V+= zL?zaZOXIC1aAXmK3&T&GV7M#37>Fp2td%W%iIDi{ z@DyKIgj9*ss{YR54^f((Izwww8Oh$+-MqiGvA(xyRh7+E0VY49$CeU|sm)BeYf@)b kev^DU`z`29iwJCHy<*ginohq)!7QP|N`C*Tm2MRN3*;uCYxP5S=fN?TPJthZV5W>;Z%ial|2)2q8k2T_G*m1FTlEMw+y{%g#9CY12JM z;Nz0(UO4Q3$X}W(C(hjVv{gN06S6@9(NaJ4tE#E$dfh#;-3}}q!9N?xd*8C&6S+Ll zWJC1Dz|z^N?jCJcV=$ zDjYBkIvh$B{xZvF3c_SEO<@9A&hkWNy7vJ~SjU|3^6-#6!l~aOfYrBg8;-F1E_mab zaD;nqy|w$kVVte&O zwqcuM%dn0Ju-%=)FB_Wo7mZ~(s3GIf3xW{Gi_=7h$-)>SAuU8Gv+#hYOzVRaE;Bw; z3dQIRjXJtlCOhew6x_z<7lYO`k8pmZ6Uwc()?fC8eSBdTo5wPLx=pg0$H+@t1oMjx+A8CgUg73`RWkbEv^Tmdgi{Xk6 zUDXKc1hnfC=(-loGDiyHCvvn9=4+p&N7r{%sH<6)CE4iCGJmJaUpc-jyC-A@-DT>P zDm7V;Imxvcv|gO_6=5zM)j)4i&yxwrS$2X5*Q`S9=D0^5Zoa6bOFqYUZJ96 z*utsrAv7${^J;AWbfGKtFB!%aTm<|{JJ%Di_+ajD112>1J8^4;p3xc a7-7P%t6nr7lwCih_o3-8=ye*-P4_Z>L8b0Uo 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71b149f4e4ab2e01957a287476de22b47f1c7e30 GIT binary patch literal 5344 zcmeHL&u`nv6(%W)l4-?`jWmsuwmS`WVGBqVCq;V@j38dyZCxbUz|L*~#s)=`Bbi=` zRAxqYyroactw@VSf%eiva@>3Wg8m6T^17#<_tszOdovUzIx@1C-j;^w;c(`?H*eni z=6g&oU9vT}>_07rf4QbcLE4ztkN&m<<}xJ4^M~jo?x+7tHsJH->X5 zA9XocfKhXSv8y!~zxdm)Xf&XVlWxLDlz2fH_ejqhgg)_;xEuC{%oAY}lfV;R%eJ2! zQu50r=|z;RKi(!i8dDembA3iVK{?^W!62f28Viq|o|Az(sOKM&oyQw?pNhjIAR-}x zMiCJp*pEV(N22h6;pD^Q1YZZ#i^xeR4hf@zg`mTWVP4p$$x!f?{SWY>_Nb|6Hhu2X z0b0x9sfwddp;60+_Hdkb{}1+qfYc@Z*bc6WVKC7@~4yrrHbRjSgJ>cSbws$*(O6yNvBhY z;H{$RN@*^*%)Q|3KYp;)>Ex<%pNzG&yTjOT zcf{#{c9cGEFks1mg%BMO90$rtNw*}tEqmLYo{X#(grDmtjE=p*Tgu}Qa~ob1ZJ}eq z1~jZ$Wd>}U^TB&um(_X{d?;9EqC*{fS9){>VA^ zB<}5PQvSI}278|jX#5+{Plda_y_fiGuXRl0G}M|xWMy_RZ0Wl0mp4Q!c3tGa~GmU<3quc{F2b*}*`Hu7}#2y8LrVsdZF&T|UZ0bdAoN8Z)Jm>=K?P;x z*o%ggm%_Q-R_TW^gV%3M5r{oE!#D&pBUh;jXyl!`{V<9`ezQ&Ptgfz>Q$o%ujU7fJ z8~}(h7=O3*vnj*--t!B@-v#;86ck1Q2;@jMVbn#l5HgCcYq(%P=@0Jx8s%AVv$VQy zz5U`=9wuFu^z&v89cxkIdlA3a8c%kv7g2)ib0?^_Rc^sTTnRkwg9A&2TPd|y+ z9OM<7ha2Dp;;FOvuBi-j7GU&yI2M`N1aw|6&YpJ=@-rC88*nqP7HR%(wgeqnps?FzyWM2k5uP z{rf-NGtR1KR%$_i?Tvm`OQC=p>TENuq_rjOtS*eSo*JnY%q(dDEc%Pe*^H>9bs%$g zJR8*E$$VXf_cj2KbwdLgwy32uDHMILjMPl4Yud99Qv{)g*9I6Kfl&FZo8(`L*r~Eb z)@FHK78W#5#zYtct?GI{6lv0T|6iV0XoE5Ui%_!i5XuNBO>>%1yw9y69LOnFsd-(~ z9Y#?ploekc6_)uD$S<%S&5Iqftx6)CTBfw*(BmaxUJM1-$Q{T*0;rC1x{-@(9p7nf zDapH(9fv-J%I!26l9OZ@1tn<%EE>VvM?;`K;?NUg;mf>iNr}&vgn)iz#Ej2evVz4H(y-j`;5Z;_Lmvx%Y3iuz_i`2$P^jDRdq5!#rOKfv zKoQ9SC9sjekX7Md5G``xap;2`%)?J@(S_tL4+o@8oJDXuvW&7b)4I z{N8X#!?J-&TmGqI3h6^aGa`N8T!n`aNnZ`pSwAyUJvII~rhO8l0Mrmh7#3#?C!B{b zdkw1>$^3o?ufIWbvoy;v-vakr0WQR;tL)DAlmp!x@xEfJ6kXyjla{g@CB-G1ra&tD z0Sx~Vr~D9aI0C4i#7mwnsHjjRO%|q)oXe_DQZ?C?&6VqcrZI-tW<9Gw0iIQ%Ozv|@ zx+Ekk@Soqn$bu>{CrA?c*>y0XIqO_5qB-{k`#!vI<|oy|mXGYoZN#3rvJ11>{24>R zxs*Ss@$7?Q(UubI)JLm1zj;@t?av9!=g1bVD|3eRU(3R~S-WP~dflk&2K?FZGyh{( zP1A(7`F7DX4fYXCY0hUg*9{Wib+cJNfe#E4&N#z!$eBM^%E<2>W6vsI;kSXTx`Xt8 z?A*+j@Fa%tIY)X^YMWS&JXB>VQeW#Q!7!rtko|Jx#O7Sxsv8ZXp*M81Qm@P{)IYrZ Iqs7Yq07TdDvH$=8 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b2d95e3a5d6918570e782e05d6dbc7abdf93a6d GIT binary patch literal 1406 zcmah}&u`N(6i(W%o5H3|hy$GPtyCJBCUKe&qAEW$iLq$|A!V6bFL_PfIdNn=9Yq|u za^-*Ezu?TDuq!A21upPxXIndjaOKFU{l53U?|Y6|TMIlK!I#_YTif$~n3ws{z?Y{u z)gyeQUgV{I+TecPh#J0GH+eH}MJ>B-@uj>SwQ;?awm*5%a=Luvbyq%o@2Odl?Cz5> z@DijVBOwVFG-X9bGFq~PB%&CxtddkSQIM2s8V13eF_4!+WE@EEV3%Z203N{DL;}^I zh^oqxLk@+ea&`m5Bji$U%=qO0*yvI42r`6V5P>aCRz9@K~Ii?Gz{{=S+`@ z1T7inpasUU97Ls682m&Pysm$7%WTgE)DXkhwyPgkt9v$8-||U(bG#mA-NM<&sW$MT zy@~(P(~U_p^*=XIsRorOcfTf=!iZK}+d^jZWe{;XfkZnQEybE1D+qOZ1_TEyG{_N6 zkgKi6@w)UvK~4+J5+r3$_hhDa>}nx)P{%&lqh*PHb$5udtu)YNbYPgx?`i0x)Y2h%C`F$m|Q5-NnhWz&~A18 zC~*DE(1~tKHnBS|?vzw27&ye5mog3NMS*Q1tW?f0cH@d`ed?EU9Lsx?|m)hpCtmhufxN))aI2UQf;fcBb%6x2FYpd;5AAik1|LUwF literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..427ee03cfca2764649a926c16b342a5bdf786b29 GIT binary patch literal 8118 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 TVXQ1`Tf`MKvA)ylEC2Z)vXy;I literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a6105f228b9502962db7cc389ef75c13231db19 GIT binary patch literal 1463 zcmZ`(&2QT_6qjVlmX$ae(xT{LLwU{MIM_89h8lKS7|om_aZpSUKr<38E0#ooq#bxr zPuq3Zp3~$0CGWV?{)O(aJyKTd7AR>_??ZZDzxT{K9nXN}y*o<2cMaoj#q2HznCEcB z46exVjmV6w)bvewHc~5V_zhFZ?9|R2-_f*_HnW!B(sUDO*LOAD0=n(Dfp&c_vec%| z-5&L3PSlRP-%Wo%vaXHeymXkD*>z?OL=7~V?TM8PX+ckju&}AzZC4AP0J1TFBZhF5jx-h)Z%gyRDvkH%Tcflib7}IU z(tc>XH)1mfpx-v7{op9QY?el8mR8v)o00X0^P359HOQH17;gX_CNL+#ALaBOh1;}|oD+#8Sx^DBtsq9zsRn2|?E<+437C(@ zltG2ebh-oFbczU%mznMWr3J8|9{{KMSK8n+dtbDK>Ov9`Nva;$@q_AARhuc>DZ4*O z>58U1wdrZwsu$ea&~aNP1F` za6w`!f|#*5rKiy6IAolj>M_NuA5N+)1mZS2s;T(MU EA7N#!ssI20 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7854d4acabc53fabb82b454e023c7d55dd3c130c GIT binary patch literal 2689 zcmeHJ&u`R56!v(%o5b1tXjv%SMwMEz64^kdUZMzf6(T?_KNJ?xZWmb-dv@dCwattj z*l0Pyl}f$z3`frWZ+xW}{sp8;{odHwkWec1&|59d?2P^9y*JqogYC*DnSIz~^mn>KcmS0%US${FG?^*5D!#{4wD3wa{VWPO7#5z;CpM~*= zt0XtSdr|}t=(uigPio1lJr_#yT+4v(PWbgC8AXzZ@lc6ULyoUm!ULH}H4bAOOP0tFxL>!DQ484gdv!+(Yp4)0+YQ3^wTQQqj&+IAFEsE6(YieHu($DOm_No>* z$8TOUAYT{1Gt1hMS*~Ku#VNEoK%^K@P;gZ~3J+w=D;K$Ok$|P3a6DZ#(i>()yYdG7 z;w_P;Q1UZ$T_S~iicn?1cFGBchwTmC=*ho| zC!Lw#<6J}`MZ%LXqxr?%B#B_`!JdR(TnH?XsX_qbjFSjI5E1AwQ$UswLd9PbkUbzdu;PR-u2496;LOJ-Yh|?pM($Z|EazvxoRm z$GC@~FJl^k6AxR@7`VX#>q5zo7S`-S^=985+F%O%)qYGFXul(Uil%n0a6?UZ60t88 z=`I|)XxlFA&gFtVePgLbynP>SZ4B-sRrFwgUncQra82q*S&|O!q%wYh43U}Fy*WsH zHRymi2ZJBN-GL4>33mIB#7OD^aXymkA`Lx1QF48RmG2!~S+B0{m1*8dCxyEig*x+- zaeDO%tZQ=YvUT`XmUyRxH>1QCk-pkFKJlJ?{Sji6MFz1J76!3KiP$eziHf-;(sk9F z<*8>_-A1zEOu;fEQcftJmRiE}4TkZqWwjkOM}iLVyQt&pV_i7=Nf-m=MwubS%8VT) zQ~Ql9Pa~;M=`KF|=%!zirFl%}mK?UsT1=h8=0v$5lxF2(8Ji4bn1Te)K>!4vi6%sj z3IHYCiK6vUHlAQ)S+30?stkto|5u0LzpV~EBFDv}YKnqJmEvCnjX#o;6Xi+7L0S6B z%7Qd+?cBNFyLtP%cWb-Xz1Hn@z3;bwGTZ|5DO=Q8ny3gIbH7*xKSwI{y`zrzExwyX zSYA=*u|_J*jm1+P9?DO1bQOZs(xxn=KN>Q$AV^7}t&GWdSFu9pUbV=qeE@7X&2 zInZJ#6}5Rpq6VLfx-obPZnXl58yKbl*ozHj+l@cX+cxX9o5h^x1&Qx@#lkR;{S3_y zrHA@lS<;(8E(&)$KmsM4N`(3XQ~&%??C*AWy0^To?$(WM@7~S+wu!%qW3dpa-18|Q r#@+{>8A?zkEao@INsveKD)kgiq;Zz#=bNm_9NTf+ntR4Qv&{YieyZ?K literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/client_info.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/client_info.py new file mode 100644 index 00000000..4b3b5649 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/client_info.py @@ -0,0 +1,58 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for providing client information. + +Client information is used to send information about the calling client, +such as the library and Python version, to API services. +""" + +from google.api_core import client_info + + +METRICS_METADATA_KEY = "x-goog-api-client" + + +class ClientInfo(client_info.ClientInfo): + """Client information used to generate a user-agent for API calls. + + This user-agent information is sent along with API calls to allow the + receiving service to do analytics on which versions of Python and Google + libraries are being used. + + Args: + python_version (str): The Python interpreter version, for example, + ``'3.9.6'``. + grpc_version (Optional[str]): The gRPC library version. + api_core_version (str): The google-api-core library version. + gapic_version (Optional[str]): The version of gapic-generated client + library, if the library was generated by gapic. + client_library_version (Optional[str]): The version of the client + library, generally used if the client library was not generated + by gapic or if additional functionality was built on top of + a gapic client library. + user_agent (Optional[str]): Prefix to the user agent header. This is + used to supply information such as application name or partner tool. + Recommended format: ``application-or-tool-ID/major.minor.version``. + rest_version (Optional[str]): A string with labeled versions of the + dependencies used for REST transport. + protobuf_runtime_version (Optional[str]): The protobuf runtime version. + """ + + def to_grpc_metadata(self): + """Returns the gRPC metadata for this client info.""" + return (METRICS_METADATA_KEY, self.to_user_agent()) + + +DEFAULT_CLIENT_INFO = ClientInfo() diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config.py new file mode 100644 index 00000000..36b50d9f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config.py @@ -0,0 +1,175 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for loading gapic configuration data. + +The Google API generator creates supplementary configuration for each RPC +method to tell the client library how to deal with retries and timeouts. +""" + +import collections + +import grpc + +from google.api_core import exceptions +from google.api_core import retry +from google.api_core import timeout + + +_MILLIS_PER_SECOND = 1000.0 + + +def _exception_class_for_grpc_status_name(name): + """Returns the Google API exception class for a gRPC error code name. + + DEPRECATED: use ``exceptions.exception_class_for_grpc_status`` method + directly instead. + + Args: + name (str): The name of the gRPC status code, for example, + ``UNAVAILABLE``. + + Returns: + :func:`type`: The appropriate subclass of + :class:`google.api_core.exceptions.GoogleAPICallError`. + """ + return exceptions.exception_class_for_grpc_status(getattr(grpc.StatusCode, name)) + + +def _retry_from_retry_config(retry_params, retry_codes, retry_impl=retry.Retry): + """Creates a Retry object given a gapic retry configuration. + + DEPRECATED: instantiate retry and timeout classes directly instead. + + Args: + retry_params (dict): The retry parameter values, for example:: + + { + "initial_retry_delay_millis": 1000, + "retry_delay_multiplier": 2.5, + "max_retry_delay_millis": 120000, + "initial_rpc_timeout_millis": 120000, + "rpc_timeout_multiplier": 1.0, + "max_rpc_timeout_millis": 120000, + "total_timeout_millis": 600000 + } + + retry_codes (sequence[str]): The list of retryable gRPC error code + names. + + Returns: + google.api_core.retry.Retry: The default retry object for the method. + """ + exception_classes = [ + _exception_class_for_grpc_status_name(code) for code in retry_codes + ] + return retry_impl( + retry.if_exception_type(*exception_classes), + initial=(retry_params["initial_retry_delay_millis"] / _MILLIS_PER_SECOND), + maximum=(retry_params["max_retry_delay_millis"] / _MILLIS_PER_SECOND), + multiplier=retry_params["retry_delay_multiplier"], + deadline=retry_params["total_timeout_millis"] / _MILLIS_PER_SECOND, + ) + + +def _timeout_from_retry_config(retry_params): + """Creates a ExponentialTimeout object given a gapic retry configuration. + + DEPRECATED: instantiate retry and timeout classes directly instead. + + Args: + retry_params (dict): The retry parameter values, for example:: + + { + "initial_retry_delay_millis": 1000, + "retry_delay_multiplier": 2.5, + "max_retry_delay_millis": 120000, + "initial_rpc_timeout_millis": 120000, + "rpc_timeout_multiplier": 1.0, + "max_rpc_timeout_millis": 120000, + "total_timeout_millis": 600000 + } + + Returns: + google.api_core.retry.ExponentialTimeout: The default time object for + the method. + """ + return timeout.ExponentialTimeout( + initial=(retry_params["initial_rpc_timeout_millis"] / _MILLIS_PER_SECOND), + maximum=(retry_params["max_rpc_timeout_millis"] / _MILLIS_PER_SECOND), + multiplier=retry_params["rpc_timeout_multiplier"], + deadline=(retry_params["total_timeout_millis"] / _MILLIS_PER_SECOND), + ) + + +MethodConfig = collections.namedtuple("MethodConfig", ["retry", "timeout"]) + + +def parse_method_configs(interface_config, retry_impl=retry.Retry): + """Creates default retry and timeout objects for each method in a gapic + interface config. + + DEPRECATED: instantiate retry and timeout classes directly instead. + + Args: + interface_config (Mapping): The interface config section of the full + gapic library config. For example, If the full configuration has + an interface named ``google.example.v1.ExampleService`` you would + pass in just that interface's configuration, for example + ``gapic_config['interfaces']['google.example.v1.ExampleService']``. + retry_impl (Callable): The constructor that creates a retry decorator + that will be applied to the method based on method configs. + + Returns: + Mapping[str, MethodConfig]: A mapping of RPC method names to their + configuration. + """ + # Grab all the retry codes + retry_codes_map = { + name: retry_codes + for name, retry_codes in interface_config.get("retry_codes", {}).items() + } + + # Grab all of the retry params + retry_params_map = { + name: retry_params + for name, retry_params in interface_config.get("retry_params", {}).items() + } + + # Iterate through all the API methods and create a flat MethodConfig + # instance for each one. + method_configs = {} + + for method_name, method_params in interface_config.get("methods", {}).items(): + retry_params_name = method_params.get("retry_params_name") + + if retry_params_name is not None: + retry_params = retry_params_map[retry_params_name] + retry_ = _retry_from_retry_config( + retry_params, + retry_codes_map[method_params["retry_codes_name"]], + retry_impl, + ) + timeout_ = _timeout_from_retry_config(retry_params) + + # No retry config, so this is a non-retryable method. + else: + retry_ = None + timeout_ = timeout.ConstantTimeout( + method_params["timeout_millis"] / _MILLIS_PER_SECOND + ) + + method_configs[method_name] = MethodConfig(retry=retry_, timeout=timeout_) + + return method_configs diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config_async.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config_async.py new file mode 100644 index 00000000..13d6a480 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/config_async.py @@ -0,0 +1,42 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""AsyncIO helpers for loading gapic configuration data. + +The Google API generator creates supplementary configuration for each RPC +method to tell the client library how to deal with retries and timeouts. +""" + +from google.api_core import retry_async +from google.api_core.gapic_v1 import config +from google.api_core.gapic_v1.config import MethodConfig # noqa: F401 + + +def parse_method_configs(interface_config): + """Creates default retry and timeout objects for each method in a gapic + interface config with AsyncIO semantics. + + Args: + interface_config (Mapping): The interface config section of the full + gapic library config. For example, If the full configuration has + an interface named ``google.example.v1.ExampleService`` you would + pass in just that interface's configuration, for example + ``gapic_config['interfaces']['google.example.v1.ExampleService']``. + + Returns: + Mapping[str, MethodConfig]: A mapping of RPC method names to their + configuration. + """ + return config.parse_method_configs( + interface_config, retry_impl=retry_async.AsyncRetry + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method.py new file mode 100644 index 00000000..0f14ea9c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method.py @@ -0,0 +1,253 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for wrapping low-level gRPC methods with common functionality. + +This is used by gapic clients to provide common error mapping, retry, timeout, +compression, pagination, and long-running operations to gRPC methods. +""" + +import enum +import functools + +from google.api_core import grpc_helpers +from google.api_core.gapic_v1 import client_info +from google.api_core.timeout import TimeToDeadlineTimeout + +USE_DEFAULT_METADATA = object() + + +class _MethodDefault(enum.Enum): + # Uses enum so that pytype/mypy knows that this is the only possible value. + # https://stackoverflow.com/a/60605919/101923 + # + # Literal[_DEFAULT_VALUE] is an alternative, but only added in Python 3.8. + # https://docs.python.org/3/library/typing.html#typing.Literal + _DEFAULT_VALUE = object() + + +DEFAULT = _MethodDefault._DEFAULT_VALUE +"""Sentinel value indicating that a retry, timeout, or compression argument was unspecified, +so the default should be used.""" + + +def _is_not_none_or_false(value): + return value is not None and value is not False + + +def _apply_decorators(func, decorators): + """Apply a list of decorators to a given function. + + ``decorators`` may contain items that are ``None`` or ``False`` which will + be ignored. + """ + filtered_decorators = filter(_is_not_none_or_false, reversed(decorators)) + + for decorator in filtered_decorators: + func = decorator(func) + + return func + + +class _GapicCallable(object): + """Callable that applies retry, timeout, and metadata logic. + + Args: + target (Callable): The low-level RPC method. + retry (google.api_core.retry.Retry): The default retry for the + callable. If ``None``, this callable will not retry by default + timeout (google.api_core.timeout.Timeout): The default timeout for the + callable (i.e. duration of time within which an RPC must terminate + after its start, not to be confused with deadline). If ``None``, + this callable will not specify a timeout argument to the low-level + RPC method. + compression (grpc.Compression): The default compression for the callable. + If ``None``, this callable will not specify a compression argument + to the low-level RPC method. + metadata (Sequence[Tuple[str, str]]): Additional metadata that is + provided to the RPC method on every invocation. This is merged with + any metadata specified during invocation. If ``None``, no + additional metadata will be passed to the RPC method. + """ + + def __init__( + self, + target, + retry, + timeout, + compression, + metadata=None, + ): + self._target = target + self._retry = retry + self._timeout = timeout + self._compression = compression + self._metadata = metadata + + def __call__( + self, *args, timeout=DEFAULT, retry=DEFAULT, compression=DEFAULT, **kwargs + ): + """Invoke the low-level RPC with retry, timeout, compression, and metadata.""" + + if retry is DEFAULT: + retry = self._retry + + if timeout is DEFAULT: + timeout = self._timeout + + if compression is DEFAULT: + compression = self._compression + + if isinstance(timeout, (int, float)): + timeout = TimeToDeadlineTimeout(timeout=timeout) + + # Apply all applicable decorators. + wrapped_func = _apply_decorators(self._target, [retry, timeout]) + + # Add the user agent metadata to the call. + if self._metadata is not None: + metadata = kwargs.get("metadata", []) + # Due to the nature of invocation, None should be treated the same + # as not specified. + if metadata is None: + metadata = [] + metadata = list(metadata) + metadata.extend(self._metadata) + kwargs["metadata"] = metadata + if self._compression is not None: + kwargs["compression"] = compression + + return wrapped_func(*args, **kwargs) + + +def wrap_method( + func, + default_retry=None, + default_timeout=None, + default_compression=None, + client_info=client_info.DEFAULT_CLIENT_INFO, + *, + with_call=False, +): + """Wrap an RPC method with common behavior. + + This applies common error wrapping, retry, timeout, and compression behavior to a function. + The wrapped function will take optional ``retry``, ``timeout``, and ``compression`` + arguments. + + For example:: + + import google.api_core.gapic_v1.method + from google.api_core import retry + from google.api_core import timeout + from grpc import Compression + + # The original RPC method. + def get_topic(name, timeout=None): + request = publisher_v2.GetTopicRequest(name=name) + return publisher_stub.GetTopic(request, timeout=timeout) + + default_retry = retry.Retry(deadline=60) + default_timeout = timeout.Timeout(deadline=60) + default_compression = Compression.NoCompression + wrapped_get_topic = google.api_core.gapic_v1.method.wrap_method( + get_topic, default_retry) + + # Execute get_topic with default retry and timeout: + response = wrapped_get_topic() + + # Execute get_topic without doing any retying but with the default + # timeout: + response = wrapped_get_topic(retry=None) + + # Execute get_topic but only retry on 5xx errors: + my_retry = retry.Retry(retry.if_exception_type( + exceptions.InternalServerError)) + response = wrapped_get_topic(retry=my_retry) + + The way this works is by late-wrapping the given function with the retry + and timeout decorators. Essentially, when ``wrapped_get_topic()`` is + called: + + * ``get_topic()`` is first wrapped with the ``timeout`` into + ``get_topic_with_timeout``. + * ``get_topic_with_timeout`` is wrapped with the ``retry`` into + ``get_topic_with_timeout_and_retry()``. + * The final ``get_topic_with_timeout_and_retry`` is called passing through + the ``args`` and ``kwargs``. + + The callstack is therefore:: + + method.__call__() -> + Retry.__call__() -> + Timeout.__call__() -> + wrap_errors() -> + get_topic() + + Note that if ``timeout`` or ``retry`` is ``None``, then they are not + applied to the function. For example, + ``wrapped_get_topic(timeout=None, retry=None)`` is more or less + equivalent to just calling ``get_topic`` but with error re-mapping. + + Args: + func (Callable[Any]): The function to wrap. It should accept an + optional ``timeout`` argument. If ``metadata`` is not ``None``, it + should accept a ``metadata`` argument. + default_retry (Optional[google.api_core.Retry]): The default retry + strategy. If ``None``, the method will not retry by default. + default_timeout (Optional[google.api_core.Timeout]): The default + timeout strategy. Can also be specified as an int or float. If + ``None``, the method will not have timeout specified by default. + default_compression (Optional[grpc.Compression]): The default + grpc.Compression. If ``None``, the method will not have + compression specified by default. + client_info + (Optional[google.api_core.gapic_v1.client_info.ClientInfo]): + Client information used to create a user-agent string that's + passed as gRPC metadata to the method. If unspecified, then + a sane default will be used. If ``None``, then no user agent + metadata will be provided to the RPC method. + with_call (bool): If True, wrapped grpc.UnaryUnaryMulticallables will + return a tuple of (response, grpc.Call) instead of just the response. + This is useful for extracting trailing metadata from unary calls. + Defaults to False. + + Returns: + Callable: A new callable that takes optional ``retry``, ``timeout``, + and ``compression`` + arguments and applies the common error mapping, retry, timeout, compression, + and metadata behavior to the low-level RPC method. + """ + if with_call: + try: + func = func.with_call + except AttributeError as exc: + raise ValueError( + "with_call=True is only supported for unary calls." + ) from exc + func = grpc_helpers.wrap_errors(func) + if client_info is not None: + user_agent_metadata = [client_info.to_grpc_metadata()] + else: + user_agent_metadata = None + + return functools.wraps(func)( + _GapicCallable( + func, + default_retry, + default_timeout, + default_compression, + metadata=user_agent_metadata, + ) + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method_async.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method_async.py new file mode 100644 index 00000000..c0f38c0e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/method_async.py @@ -0,0 +1,59 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""AsyncIO helpers for wrapping gRPC methods with common functionality. + +This is used by gapic clients to provide common error mapping, retry, timeout, +compression, pagination, and long-running operations to gRPC methods. +""" + +import functools + +from google.api_core import grpc_helpers_async +from google.api_core.gapic_v1 import client_info +from google.api_core.gapic_v1.method import _GapicCallable +from google.api_core.gapic_v1.method import DEFAULT # noqa: F401 +from google.api_core.gapic_v1.method import USE_DEFAULT_METADATA # noqa: F401 + +_DEFAULT_ASYNC_TRANSPORT_KIND = "grpc_asyncio" + + +def wrap_method( + func, + default_retry=None, + default_timeout=None, + default_compression=None, + client_info=client_info.DEFAULT_CLIENT_INFO, + kind=_DEFAULT_ASYNC_TRANSPORT_KIND, +): + """Wrap an async RPC method with common behavior. + + Returns: + Callable: A new callable that takes optional ``retry``, ``timeout``, + and ``compression`` arguments and applies the common error mapping, + retry, timeout, metadata, and compression behavior to the low-level RPC method. + """ + if kind == _DEFAULT_ASYNC_TRANSPORT_KIND: + func = grpc_helpers_async.wrap_errors(func) + + metadata = [client_info.to_grpc_metadata()] if client_info is not None else None + + return functools.wraps(func)( + _GapicCallable( + func, + default_retry, + default_timeout, + default_compression, + metadata=metadata, + ) + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/routing_header.py b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/routing_header.py new file mode 100644 index 00000000..c0c6f648 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/gapic_v1/routing_header.py @@ -0,0 +1,87 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for constructing routing headers. + +These headers are used by Google infrastructure to determine how to route +requests, especially for services that are regional. + +Generally, these headers are specified as gRPC metadata. +""" + +import functools +from enum import Enum +from urllib.parse import urlencode + +ROUTING_METADATA_KEY = "x-goog-request-params" +# This is the value for the `maxsize` argument of @functools.lru_cache +# https://docs.python.org/3/library/functools.html#functools.lru_cache +# This represents the number of recent function calls to store. +ROUTING_PARAM_CACHE_SIZE = 32 + + +def to_routing_header(params, qualified_enums=True): + """Returns a routing header string for the given request parameters. + + Args: + params (Mapping[str, str | bytes | Enum]): A dictionary containing the request + parameters used for routing. + qualified_enums (bool): Whether to represent enum values + as their type-qualified symbol names instead of as their + unqualified symbol names. + + Returns: + str: The routing header string. + """ + tuples = params.items() if isinstance(params, dict) else params + if not qualified_enums: + tuples = [(x[0], x[1].name) if isinstance(x[1], Enum) else x for x in tuples] + return "&".join([_urlencode_param(*t) for t in tuples]) + + +def to_grpc_metadata(params, qualified_enums=True): + """Returns the gRPC metadata containing the routing headers for the given + request parameters. + + Args: + params (Mapping[str, str | bytes | Enum]): A dictionary containing the request + parameters used for routing. + qualified_enums (bool): Whether to represent enum values + as their type-qualified symbol names instead of as their + unqualified symbol names. + + Returns: + Tuple(str, str): The gRPC metadata containing the routing header key + and value. + """ + return (ROUTING_METADATA_KEY, to_routing_header(params, qualified_enums)) + + +# use caching to avoid repeated computation +@functools.lru_cache(maxsize=ROUTING_PARAM_CACHE_SIZE) +def _urlencode_param(key, value): + """Cacheable wrapper over urlencode + + Args: + key (str): The key of the parameter to encode. + value (str | bytes | Enum): The value of the parameter to encode. + + Returns: + str: The encoded parameter. + """ + return urlencode( + {key: value}, + # Per Google API policy (go/api-url-encoding), / is not encoded. + safe="/", + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/general_helpers.py b/ocr/.venv/Lib/site-packages/google/api_core/general_helpers.py new file mode 100644 index 00000000..06282299 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/general_helpers.py @@ -0,0 +1,52 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This import for backward compatibility only. +from functools import wraps # noqa: F401 pragma: NO COVER + +_CREDENTIALS_FILE_WARNING = """\ +The `credentials_file` argument is deprecated because of a potential security risk. + +The `google.auth.load_credentials_from_file` method does not validate the credential +configuration. The security risk occurs when a credential configuration is accepted +from a source that is not under your control and used without validation on your side. + +If you know that you will be loading credential configurations of a +specific type, it is recommended to use a credential-type-specific +load method. + +This will ensure that an unexpected credential type with potential for +malicious intent is not loaded unintentionally. You might still have to do +validation for certain credential types. Please follow the recommendations +for that method. For example, if you want to load only service accounts, +you can create the service account credentials explicitly: + +``` +from google.cloud.vision_v1 import ImageAnnotatorClient +from google.oauth2 import service_account + +credentials = service_account.Credentials.from_service_account_file(filename) +client = ImageAnnotatorClient(credentials=credentials) +``` + +If you are loading your credential configuration from an untrusted source and have +not mitigated the risks (e.g. by validating the configuration yourself), make +these changes as soon as possible to prevent security risks to your environment. + +Regardless of the method used, it is always your responsibility to validate +configurations received from external sources. + +Refer to https://cloud.google.com/docs/authentication/external/externally-sourced-credentials +for more details. +""" diff --git a/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers.py b/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers.py new file mode 100644 index 00000000..430b8ce4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers.py @@ -0,0 +1,649 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers for :mod:`grpc`.""" +import collections +import functools +from typing import Generic, Iterator, Optional, TypeVar +import warnings + +import google.auth +import google.auth.credentials +import google.auth.transport.grpc +import google.auth.transport.requests +import google.protobuf +import grpc + +from google.api_core import exceptions, general_helpers + +PROTOBUF_VERSION = google.protobuf.__version__ + +# The grpcio-gcp package only has support for protobuf < 4 +if PROTOBUF_VERSION[0:2] == "3.": # pragma: NO COVER + try: + import grpc_gcp + + warnings.warn( + """Support for grpcio-gcp is deprecated. This feature will be + removed from `google-api-core` after January 1, 2024. If you need to + continue to use this feature, please pin to a specific version of + `google-api-core`.""", + DeprecationWarning, + ) + HAS_GRPC_GCP = True + except ImportError: + HAS_GRPC_GCP = False +else: + HAS_GRPC_GCP = False + + +# The list of gRPC Callable interfaces that return iterators. +_STREAM_WRAP_CLASSES = (grpc.UnaryStreamMultiCallable, grpc.StreamStreamMultiCallable) + +# denotes the proto response type for grpc calls +P = TypeVar("P") + + +def _patch_callable_name(callable_): + """Fix-up gRPC callable attributes. + + gRPC callable lack the ``__name__`` attribute which causes + :func:`functools.wraps` to error. This adds the attribute if needed. + """ + if not hasattr(callable_, "__name__"): + callable_.__name__ = callable_.__class__.__name__ + + +def _wrap_unary_errors(callable_): + """Map errors for Unary-Unary and Stream-Unary gRPC callables.""" + _patch_callable_name(callable_) + + @functools.wraps(callable_) + def error_remapped_callable(*args, **kwargs): + try: + return callable_(*args, **kwargs) + except grpc.RpcError as exc: + raise exceptions.from_grpc_error(exc) from exc + + return error_remapped_callable + + +class _StreamingResponseIterator(Generic[P], grpc.Call): + def __init__(self, wrapped, prefetch_first_result=True): + self._wrapped = wrapped + + # This iterator is used in a retry context, and returned outside after init. + # gRPC will not throw an exception until the stream is consumed, so we need + # to retrieve the first result, in order to fail, in order to trigger a retry. + try: + if prefetch_first_result: + self._stored_first_result = next(self._wrapped) + except TypeError: + # It is possible the wrapped method isn't an iterable (a grpc.Call + # for instance). If this happens don't store the first result. + pass + except StopIteration: + # ignore stop iteration at this time. This should be handled outside of retry. + pass + + def __iter__(self) -> Iterator[P]: + """This iterator is also an iterable that returns itself.""" + return self + + def __next__(self) -> P: + """Get the next response from the stream. + + Returns: + protobuf.Message: A single response from the stream. + """ + try: + if hasattr(self, "_stored_first_result"): + result = self._stored_first_result + del self._stored_first_result + return result + return next(self._wrapped) + except grpc.RpcError as exc: + # If the stream has already returned data, we cannot recover here. + raise exceptions.from_grpc_error(exc) from exc + + # grpc.Call & grpc.RpcContext interface + + def add_callback(self, callback): + return self._wrapped.add_callback(callback) + + def cancel(self): + return self._wrapped.cancel() + + def code(self): + return self._wrapped.code() + + def details(self): + return self._wrapped.details() + + def initial_metadata(self): + return self._wrapped.initial_metadata() + + def is_active(self): + return self._wrapped.is_active() + + def time_remaining(self): + return self._wrapped.time_remaining() + + def trailing_metadata(self): + return self._wrapped.trailing_metadata() + + +# public type alias denoting the return type of streaming gapic calls +GrpcStream = _StreamingResponseIterator[P] + + +def _wrap_stream_errors(callable_): + """Wrap errors for Unary-Stream and Stream-Stream gRPC callables. + + The callables that return iterators require a bit more logic to re-map + errors when iterating. This wraps both the initial invocation and the + iterator of the return value to re-map errors. + """ + _patch_callable_name(callable_) + + @functools.wraps(callable_) + def error_remapped_callable(*args, **kwargs): + try: + result = callable_(*args, **kwargs) + # Auto-fetching the first result causes PubSub client's streaming pull + # to hang when re-opening the stream, thus we need examine the hacky + # hidden flag to see if pre-fetching is disabled. + # https://github.com/googleapis/python-pubsub/issues/93#issuecomment-630762257 + prefetch_first = getattr(callable_, "_prefetch_first_result_", True) + return _StreamingResponseIterator( + result, prefetch_first_result=prefetch_first + ) + except grpc.RpcError as exc: + raise exceptions.from_grpc_error(exc) from exc + + return error_remapped_callable + + +def wrap_errors(callable_): + """Wrap a gRPC callable and map :class:`grpc.RpcErrors` to friendly error + classes. + + Errors raised by the gRPC callable are mapped to the appropriate + :class:`google.api_core.exceptions.GoogleAPICallError` subclasses. + The original `grpc.RpcError` (which is usually also a `grpc.Call`) is + available from the ``response`` property on the mapped exception. This + is useful for extracting metadata from the original error. + + Args: + callable_ (Callable): A gRPC callable. + + Returns: + Callable: The wrapped gRPC callable. + """ + if isinstance(callable_, _STREAM_WRAP_CLASSES): + return _wrap_stream_errors(callable_) + else: + return _wrap_unary_errors(callable_) + + +def _create_composite_credentials( + credentials=None, + credentials_file=None, + default_scopes=None, + scopes=None, + ssl_credentials=None, + quota_project_id=None, + default_host=None, +): + """Create the composite credentials for secure channels. + + Args: + credentials (google.auth.credentials.Credentials): The credentials. If + not specified, then this function will attempt to ascertain the + credentials from the environment using :func:`google.auth.default`. + credentials_file (str): Deprecated. A file with credentials that can be loaded with + :func:`google.auth.load_credentials_from_file`. This argument is + mutually exclusive with credentials. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + default_scopes (Sequence[str]): A optional list of scopes needed for this + service. These are only used when credentials are not specified and + are passed to :func:`google.auth.default`. + scopes (Sequence[str]): A optional list of scopes needed for this + service. These are only used when credentials are not specified and + are passed to :func:`google.auth.default`. + ssl_credentials (grpc.ChannelCredentials): Optional SSL channel + credentials. This can be used to specify different certificates. + quota_project_id (str): An optional project to use for billing and quota. + default_host (str): The default endpoint. e.g., "pubsub.googleapis.com". + + Returns: + grpc.ChannelCredentials: The composed channel credentials object. + + Raises: + google.api_core.DuplicateCredentialArgs: If both a credentials object and credentials_file are passed. + """ + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + if credentials and credentials_file: + raise exceptions.DuplicateCredentialArgs( + "'credentials' and 'credentials_file' are mutually exclusive." + ) + + if credentials_file: + credentials, _ = google.auth.load_credentials_from_file( + credentials_file, scopes=scopes, default_scopes=default_scopes + ) + elif credentials: + credentials = google.auth.credentials.with_scopes_if_required( + credentials, scopes=scopes, default_scopes=default_scopes + ) + else: + credentials, _ = google.auth.default( + scopes=scopes, default_scopes=default_scopes + ) + + if quota_project_id and isinstance( + credentials, google.auth.credentials.CredentialsWithQuotaProject + ): + credentials = credentials.with_quota_project(quota_project_id) + + request = google.auth.transport.requests.Request() + + # Create the metadata plugin for inserting the authorization header. + metadata_plugin = google.auth.transport.grpc.AuthMetadataPlugin( + credentials, + request, + default_host=default_host, + ) + + # Create a set of grpc.CallCredentials using the metadata plugin. + google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) + + # if `ssl_credentials` is set, use `grpc.composite_channel_credentials` instead of + # `grpc.compute_engine_channel_credentials` as the former supports passing + # `ssl_credentials` via `channel_credentials` which is needed for mTLS. + if ssl_credentials: + # Combine the ssl credentials and the authorization credentials. + # See https://grpc.github.io/grpc/python/grpc.html#grpc.composite_channel_credentials + return grpc.composite_channel_credentials( + ssl_credentials, google_auth_credentials + ) + else: + # Use grpc.compute_engine_channel_credentials in order to support Direct Path. + # See https://grpc.github.io/grpc/python/grpc.html#grpc.compute_engine_channel_credentials + # TODO(https://github.com/googleapis/python-api-core/issues/598): + # Although `grpc.compute_engine_channel_credentials` returns channel credentials + # outside of a Google Compute Engine environment (GCE), we should determine if + # there is a way to reliably detect a GCE environment so that + # `grpc.compute_engine_channel_credentials` is not called outside of GCE. + return grpc.compute_engine_channel_credentials(google_auth_credentials) + + +def create_channel( + target, + credentials=None, + scopes=None, + ssl_credentials=None, + credentials_file=None, + quota_project_id=None, + default_scopes=None, + default_host=None, + compression=None, + attempt_direct_path: Optional[bool] = False, + **kwargs, +): + """Create a secure channel with credentials. + + Args: + target (str): The target service address in the format 'hostname:port'. + credentials (google.auth.credentials.Credentials): The credentials. If + not specified, then this function will attempt to ascertain the + credentials from the environment using :func:`google.auth.default`. + scopes (Sequence[str]): A optional list of scopes needed for this + service. These are only used when credentials are not specified and + are passed to :func:`google.auth.default`. + ssl_credentials (grpc.ChannelCredentials): Optional SSL channel + credentials. This can be used to specify different certificates. + credentials_file (str): A file with credentials that can be loaded with + :func:`google.auth.load_credentials_from_file`. This argument is + mutually exclusive with credentials. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + quota_project_id (str): An optional project to use for billing and quota. + default_scopes (Sequence[str]): Default scopes passed by a Google client + library. Use 'scopes' for user-defined scopes. + default_host (str): The default endpoint. e.g., "pubsub.googleapis.com". + compression (grpc.Compression): An optional value indicating the + compression method to be used over the lifetime of the channel. + attempt_direct_path (Optional[bool]): If set, Direct Path will be attempted + when the request is made. Direct Path is only available within a Google + Compute Engine (GCE) environment and provides a proxyless connection + which increases the available throughput, reduces latency, and increases + reliability. Note: + + - This argument should only be set in a GCE environment and for Services + that are known to support Direct Path. + - If this argument is set outside of GCE, then this request will fail + unless the back-end service happens to have configured fall-back to DNS. + - If the request causes a `ServiceUnavailable` response, it is recommended + that the client repeat the request with `attempt_direct_path` set to + `False` as the Service may not support Direct Path. + - Using `ssl_credentials` with `attempt_direct_path` set to `True` will + result in `ValueError` as this combination is not yet supported. + + kwargs: Additional key-word args passed to + :func:`grpc_gcp.secure_channel` or :func:`grpc.secure_channel`. + Note: `grpc_gcp` is only supported in environments with protobuf < 4.0.0. + + Returns: + grpc.Channel: The created channel. + + Raises: + google.api_core.DuplicateCredentialArgs: If both a credentials object and credentials_file are passed. + ValueError: If `ssl_credentials` is set and `attempt_direct_path` is set to `True`. + """ + + # If `ssl_credentials` is set and `attempt_direct_path` is set to `True`, + # raise ValueError as this is not yet supported. + # See https://github.com/googleapis/python-api-core/issues/590 + if ssl_credentials and attempt_direct_path: + raise ValueError("Using ssl_credentials with Direct Path is not supported") + + composite_credentials = _create_composite_credentials( + credentials=credentials, + credentials_file=credentials_file, + default_scopes=default_scopes, + scopes=scopes, + ssl_credentials=ssl_credentials, + quota_project_id=quota_project_id, + default_host=default_host, + ) + + # Note that grpcio-gcp is deprecated + if HAS_GRPC_GCP: # pragma: NO COVER + if compression is not None and compression != grpc.Compression.NoCompression: + warnings.warn( + "The `compression` argument is ignored for grpc_gcp.secure_channel creation.", + DeprecationWarning, + ) + if attempt_direct_path: + warnings.warn( + """The `attempt_direct_path` argument is ignored for grpc_gcp.secure_channel creation.""", + DeprecationWarning, + ) + return grpc_gcp.secure_channel(target, composite_credentials, **kwargs) + + if attempt_direct_path: + target = _modify_target_for_direct_path(target) + + return grpc.secure_channel( + target, composite_credentials, compression=compression, **kwargs + ) + + +def _modify_target_for_direct_path(target: str) -> str: + """ + Given a target, return a modified version which is compatible with Direct Path. + + Args: + target (str): The target service address in the format 'hostname[:port]' or + 'dns://hostname[:port]'. + + Returns: + target (str): The target service address which is converted into a format compatible with Direct Path. + If the target contains `dns:///` or does not contain `:///`, the target will be converted in + a format compatible with Direct Path; otherwise the original target will be returned as the + original target may already denote Direct Path. + """ + + # A DNS prefix may be included with the target to indicate the endpoint is living in the Internet, + # outside of Google Cloud Platform. + dns_prefix = "dns:///" + # Remove "dns:///" if `attempt_direct_path` is set to True as + # the Direct Path prefix `google-c2p:///` will be used instead. + target = target.replace(dns_prefix, "") + + direct_path_separator = ":///" + if direct_path_separator not in target: + target_without_port = target.split(":")[0] + # Modify the target to use Direct Path by adding the `google-c2p:///` prefix + target = f"google-c2p{direct_path_separator}{target_without_port}" + return target + + +_MethodCall = collections.namedtuple( + "_MethodCall", ("request", "timeout", "metadata", "credentials", "compression") +) + +_ChannelRequest = collections.namedtuple("_ChannelRequest", ("method", "request")) + + +class _CallableStub(object): + """Stub for the grpc.*MultiCallable interfaces.""" + + def __init__(self, method, channel): + self._method = method + self._channel = channel + self.response = None + """Union[protobuf.Message, Callable[protobuf.Message], exception]: + The response to give when invoking this callable. If this is a + callable, it will be invoked with the request protobuf. If it's an + exception, the exception will be raised when this is invoked. + """ + self.responses = None + """Iterator[ + Union[protobuf.Message, Callable[protobuf.Message], exception]]: + An iterator of responses. If specified, self.response will be populated + on each invocation by calling ``next(self.responses)``.""" + self.requests = [] + """List[protobuf.Message]: All requests sent to this callable.""" + self.calls = [] + """List[Tuple]: All invocations of this callable. Each tuple is the + request, timeout, metadata, compression, and credentials.""" + + def __call__( + self, request, timeout=None, metadata=None, credentials=None, compression=None + ): + self._channel.requests.append(_ChannelRequest(self._method, request)) + self.calls.append( + _MethodCall(request, timeout, metadata, credentials, compression) + ) + self.requests.append(request) + + response = self.response + if self.responses is not None: + if response is None: + response = next(self.responses) + else: + raise ValueError( + "{method}.response and {method}.responses are mutually " + "exclusive.".format(method=self._method) + ) + + if callable(response): + return response(request) + + if isinstance(response, Exception): + raise response + + if response is not None: + return response + + raise ValueError('Method stub for "{}" has no response.'.format(self._method)) + + +def _simplify_method_name(method): + """Simplifies a gRPC method name. + + When gRPC invokes the channel to create a callable, it gives a full + method name like "/google.pubsub.v1.Publisher/CreateTopic". This + returns just the name of the method, in this case "CreateTopic". + + Args: + method (str): The name of the method. + + Returns: + str: The simplified name of the method. + """ + return method.rsplit("/", 1).pop() + + +class ChannelStub(grpc.Channel): + """A testing stub for the grpc.Channel interface. + + This can be used to test any client that eventually uses a gRPC channel + to communicate. By passing in a channel stub, you can configure which + responses are returned and track which requests are made. + + For example: + + .. code-block:: python + + channel_stub = grpc_helpers.ChannelStub() + client = FooClient(channel=channel_stub) + + channel_stub.GetFoo.response = foo_pb2.Foo(name='bar') + + foo = client.get_foo(labels=['baz']) + + assert foo.name == 'bar' + assert channel_stub.GetFoo.requests[0].labels = ['baz'] + + Each method on the stub can be accessed and configured on the channel. + Here's some examples of various configurations: + + .. code-block:: python + + # Return a basic response: + + channel_stub.GetFoo.response = foo_pb2.Foo(name='bar') + assert client.get_foo().name == 'bar' + + # Raise an exception: + channel_stub.GetFoo.response = NotFound('...') + + with pytest.raises(NotFound): + client.get_foo() + + # Use a sequence of responses: + channel_stub.GetFoo.responses = iter([ + foo_pb2.Foo(name='bar'), + foo_pb2.Foo(name='baz'), + ]) + + assert client.get_foo().name == 'bar' + assert client.get_foo().name == 'baz' + + # Use a callable + + def on_get_foo(request): + return foo_pb2.Foo(name='bar' + request.id) + + channel_stub.GetFoo.response = on_get_foo + + assert client.get_foo(id='123').name == 'bar123' + """ + + def __init__(self, responses=[]): + self.requests = [] + """Sequence[Tuple[str, protobuf.Message]]: A list of all requests made + on this channel in order. The tuple is of method name, request + message.""" + self._method_stubs = {} + + def _stub_for_method(self, method): + method = _simplify_method_name(method) + self._method_stubs[method] = _CallableStub(method, self) + return self._method_stubs[method] + + def __getattr__(self, key): + try: + return self._method_stubs[key] + except KeyError: + raise AttributeError + + def unary_unary( + self, + method, + request_serializer=None, + response_deserializer=None, + _registered_method=False, + ): + """grpc.Channel.unary_unary implementation.""" + return self._stub_for_method(method) + + def unary_stream( + self, + method, + request_serializer=None, + response_deserializer=None, + _registered_method=False, + ): + """grpc.Channel.unary_stream implementation.""" + return self._stub_for_method(method) + + def stream_unary( + self, + method, + request_serializer=None, + response_deserializer=None, + _registered_method=False, + ): + """grpc.Channel.stream_unary implementation.""" + return self._stub_for_method(method) + + def stream_stream( + self, + method, + request_serializer=None, + response_deserializer=None, + _registered_method=False, + ): + """grpc.Channel.stream_stream implementation.""" + return self._stub_for_method(method) + + def subscribe(self, callback, try_to_connect=False): + """grpc.Channel.subscribe implementation.""" + pass + + def unsubscribe(self, callback): + """grpc.Channel.unsubscribe implementation.""" + pass + + def close(self): + """grpc.Channel.close implementation.""" + pass diff --git a/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers_async.py b/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers_async.py new file mode 100644 index 00000000..312d4df8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/grpc_helpers_async.py @@ -0,0 +1,348 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""AsyncIO helpers for :mod:`grpc` supporting 3.7+. + +Please combine more detailed docstring in grpc_helpers.py to use following +functions. This module is implementing the same surface with AsyncIO semantics. +""" + +import asyncio +import functools +import warnings + +from typing import AsyncGenerator, Generic, Iterator, Optional, TypeVar + +import grpc +from grpc import aio + +from google.api_core import exceptions, general_helpers, grpc_helpers + +# denotes the proto response type for grpc calls +P = TypeVar("P") + +# NOTE(lidiz) Alternatively, we can hack "__getattribute__" to perform +# automatic patching for us. But that means the overhead of creating an +# extra Python function spreads to every single send and receive. + + +class _WrappedCall(aio.Call): + def __init__(self): + self._call = None + + def with_call(self, call): + """Supplies the call object separately to keep __init__ clean.""" + self._call = call + return self + + async def initial_metadata(self): + return await self._call.initial_metadata() + + async def trailing_metadata(self): + return await self._call.trailing_metadata() + + async def code(self): + return await self._call.code() + + async def details(self): + return await self._call.details() + + def cancelled(self): + return self._call.cancelled() + + def done(self): + return self._call.done() + + def time_remaining(self): + return self._call.time_remaining() + + def cancel(self): + return self._call.cancel() + + def add_done_callback(self, callback): + self._call.add_done_callback(callback) + + async def wait_for_connection(self): + try: + await self._call.wait_for_connection() + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + +class _WrappedUnaryResponseMixin(Generic[P], _WrappedCall): + def __await__(self) -> Iterator[P]: + try: + response = yield from self._call.__await__() + return response + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + +class _WrappedStreamResponseMixin(Generic[P], _WrappedCall): + def __init__(self): + self._wrapped_async_generator = None + + async def read(self) -> P: + try: + return await self._call.read() + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + async def _wrapped_aiter(self) -> AsyncGenerator[P, None]: + try: + # NOTE(lidiz) coverage doesn't understand the exception raised from + # __anext__ method. It is covered by test case: + # test_wrap_stream_errors_aiter_non_rpc_error + async for response in self._call: # pragma: no branch + yield response + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + def __aiter__(self) -> AsyncGenerator[P, None]: + if not self._wrapped_async_generator: + self._wrapped_async_generator = self._wrapped_aiter() + return self._wrapped_async_generator + + +class _WrappedStreamRequestMixin(_WrappedCall): + async def write(self, request): + try: + await self._call.write(request) + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + async def done_writing(self): + try: + await self._call.done_writing() + except grpc.RpcError as rpc_error: + raise exceptions.from_grpc_error(rpc_error) from rpc_error + + +# NOTE(lidiz) Implementing each individual class separately, so we don't +# expose any API that should not be seen. E.g., __aiter__ in unary-unary +# RPC, or __await__ in stream-stream RPC. +class _WrappedUnaryUnaryCall(_WrappedUnaryResponseMixin[P], aio.UnaryUnaryCall): + """Wrapped UnaryUnaryCall to map exceptions.""" + + +class _WrappedUnaryStreamCall(_WrappedStreamResponseMixin[P], aio.UnaryStreamCall): + """Wrapped UnaryStreamCall to map exceptions.""" + + +class _WrappedStreamUnaryCall( + _WrappedUnaryResponseMixin[P], _WrappedStreamRequestMixin, aio.StreamUnaryCall +): + """Wrapped StreamUnaryCall to map exceptions.""" + + +class _WrappedStreamStreamCall( + _WrappedStreamRequestMixin, _WrappedStreamResponseMixin[P], aio.StreamStreamCall +): + """Wrapped StreamStreamCall to map exceptions.""" + + +# public type alias denoting the return type of async streaming gapic calls +GrpcAsyncStream = _WrappedStreamResponseMixin +# public type alias denoting the return type of unary gapic calls +AwaitableGrpcCall = _WrappedUnaryResponseMixin + + +def _wrap_unary_errors(callable_): + """Map errors for Unary-Unary async callables.""" + + @functools.wraps(callable_) + def error_remapped_callable(*args, **kwargs): + call = callable_(*args, **kwargs) + return _WrappedUnaryUnaryCall().with_call(call) + + return error_remapped_callable + + +def _wrap_stream_errors(callable_, wrapper_type): + """Map errors for streaming RPC async callables.""" + + @functools.wraps(callable_) + async def error_remapped_callable(*args, **kwargs): + call = callable_(*args, **kwargs) + call = wrapper_type().with_call(call) + await call.wait_for_connection() + return call + + return error_remapped_callable + + +def wrap_errors(callable_): + """Wrap a gRPC async callable and map :class:`grpc.RpcErrors` to + friendly error classes. + + Errors raised by the gRPC callable are mapped to the appropriate + :class:`google.api_core.exceptions.GoogleAPICallError` subclasses. The + original `grpc.RpcError` (which is usually also a `grpc.Call`) is + available from the ``response`` property on the mapped exception. This + is useful for extracting metadata from the original error. + + Args: + callable_ (Callable): A gRPC callable. + + Returns: Callable: The wrapped gRPC callable. + """ + grpc_helpers._patch_callable_name(callable_) + + if isinstance(callable_, aio.UnaryStreamMultiCallable): + return _wrap_stream_errors(callable_, _WrappedUnaryStreamCall) + elif isinstance(callable_, aio.StreamUnaryMultiCallable): + return _wrap_stream_errors(callable_, _WrappedStreamUnaryCall) + elif isinstance(callable_, aio.StreamStreamMultiCallable): + return _wrap_stream_errors(callable_, _WrappedStreamStreamCall) + else: + return _wrap_unary_errors(callable_) + + +def create_channel( + target, + credentials=None, + scopes=None, + ssl_credentials=None, + credentials_file=None, + quota_project_id=None, + default_scopes=None, + default_host=None, + compression=None, + attempt_direct_path: Optional[bool] = False, + **kwargs +): + """Create an AsyncIO secure channel with credentials. + + Args: + target (str): The target service address in the format 'hostname:port'. + credentials (google.auth.credentials.Credentials): The credentials. If + not specified, then this function will attempt to ascertain the + credentials from the environment using :func:`google.auth.default`. + scopes (Sequence[str]): A optional list of scopes needed for this + service. These are only used when credentials are not specified and + are passed to :func:`google.auth.default`. + ssl_credentials (grpc.ChannelCredentials): Optional SSL channel + credentials. This can be used to specify different certificates. + credentials_file (str): Deprecated. A file with credentials that can be loaded with + :func:`google.auth.load_credentials_from_file`. This argument is + mutually exclusive with credentials. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + quota_project_id (str): An optional project to use for billing and quota. + default_scopes (Sequence[str]): Default scopes passed by a Google client + library. Use 'scopes' for user-defined scopes. + default_host (str): The default endpoint. e.g., "pubsub.googleapis.com". + compression (grpc.Compression): An optional value indicating the + compression method to be used over the lifetime of the channel. + attempt_direct_path (Optional[bool]): If set, Direct Path will be attempted + when the request is made. Direct Path is only available within a Google + Compute Engine (GCE) environment and provides a proxyless connection + which increases the available throughput, reduces latency, and increases + reliability. Note: + + - This argument should only be set in a GCE environment and for Services + that are known to support Direct Path. + - If this argument is set outside of GCE, then this request will fail + unless the back-end service happens to have configured fall-back to DNS. + - If the request causes a `ServiceUnavailable` response, it is recommended + that the client repeat the request with `attempt_direct_path` set to + `False` as the Service may not support Direct Path. + - Using `ssl_credentials` with `attempt_direct_path` set to `True` will + result in `ValueError` as this combination is not yet supported. + + kwargs: Additional key-word args passed to :func:`aio.secure_channel`. + + Returns: + aio.Channel: The created channel. + + Raises: + google.api_core.DuplicateCredentialArgs: If both a credentials object and credentials_file are passed. + ValueError: If `ssl_credentials` is set and `attempt_direct_path` is set to `True`. + """ + + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + # If `ssl_credentials` is set and `attempt_direct_path` is set to `True`, + # raise ValueError as this is not yet supported. + # See https://github.com/googleapis/python-api-core/issues/590 + if ssl_credentials and attempt_direct_path: + raise ValueError("Using ssl_credentials with Direct Path is not supported") + + composite_credentials = grpc_helpers._create_composite_credentials( + credentials=credentials, + credentials_file=credentials_file, + scopes=scopes, + default_scopes=default_scopes, + ssl_credentials=ssl_credentials, + quota_project_id=quota_project_id, + default_host=default_host, + ) + + if attempt_direct_path: + target = grpc_helpers._modify_target_for_direct_path(target) + + return aio.secure_channel( + target, composite_credentials, compression=compression, **kwargs + ) + + +class FakeUnaryUnaryCall(_WrappedUnaryUnaryCall): + """Fake implementation for unary-unary RPCs. + + It is a dummy object for response message. Supply the intended response + upon the initialization, and the coroutine will return the exact response + message. + """ + + def __init__(self, response=object()): + self.response = response + self._future = asyncio.get_event_loop().create_future() + self._future.set_result(self.response) + + def __await__(self): + response = yield from self._future.__await__() + return response + + +class FakeStreamUnaryCall(_WrappedStreamUnaryCall): + """Fake implementation for stream-unary RPCs. + + It is a dummy object for response message. Supply the intended response + upon the initialization, and the coroutine will return the exact response + message. + """ + + def __init__(self, response=object()): + self.response = response + self._future = asyncio.get_event_loop().create_future() + self._future.set_result(self.response) + + def __await__(self): + response = yield from self._future.__await__() + return response + + async def wait_for_connection(self): + pass diff --git a/ocr/.venv/Lib/site-packages/google/api_core/iam.py b/ocr/.venv/Lib/site-packages/google/api_core/iam.py new file mode 100644 index 00000000..4437c701 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/iam.py @@ -0,0 +1,427 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Non-API-specific IAM policy definitions + +For allowed roles / permissions, see: +https://cloud.google.com/iam/docs/understanding-roles + +Example usage: + +.. code-block:: python + + # ``get_iam_policy`` returns a :class:'~google.api_core.iam.Policy`. + policy = resource.get_iam_policy(requested_policy_version=3) + + phred = "user:phred@example.com" + admin_group = "group:admins@groups.example.com" + account = "serviceAccount:account-1234@accounts.example.com" + + policy.version = 3 + policy.bindings = [ + { + "role": "roles/owner", + "members": {phred, admin_group, account} + }, + { + "role": "roles/editor", + "members": {"allAuthenticatedUsers"} + }, + { + "role": "roles/viewer", + "members": {"allUsers"} + "condition": { + "title": "request_time", + "description": "Requests made before 2021-01-01T00:00:00Z", + "expression": "request.time < timestamp(\"2021-01-01T00:00:00Z\")" + } + } + ] + + resource.set_iam_policy(policy) +""" + +import collections +import collections.abc +import operator +import warnings + +# Generic IAM roles + +OWNER_ROLE = "roles/owner" +"""Generic role implying all rights to an object.""" + +EDITOR_ROLE = "roles/editor" +"""Generic role implying rights to modify an object.""" + +VIEWER_ROLE = "roles/viewer" +"""Generic role implying rights to access an object.""" + +_ASSIGNMENT_DEPRECATED_MSG = """\ +Assigning to '{}' is deprecated. Use the `policy.bindings` property to modify bindings instead.""" + +_DICT_ACCESS_MSG = """\ +Dict access is not supported on policies with version > 1 or with conditional bindings.""" + + +class InvalidOperationException(Exception): + """Raised when trying to use Policy class as a dict.""" + + pass + + +class Policy(collections.abc.MutableMapping): + """IAM Policy + + Args: + etag (Optional[str]): ETag used to identify a unique of the policy + version (Optional[int]): The syntax schema version of the policy. + + Note: + Using conditions in bindings requires the policy's version to be set + to `3` or greater, depending on the versions that are currently supported. + + Accessing the policy using dict operations will raise InvalidOperationException + when the policy's version is set to 3. + + Use the policy.bindings getter/setter to retrieve and modify the policy's bindings. + + See: + IAM Policy https://cloud.google.com/iam/reference/rest/v1/Policy + Policy versions https://cloud.google.com/iam/docs/policies#versions + Conditions overview https://cloud.google.com/iam/docs/conditions-overview. + """ + + _OWNER_ROLES = (OWNER_ROLE,) + """Roles mapped onto our ``owners`` attribute.""" + + _EDITOR_ROLES = (EDITOR_ROLE,) + """Roles mapped onto our ``editors`` attribute.""" + + _VIEWER_ROLES = (VIEWER_ROLE,) + """Roles mapped onto our ``viewers`` attribute.""" + + def __init__(self, etag=None, version=None): + self.etag = etag + self.version = version + self._bindings = [] + + def __iter__(self): + self.__check_version__() + # Exclude bindings with no members + return (binding["role"] for binding in self._bindings if binding["members"]) + + def __len__(self): + self.__check_version__() + # Exclude bindings with no members + return len(list(self.__iter__())) + + def __getitem__(self, key): + self.__check_version__() + for b in self._bindings: + if b["role"] == key: + return b["members"] + # If the binding does not yet exist, create one + # NOTE: This will create bindings with no members + # which are ignored by __iter__ and __len__ + new_binding = {"role": key, "members": set()} + self._bindings.append(new_binding) + return new_binding["members"] + + def __setitem__(self, key, value): + self.__check_version__() + value = set(value) + for binding in self._bindings: + if binding["role"] == key: + binding["members"] = value + return + self._bindings.append({"role": key, "members": value}) + + def __delitem__(self, key): + self.__check_version__() + for b in self._bindings: + if b["role"] == key: + self._bindings.remove(b) + return + raise KeyError(key) + + def __check_version__(self): + """Raise InvalidOperationException if version is greater than 1 or policy contains conditions.""" + raise_version = self.version is not None and self.version > 1 + + if raise_version or self._contains_conditions(): + raise InvalidOperationException(_DICT_ACCESS_MSG) + + def _contains_conditions(self): + for b in self._bindings: + if b.get("condition") is not None: + return True + return False + + @property + def bindings(self): + """The policy's list of bindings. + + A binding is specified by a dictionary with keys: + + * role (str): Role that is assigned to `members`. + + * members (:obj:`set` of str): Specifies the identities associated to this binding. + + * condition (:obj:`dict` of str:str): Specifies a condition under which this binding will apply. + + * title (str): Title for the condition. + + * description (:obj:str, optional): Description of the condition. + + * expression: A CEL expression. + + Type: + :obj:`list` of :obj:`dict` + + See: + Policy versions https://cloud.google.com/iam/docs/policies#versions + Conditions overview https://cloud.google.com/iam/docs/conditions-overview. + + Example: + + .. code-block:: python + + USER = "user:phred@example.com" + ADMIN_GROUP = "group:admins@groups.example.com" + SERVICE_ACCOUNT = "serviceAccount:account-1234@accounts.example.com" + CONDITION = { + "title": "request_time", + "description": "Requests made before 2021-01-01T00:00:00Z", # Optional + "expression": "request.time < timestamp(\"2021-01-01T00:00:00Z\")" + } + + # Set policy's version to 3 before setting bindings containing conditions. + policy.version = 3 + + policy.bindings = [ + { + "role": "roles/viewer", + "members": {USER, ADMIN_GROUP, SERVICE_ACCOUNT}, + "condition": CONDITION + }, + ... + ] + """ + return self._bindings + + @bindings.setter + def bindings(self, bindings): + self._bindings = bindings + + @property + def owners(self): + """Legacy access to owner role. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to access bindings instead. + """ + result = set() + for role in self._OWNER_ROLES: + for member in self.get(role, ()): + result.add(member) + return frozenset(result) + + @owners.setter + def owners(self, value): + """Update owners. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to access bindings instead. + """ + warnings.warn( + _ASSIGNMENT_DEPRECATED_MSG.format("owners", OWNER_ROLE), DeprecationWarning + ) + self[OWNER_ROLE] = value + + @property + def editors(self): + """Legacy access to editor role. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to access bindings instead. + """ + result = set() + for role in self._EDITOR_ROLES: + for member in self.get(role, ()): + result.add(member) + return frozenset(result) + + @editors.setter + def editors(self, value): + """Update editors. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to modify bindings instead. + """ + warnings.warn( + _ASSIGNMENT_DEPRECATED_MSG.format("editors", EDITOR_ROLE), + DeprecationWarning, + ) + self[EDITOR_ROLE] = value + + @property + def viewers(self): + """Legacy access to viewer role. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to modify bindings instead. + """ + result = set() + for role in self._VIEWER_ROLES: + for member in self.get(role, ()): + result.add(member) + return frozenset(result) + + @viewers.setter + def viewers(self, value): + """Update viewers. + + Raise InvalidOperationException if version is greater than 1 or policy contains conditions. + + DEPRECATED: use `policy.bindings` to modify bindings instead. + """ + warnings.warn( + _ASSIGNMENT_DEPRECATED_MSG.format("viewers", VIEWER_ROLE), + DeprecationWarning, + ) + self[VIEWER_ROLE] = value + + @staticmethod + def user(email): + """Factory method for a user member. + + Args: + email (str): E-mail for this particular user. + + Returns: + str: A member string corresponding to the given user. + """ + return "user:%s" % (email,) + + @staticmethod + def service_account(email): + """Factory method for a service account member. + + Args: + email (str): E-mail for this particular service account. + + Returns: + str: A member string corresponding to the given service account. + + """ + return "serviceAccount:%s" % (email,) + + @staticmethod + def group(email): + """Factory method for a group member. + + Args: + email (str): An id or e-mail for this particular group. + + Returns: + str: A member string corresponding to the given group. + """ + return "group:%s" % (email,) + + @staticmethod + def domain(domain): + """Factory method for a domain member. + + Args: + domain (str): The domain for this member. + + Returns: + str: A member string corresponding to the given domain. + """ + return "domain:%s" % (domain,) + + @staticmethod + def all_users(): + """Factory method for a member representing all users. + + Returns: + str: A member string representing all users. + """ + return "allUsers" + + @staticmethod + def authenticated_users(): + """Factory method for a member representing all authenticated users. + + Returns: + str: A member string representing all authenticated users. + """ + return "allAuthenticatedUsers" + + @classmethod + def from_api_repr(cls, resource): + """Factory: create a policy from a JSON resource. + + Args: + resource (dict): policy resource returned by ``getIamPolicy`` API. + + Returns: + :class:`Policy`: the parsed policy + """ + version = resource.get("version") + etag = resource.get("etag") + policy = cls(etag, version) + policy.bindings = resource.get("bindings", []) + + for binding in policy.bindings: + binding["members"] = set(binding.get("members", ())) + + return policy + + def to_api_repr(self): + """Render a JSON policy resource. + + Returns: + dict: a resource to be passed to the ``setIamPolicy`` API. + """ + resource = {} + + if self.etag is not None: + resource["etag"] = self.etag + + if self.version is not None: + resource["version"] = self.version + + if self._bindings and len(self._bindings) > 0: + bindings = [] + for binding in self._bindings: + members = binding.get("members") + if members: + new_binding = {"role": binding["role"], "members": sorted(members)} + condition = binding.get("condition") + if condition: + new_binding["condition"] = condition + bindings.append(new_binding) + + if bindings: + # Sort bindings by role + key = operator.itemgetter("role") + resource["bindings"] = sorted(bindings, key=key) + + return resource diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operation.py b/ocr/.venv/Lib/site-packages/google/api_core/operation.py new file mode 100644 index 00000000..4b9c9a58 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operation.py @@ -0,0 +1,365 @@ +# Copyright 2016 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Futures for long-running operations returned from Google Cloud APIs. + +These futures can be used to synchronously wait for the result of a +long-running operation using :meth:`Operation.result`: + + +.. code-block:: python + + operation = my_api_client.long_running_method() + result = operation.result() + +Or asynchronously using callbacks and :meth:`Operation.add_done_callback`: + +.. code-block:: python + + operation = my_api_client.long_running_method() + + def my_callback(future): + result = future.result() + + operation.add_done_callback(my_callback) + +""" + +import functools +import threading + +from google.api_core import exceptions +from google.api_core import protobuf_helpers +from google.api_core.future import polling +from google.longrunning import operations_pb2 +from google.protobuf import json_format +from google.rpc import code_pb2 + + +class Operation(polling.PollingFuture): + """A Future for interacting with a Google API Long-Running Operation. + + Args: + operation (google.longrunning.operations_pb2.Operation): The + initial operation. + refresh (Callable[[], ~.api_core.operation.Operation]): A callable that + returns the latest state of the operation. + cancel (Callable[[], None]): A callable that tries to cancel + the operation. + result_type (func:`type`): The protobuf type for the operation's + result. + metadata_type (func:`type`): The protobuf type for the operation's + metadata. + polling (google.api_core.retry.Retry): The configuration used for polling. + This parameter controls how often :meth:`done` is polled. If the + ``timeout`` argument is specified in the :meth:`result` method, it will + override the ``polling.timeout`` property. + retry (google.api_core.retry.Retry): DEPRECATED: use ``polling`` instead. + If specified it will override ``polling`` parameter to maintain + backward compatibility. + """ + + def __init__( + self, + operation, + refresh, + cancel, + result_type, + metadata_type=None, + polling=polling.DEFAULT_POLLING, + **kwargs + ): + super(Operation, self).__init__(polling=polling, **kwargs) + self._operation = operation + self._refresh = refresh + self._cancel = cancel + self._result_type = result_type + self._metadata_type = metadata_type + self._completion_lock = threading.Lock() + # Invoke this in case the operation came back already complete. + self._set_result_from_operation() + + @property + def operation(self): + """google.longrunning.Operation: The current long-running operation.""" + return self._operation + + @property + def metadata(self): + """google.protobuf.Message: the current operation metadata.""" + if not self._operation.HasField("metadata"): + return None + + return protobuf_helpers.from_any_pb( + self._metadata_type, self._operation.metadata + ) + + @classmethod + def deserialize(self, payload): + """Deserialize a ``google.longrunning.Operation`` protocol buffer. + + Args: + payload (bytes): A serialized operation protocol buffer. + + Returns: + ~.operations_pb2.Operation: An Operation protobuf object. + """ + return operations_pb2.Operation.FromString(payload) + + def _set_result_from_operation(self): + """Set the result or exception from the operation if it is complete.""" + # This must be done in a lock to prevent the polling thread + # and main thread from both executing the completion logic + # at the same time. + with self._completion_lock: + # If the operation isn't complete or if the result has already been + # set, do not call set_result/set_exception again. + # Note: self._result_set is set to True in set_result and + # set_exception, in case those methods are invoked directly. + if not self._operation.done or self._result_set: + return + + if self._operation.HasField("response"): + response = protobuf_helpers.from_any_pb( + self._result_type, self._operation.response + ) + self.set_result(response) + elif self._operation.HasField("error"): + exception = exceptions.from_grpc_status( + status_code=self._operation.error.code, + message=self._operation.error.message, + errors=(self._operation.error,), + response=self._operation, + ) + self.set_exception(exception) + else: + exception = exceptions.GoogleAPICallError( + "Unexpected state: Long-running operation had neither " + "response nor error set." + ) + self.set_exception(exception) + + def _refresh_and_update(self, retry=None): + """Refresh the operation and update the result if needed. + + Args: + retry (google.api_core.retry.Retry): (Optional) How to retry the RPC. + """ + # If the currently cached operation is done, no need to make another + # RPC as it will not change once done. + if not self._operation.done: + self._operation = self._refresh(retry=retry) if retry else self._refresh() + self._set_result_from_operation() + + def done(self, retry=None): + """Checks to see if the operation is complete. + + Args: + retry (google.api_core.retry.Retry): (Optional) How to retry the RPC. + + Returns: + bool: True if the operation is complete, False otherwise. + """ + self._refresh_and_update(retry) + return self._operation.done + + def cancel(self): + """Attempt to cancel the operation. + + Returns: + bool: True if the cancel RPC was made, False if the operation is + already complete. + """ + if self.done(): + return False + + self._cancel() + return True + + def cancelled(self): + """True if the operation was cancelled.""" + self._refresh_and_update() + return ( + self._operation.HasField("error") + and self._operation.error.code == code_pb2.CANCELLED + ) + + +def _refresh_http(api_request, operation_name, retry=None): + """Refresh an operation using a JSON/HTTP client. + + Args: + api_request (Callable): A callable used to make an API request. This + should generally be + :meth:`google.cloud._http.Connection.api_request`. + operation_name (str): The name of the operation. + retry (google.api_core.retry.Retry): (Optional) retry policy + + Returns: + google.longrunning.operations_pb2.Operation: The operation. + """ + path = "operations/{}".format(operation_name) + + if retry is not None: + api_request = retry(api_request) + + api_response = api_request(method="GET", path=path) + return json_format.ParseDict(api_response, operations_pb2.Operation()) + + +def _cancel_http(api_request, operation_name): + """Cancel an operation using a JSON/HTTP client. + + Args: + api_request (Callable): A callable used to make an API request. This + should generally be + :meth:`google.cloud._http.Connection.api_request`. + operation_name (str): The name of the operation. + """ + path = "operations/{}:cancel".format(operation_name) + api_request(method="POST", path=path) + + +def from_http_json(operation, api_request, result_type, **kwargs): + """Create an operation future using a HTTP/JSON client. + + This interacts with the long-running operations `service`_ (specific + to a given API) via `HTTP/JSON`_. + + .. _HTTP/JSON: https://cloud.google.com/speech/reference/rest/\ + v1beta1/operations#Operation + + Args: + operation (dict): Operation as a dictionary. + api_request (Callable): A callable used to make an API request. This + should generally be + :meth:`google.cloud._http.Connection.api_request`. + result_type (:func:`type`): The protobuf result type. + kwargs: Keyword args passed into the :class:`Operation` constructor. + + Returns: + ~.api_core.operation.Operation: The operation future to track the given + operation. + """ + operation_proto = json_format.ParseDict(operation, operations_pb2.Operation()) + refresh = functools.partial(_refresh_http, api_request, operation_proto.name) + cancel = functools.partial(_cancel_http, api_request, operation_proto.name) + return Operation(operation_proto, refresh, cancel, result_type, **kwargs) + + +def _refresh_grpc(operations_stub, operation_name, retry=None): + """Refresh an operation using a gRPC client. + + Args: + operations_stub (google.longrunning.operations_pb2.OperationsStub): + The gRPC operations stub. + operation_name (str): The name of the operation. + retry (google.api_core.retry.Retry): (Optional) retry policy + + Returns: + google.longrunning.operations_pb2.Operation: The operation. + """ + request_pb = operations_pb2.GetOperationRequest(name=operation_name) + + rpc = operations_stub.GetOperation + if retry is not None: + rpc = retry(rpc) + + return rpc(request_pb) + + +def _cancel_grpc(operations_stub, operation_name): + """Cancel an operation using a gRPC client. + + Args: + operations_stub (google.longrunning.operations_pb2.OperationsStub): + The gRPC operations stub. + operation_name (str): The name of the operation. + """ + request_pb = operations_pb2.CancelOperationRequest(name=operation_name) + operations_stub.CancelOperation(request_pb) + + +def from_grpc(operation, operations_stub, result_type, grpc_metadata=None, **kwargs): + """Create an operation future using a gRPC client. + + This interacts with the long-running operations `service`_ (specific + to a given API) via gRPC. + + .. _service: https://github.com/googleapis/googleapis/blob/\ + 050400df0fdb16f63b63e9dee53819044bffc857/\ + google/longrunning/operations.proto#L38 + + Args: + operation (google.longrunning.operations_pb2.Operation): The operation. + operations_stub (google.longrunning.operations_pb2.OperationsStub): + The operations stub. + result_type (:func:`type`): The protobuf result type. + grpc_metadata (Optional[List[Tuple[str, str]]]): Additional metadata to pass + to the rpc. + kwargs: Keyword args passed into the :class:`Operation` constructor. + + Returns: + ~.api_core.operation.Operation: The operation future to track the given + operation. + """ + refresh = functools.partial( + _refresh_grpc, + operations_stub, + operation.name, + metadata=grpc_metadata, + ) + cancel = functools.partial( + _cancel_grpc, + operations_stub, + operation.name, + metadata=grpc_metadata, + ) + return Operation(operation, refresh, cancel, result_type, **kwargs) + + +def from_gapic(operation, operations_client, result_type, grpc_metadata=None, **kwargs): + """Create an operation future from a gapic client. + + This interacts with the long-running operations `service`_ (specific + to a given API) via a gapic client. + + .. _service: https://github.com/googleapis/googleapis/blob/\ + 050400df0fdb16f63b63e9dee53819044bffc857/\ + google/longrunning/operations.proto#L38 + + Args: + operation (google.longrunning.operations_pb2.Operation): The operation. + operations_client (google.api_core.operations_v1.OperationsClient): + The operations client. + result_type (:func:`type`): The protobuf result type. + grpc_metadata (Optional[List[Tuple[str, str]]]): Additional metadata to pass + to the rpc. + kwargs: Keyword args passed into the :class:`Operation` constructor. + + Returns: + ~.api_core.operation.Operation: The operation future to track the given + operation. + """ + refresh = functools.partial( + operations_client.get_operation, + operation.name, + metadata=grpc_metadata, + ) + cancel = functools.partial( + operations_client.cancel_operation, + operation.name, + metadata=grpc_metadata, + ) + return Operation(operation, refresh, cancel, result_type, **kwargs) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operation_async.py b/ocr/.venv/Lib/site-packages/google/api_core/operation_async.py new file mode 100644 index 00000000..2fd341d9 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operation_async.py @@ -0,0 +1,225 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""AsyncIO futures for long-running operations returned from Google Cloud APIs. + +These futures can be used to await for the result of a long-running operation +using :meth:`AsyncOperation.result`: + + +.. code-block:: python + + operation = my_api_client.long_running_method() + result = await operation.result() + +Or asynchronously using callbacks and :meth:`Operation.add_done_callback`: + +.. code-block:: python + + operation = my_api_client.long_running_method() + + def my_callback(future): + result = await future.result() + + operation.add_done_callback(my_callback) + +""" + +import functools +import threading + +from google.api_core import exceptions +from google.api_core import protobuf_helpers +from google.api_core.future import async_future +from google.longrunning import operations_pb2 +from google.rpc import code_pb2 + + +class AsyncOperation(async_future.AsyncFuture): + """A Future for interacting with a Google API Long-Running Operation. + + Args: + operation (google.longrunning.operations_pb2.Operation): The + initial operation. + refresh (Callable[[], ~.api_core.operation.Operation]): A callable that + returns the latest state of the operation. + cancel (Callable[[], None]): A callable that tries to cancel + the operation. + result_type (func:`type`): The protobuf type for the operation's + result. + metadata_type (func:`type`): The protobuf type for the operation's + metadata. + retry (google.api_core.retry.Retry): The retry configuration used + when polling. This can be used to control how often :meth:`done` + is polled. Regardless of the retry's ``deadline``, it will be + overridden by the ``timeout`` argument to :meth:`result`. + """ + + def __init__( + self, + operation, + refresh, + cancel, + result_type, + metadata_type=None, + retry=async_future.DEFAULT_RETRY, + ): + super().__init__(retry=retry) + self._operation = operation + self._refresh = refresh + self._cancel = cancel + self._result_type = result_type + self._metadata_type = metadata_type + self._completion_lock = threading.Lock() + # Invoke this in case the operation came back already complete. + self._set_result_from_operation() + + @property + def operation(self): + """google.longrunning.Operation: The current long-running operation.""" + return self._operation + + @property + def metadata(self): + """google.protobuf.Message: the current operation metadata.""" + if not self._operation.HasField("metadata"): + return None + + return protobuf_helpers.from_any_pb( + self._metadata_type, self._operation.metadata + ) + + @classmethod + def deserialize(cls, payload): + """Deserialize a ``google.longrunning.Operation`` protocol buffer. + + Args: + payload (bytes): A serialized operation protocol buffer. + + Returns: + ~.operations_pb2.Operation: An Operation protobuf object. + """ + return operations_pb2.Operation.FromString(payload) + + def _set_result_from_operation(self): + """Set the result or exception from the operation if it is complete.""" + # This must be done in a lock to prevent the async_future thread + # and main thread from both executing the completion logic + # at the same time. + with self._completion_lock: + # If the operation isn't complete or if the result has already been + # set, do not call set_result/set_exception again. + if not self._operation.done or self._future.done(): + return + + if self._operation.HasField("response"): + response = protobuf_helpers.from_any_pb( + self._result_type, self._operation.response + ) + self.set_result(response) + elif self._operation.HasField("error"): + exception = exceptions.GoogleAPICallError( + self._operation.error.message, + errors=(self._operation.error,), + response=self._operation, + ) + self.set_exception(exception) + else: + exception = exceptions.GoogleAPICallError( + "Unexpected state: Long-running operation had neither " + "response nor error set." + ) + self.set_exception(exception) + + async def _refresh_and_update(self, retry=async_future.DEFAULT_RETRY): + """Refresh the operation and update the result if needed. + + Args: + retry (google.api_core.retry.Retry): (Optional) How to retry the RPC. + """ + # If the currently cached operation is done, no need to make another + # RPC as it will not change once done. + if not self._operation.done: + self._operation = await self._refresh(retry=retry) + self._set_result_from_operation() + + async def done(self, retry=async_future.DEFAULT_RETRY): + """Checks to see if the operation is complete. + + Args: + retry (google.api_core.retry.Retry): (Optional) How to retry the RPC. + + Returns: + bool: True if the operation is complete, False otherwise. + """ + await self._refresh_and_update(retry) + return self._operation.done + + async def cancel(self): + """Attempt to cancel the operation. + + Returns: + bool: True if the cancel RPC was made, False if the operation is + already complete. + """ + result = await self.done() + if result: + return False + else: + await self._cancel() + return True + + async def cancelled(self): + """True if the operation was cancelled.""" + await self._refresh_and_update() + return ( + self._operation.HasField("error") + and self._operation.error.code == code_pb2.CANCELLED + ) + + +def from_gapic(operation, operations_client, result_type, grpc_metadata=None, **kwargs): + """Create an operation future from a gapic client. + + This interacts with the long-running operations `service`_ (specific + to a given API) via a gapic client. + + .. _service: https://github.com/googleapis/googleapis/blob/\ + 050400df0fdb16f63b63e9dee53819044bffc857/\ + google/longrunning/operations.proto#L38 + + Args: + operation (google.longrunning.operations_pb2.Operation): The operation. + operations_client (google.api_core.operations_v1.OperationsClient): + The operations client. + result_type (:func:`type`): The protobuf result type. + grpc_metadata (Optional[List[Tuple[str, str]]]): Additional metadata to pass + to the rpc. + kwargs: Keyword args passed into the :class:`Operation` constructor. + + Returns: + ~.api_core.operation.Operation: The operation future to track the given + operation. + """ + refresh = functools.partial( + operations_client.get_operation, + operation.name, + metadata=grpc_metadata, + ) + cancel = functools.partial( + operations_client.cancel_operation, + operation.name, + metadata=grpc_metadata, + ) + return AsyncOperation(operation, refresh, cancel, result_type, **kwargs) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__init__.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__init__.py new file mode 100644 index 00000000..4db32a4c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__init__.py @@ -0,0 +1,40 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Package for interacting with the google.longrunning.operations meta-API.""" + +from google.api_core.operations_v1.abstract_operations_client import AbstractOperationsClient +from google.api_core.operations_v1.operations_async_client import OperationsAsyncClient +from google.api_core.operations_v1.operations_client import OperationsClient +from google.api_core.operations_v1.transports.rest import OperationsRestTransport + +__all__ = [ + "AbstractOperationsClient", + "OperationsAsyncClient", + "OperationsClient", + "OperationsRestTransport" +] + +try: + from google.api_core.operations_v1.transports.rest_asyncio import ( + AsyncOperationsRestTransport, + ) + from google.api_core.operations_v1.operations_rest_client_async import AsyncOperationsRestClient + + __all__ += ["AsyncOperationsRestClient", "AsyncOperationsRestTransport"] +except ImportError: + # This import requires the `async_rest` extra. + # Don't raise an exception if `AsyncOperationsRestTransport` cannot be imported + # as other transports are still available. + pass diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..866dd229ebde64dcbb361fe00e6cadc2500d1471 GIT binary patch literal 998 zcma)4+iue^7`D^2Nlyb!nmCAy-1efWc7cW_KvV;XN(d$nny?~SS>k109XqnUPMvrT z9)LSuskdD53Wy7Ar)w(&1zY)J|L5=fE&BZqFst)Rp9=2M@H$N>U5 z%smE64|&j@8>~_K$aiO-HOm%ixpR{RWr#uu3Xr$HK-9k8Gu{E~lwH(y9wFZFDom(MC73{Sn5LQ;l(4%@^V0QskG6JcXvTx^INP)AM@J?$GlB^Ka~$ Jd&~EJ{sR8)I=uh@ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..033973be799dd1b5e52f24a1688107212e56be5d GIT binary patch literal 12699 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cdc1ab3f7f0b41eb04f935aa854f0d9a30312e6 GIT binary patch literal 13045 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 GS^Xy=M-~wP literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3551d523c6374d11780d5815e60e95b49ec44af0 GIT binary patch literal 12814 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 E2NVh01^@s6 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b009a395f0a4eef8bafe4883a5f980a14e321ad GIT binary patch literal 955 zcmah{-EPw`6i(c%?fSQMpj{v#^$zudPTWq2QPv11RpkN=kQK?8_%!pD*pcm4Y`h0o zeF5Hr2Y?sIEmt5R?SdPSptwY8Q&fp##mV>i_&X=|C!5WhW25$NkAJH=&gTUvM#F-K z_R-8v%)t(G8Db^oMJRIE)(o*StFS8DW;Ir44Lh2%3U@7T*_EAH=|5k)Gmo`rCGK(; zyKL{7)4g%kk7&xnPAJ8gM-xR2m!dP4s$r^_w4J@EU3;mOD+{>x+EANYf;emd$u@1G3&kA{91Wi`$qNu{yM zxFw_@E1XprjOipcUl!*RefqeF???RASI6O>Ocmi@_R$4{wU#;R=Ui+qz#&)%?qLA&q zTgqDNG~Ue{4J89j1Wf?9b0(#VCOOshaN{wUF3+y!{Ahd(!u#TSla{x&=*Fg zfh{Cn(Ad@_{gXh3D(Fo?OoJhR9cXUgZc4)o8i5XS2OU^jl29r*kW2fJ>AfP#{b!RF z*6pR2S@nJ**(8PsuI)!Zv6I(A9&*bFx!!NIh1}xsexNyOE*S3@DsO&!*WNXnSLc5K D7+*R1 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5fb42daf2f2daedceccc335b9f3b42845b6b8a50 GIT binary patch literal 11193 zcmeHN+i%?1c^`7_qtV6keb-J-)uh&J<#D|&P}E6^sKq%Q>w^uNe|!Ph($$Wxj$$!62-?>mRLnUTC+Ajw0Kv4VP9n5v+#o*FV?U9MxY)U7H+BlG+5ZB^g;pu5Z4X1o_e?jc?eOo7xM%UGygM4Y`18cWot75O zS+2vq(D3D>0e-0+m_x@hj_%^TIW!Nr2n;hg@vN2}UA({k-s+RhU1M!?V|{Da*w}h+ zJG!_%lAIB{_&Ds{Iq13c$ruF)$0Yj%xk>P8@Apn;;Mq*XZlT?Rrzdxu0L2yTWS5zJJ%*hq`!ZkZg~CJAgZT#M znF2d@!b4`V$Ll-0Z1vFw3%EFPEY5nqU?HqeYW-07o<9nh@{@L>!SH$ikbBJZ*;Bqjs zpof4xkZ#S^Tz_P@8G<1ar()wAC}6>%KXPs6 zka7mV9l54%Hx+Eq?aJvhc?CYR`4M+%;V=nk^3a6rOla5(oFF73vBdd@cm~jF@wOzg z^{OOhffG?3D5gMCROos}4KN%Jc1KT$1v=0@LBJAK)LJZHi~N*uEaOX06!8si;1Cu* zF7&li?NlFDZSAypTC(+*6rqanl#=iJ1Zq4Y}p?9B!}3F|kgM z9fS>V#Ro$e3m6P6E<)4s=%F!T5p#K_dcq$_O58hgfGA{c$}W;+q*lR}Wo&+m;JLyw zTii{o<~&hm1i%@5z0EdySgd4p3+tqn!1-<7Ge>R+3-H-33al!)JN~V4eqyVP^8&U! z2}a}h+iNncE3*io?6px4V#&$y7*eNYB!_|3kRAKpEieo8WW3koR!9mmS+|=mtcyTT z0UAC<5q~KBBPiP*=bPlYe78l0g0Y01+_Q&1d>F$q1YQ}Q#2`#!k_m%<#DxH@GxZot zj3so^i3twLqLe7w?7{Z-gUxjVXk|RvSvMZ;ZtfWCTlXJrZ*1*OtvqK4?8p?3x$lA! z5CzGPj{tEdZz&Jsu1RZNGTmeIBv@k0>O>|%#9hMv0PLjWTPtkI1CojK`6&ifxX8u} zelT)Pk&%!wW(gkb6A}Dj0V1k$*t7iMOh!n_N`8!d2|fpJjnxZJ_rln09R=mI(&Uq0 z+>z;yc&p96>mSpql-HiGei@^uRy?Fw2=pNH>ZMvf!@S;Yk#9|?J5Gt$)*tU~ytlEo zy1NchrOuw}cxqNy@=_>9d`U7bp#+8-yBEpCP@(l4^PQpxJ;a`ImSD*d2cvLgx{T~0 z^({h+DN+d139T3i6CLjCY@S730%T&l&NM+tm~<+k>C44OlIg)6_!4CmU}lOzz}pIL zd>Jd_DvU)-@pc;4lH#YGdnyLE4Gd^aJKk=J06-^@OfUrtwSix_6t|IvA~OJ@Q|4q+ zJ|dIPsr676N`;Jyb+EB+m!P}bjcp?lznmy9?C}+nhdkgOsxl;`E9}G{G2cV_=5Ymg zGAhVSutzr$29mS}{7o^1Cj|44y+q2cvoB0>5~sp6*JINO_(Zyp#0yFc_=gr(^=12^ zv^|*K+M(%r++7#K7x&1W&a%oWUJz4NFz=a;i^Y&Ro5=t0bKrZK6gtg(XcP0ukhW02 zmV*)SKdKqXww%x~TIHw|aJP3>-t|h0>V{#tNM;S=RpGOLSi86P1j-Ed`h5-!?%n6X zv(O*zAx3-eL()7nRyX#1OYF6e;Q4!-&i-EDg#7l;P8)HDAP?_d#SxBpBDOh zzbKET>xCDUuzXq?UbOX(wGajG4{LVuwA@F5+SC4B>uFaDFG{DC)AFe<)6~+-(gsT6 z?-pKEPpe2)E9QS->Ia-s6u6d4=_>gSg#{G<<~ikDru#LSQ>gS@1u+0gT%{2>qJWW< zQ|VLnf|MvVHk1!CW_c zMDe&fic3{uAo&o4=TJ;CA5Tl-N+!z*=CP{A#=$d22tvcS36rmI(Gto^-0^|L$1cGa z^d{wmlQ^5E%+vfHn@fX#>R;Lf<$LLyN{r7nU5fYT`1nB>8%q&Qh0-s5%P=FNptqqL}1zR=4AIP|aid8zjN*7>kAwhEwZof?To;5_G1L!O5I zGwz8={(6p!)`THi#Kt=~ScE?Gp@Me?Un+Vf3jH%q5)?W`v+bq+qIQag+ej1hz?GVz zQwfZ#E2kw~5jvIngjA(|1sGKifi}Y>y9kV`_3J-u*m$Zxlf$U$Y5lYYl&YLo?Xtuu z9T?RJoBdgNr-9!qFH0{Pr_^+)c zB=K&S&{F>(FlAm2;D0(^F6ag>a~eZpAVLCGcv7gC>;&=y#SXsrY*U|sfj zQs?S+DKQG}yps!i;FIl+&zJDFGR9R(Mb=9;rCA9-NiV6}UAlvq`uD`ecjBpD}r{^4uRBUdu_mE`lBZeQF!bVs@GY>&~-*KG~$rVPXRFd>eF5U4g zcZ3d~ly&OSG#;sfMeTC5DpuH`s#sDQv9w7al5ONg2!GrQM#$30CM5A>xiNeV(X;Tf z0G8-rMP`{mjo0#!GmhU<0K0|ae4L{cg=56dES>JeZvVPKNoBtc`7;+T77rLFLWE>g zK(ACG8VFO&!-xrA>qA17)b^VuZwlNvlCNin`t0jjZ)R>OZ40jYB7u zPbh|vZI5&M|1^*%X>C4=qff22klF-|X)FvLAsmRaqPh&ls`m`s2=Ex?_*44I+T_6m z*PdWK41LfYigAHY{>Qms-TO?WoN- zxCU)XP{Ra)0qqXdXt}9dx(wY>MOp0DL~em?y^6{e#GfDnie)-bzTTQsImhL3LC0A~ z7EuMG5r2e3G*7;iB^!bGW4cAThWG{@zDWnlBch5@VsvesxQzc&m93dv*72t_E)C%m zL0++aiyo1@%d{iQJ=(bOZ}TM>s#B>cwYk#>4 zP%@!diL;9|_{5ef+pUySq;5q>g;;9wiONVeY6uu#lZd25lv(Bz65wu}1Tgo0yN&IPMi)f^O!7Z^G0nSh;lG0{))4d{22JU6D{X5sVa@0<@X zlkA;~Fyby|K$GJJDw>_p6sQ+W+Qm-ynWY<|>p=-3{(pJDV>k29f!upWHcTxO?4rnG z0qxNkFtyrX|siJtB@pQ2O|^PO(EKazk3A0elNX&l7SH=^+Wfi;Jw9Oq3HN81hnVhM^U(lG33!TBuh=p#{d1bROat z9kTf{iMFxt<%>6#Wc)ZbGqBw<-oiFnvKLHP56ccmLE8f4r^F|Jr*6yLjQK2Wr+f>l z=yqkqSX}+qVou)QKD7`>L*1aA zExEnWX(}jG?*v5E_;tUiEL+Z^h%tg*KT)MdJ(a&~8Ae5a`+sXs}nqF)QsN%df-_)C0 dQ(MrQrDjpr7qmIqZPvfgp}yKj`WKg~{|BJ%#_0e6 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3aa9ae78ffbb3babdff2d2625b1b08099f0fd85 GIT binary patch literal 2292 zcmbtV&yUjnqz6Zd3@dvUXuAKN6Rup*8$?R`VShC|d&-VMi_q`X{?*{~0@XKoYTbGbO z@a1@O;pJ24`YsHdaGH@hjp*EooOvs1&E3eQxb9@_xfgkM-pV?2Kk_O0f^e6&_X%$c zf3FpFx%Ze1JAcASWaw7@ojA+l^-NU$JtI_Xq^kVK;#n#3L{#l3Ws!*?tp>8dkEzTx zE7m`RmCN^2Z5|%3ejRTJ^;xV%f(IXOz2-opgf%1PvK8nw8?Tfb873UE)fXWrDg zO1KBJ4)5SQ_k}OIA`k(7xk{$~D>9|L%Y*$vv?O|bN%YYUzBs(c`}^)5jRwu?vRxhU z<$X6=c|}|jT>#iC)m!Jd9slkSvKAHyA)HDTrk05`-w4g7lI6x`IGJPsmmRS%nS=^i z(ngPhAcXd0Gu2^|#ahFzG|zUz=PE9A80TS{rzVXvYj)e3+@5Smxsi!cCi4wd<~dw8 zIyxOW9-Z{`km%Dh25nVdv& zj5@>+CNei^UV?Xrj#}py+}9VLbu^SYI%91Usgxy%W7O)Y7K_lVfoFJ1smnME|91rJ zjj=H*T`vvtjx24*sm-Itt6EK?5NMp2nMomy4h2(F8gp?SjI*5vEV8T(7$qXdM;-1E zM5Tm@(_C;HasX0lKq9!6>Y*E9CgoOHjO=Nz$!l8q5dWCRCa%0%38SjhXtwef=c^^i z$^;7xHVVBB-GknOuCKsg$R3%|UApV+wsu`kf40R2vdMWcbQPwz>fol~jTTCeXEOmAGQKPHmXXEyVIlIT zP_cwzYxl-7QRC6J$hXJ$)Ag|i;om6YWD9jVuJh|=T%-)dA#NV&hi%`wX>(nViXF8A z_uYW55wqv}H2CMmwUdIiwQaP3Qh5-MQsoJfwP-j;60!Q}uVDCz?2;Mz78u3njH(an zCyWkj!RX=)dK(CZCp%@YyPQ0Rnr>-U_H-{RiLQr>@LIKTm;MN*8UyLP^c|n}=tb(&l{YW0p2vvYae@Y@qgFST zhWFv6rr|F6&i?@vG^3vbq%VP#XRd`t9}FG!4%k(}QG8$t9jshD|FoN^C|lpwz(o5n zI4=V_pzeQ1&6*EaQH*&!7mQT_V{^&N4Cg(@o9h=JtzXx| zn=tzWKNgz_A2*?^J1}sAlgOA5k4&gXCpE7&F+G#uI*sZR%d_;n7BwceXA|QagPXj5 zZ1B3Uk7{0%TMvz1<4@3J^vuG(?MIQn6^Wv=uJ+?#BNNik5?R;}#cnR*Kos>yc^Zix zDY{9Dn_&_wmTp~zl{0rkmED`I-uFjB-tv_QQ2SzQS0Cypm;`;Bl@ zfQ_O)wubba!7Z3Icmuz=Eo{*gEz!cAbH>nqVGIdx^44+JJ0aTqgy^6g>`>n3on!Ne zc-?AsMXz@G%CYIKzA#L~I|;t87H5~u){bl2{oko!tUD?C;S3Y$gc^=89y!^zO!CpT zGZ;kRGn+#(7&sE4QkimFEeG18?NB*E(X|Zcs;K*JJ*gtyUXT25GsWbh=G%AjYW`M1jSryOl7hca-nY;3>ZV}83O|+ zBHK>5lO>fyV&+bmDSdP>nBNHphM|af<<7 zg;g@aEgBVP3wx?xo`BR0u+(59(Cg4G=r!o-EDV`(WQ@rnIi!cRLz9zVblHKFqMJQa zVvfrW4qY5jU5^%Zl|y|fY@i8npRr!OFqMdg|0WKmHW|}t!I*4+7yYyIz(kg7i( z3&@cE9ieuzB<ceqHv{kO4Ww z) zo&~r~V1kUo1;@L=4zh!S-4Us|{9i0gg`T@sh}spiU!S4yWL=sOx4!(Y`^Njgr`E{>HN#IB7hWnOAeHj?1 zA-^!YUE85?hg_(1tmEZKr8cqZ2cP}-rM)%GxY(Zv#)=kWlZ59H&fARbLg}k^8jSHI zfLueAB{JSSy{!B}Reih<-(J^GoMzOAfl+s^%8t!g+%wI4Fd*FAvU&Q5_-mZ)u!}svqoQ=CjF~xbzjl;Y4UMH%Wn2s zg_Z56Q1?rJ^zAbPy|s5A+S27-wK1&_i_h=g6&Hyj72AUUH4>SqFDs4361Bh?`+AA< R4a|In_Mcs8H`?S>?H_gQ$tnN< literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87a2e71e77df2bdaaa57c6d885f77bf8e83a8ab1 GIT binary patch literal 2605 zcmbtVPj4GV6yJYdJC2i3QwRYLgL;Xj;7|@6qN-{r2r5-+)f6FZU5&>(V|$(T?sjH2 zQBwEReg;k);K+yJ3+$B>U!elTd$YSv(iRXf(mwC3-@NyGzxQX-wY9bdtNmR!8o=8x zxVgAo*xZ6geFlPC+>Wie9oTaxaOQ5{&b`31@w*c@=6>MY)>jsHx%a~2-g75t^2VXn z^M8f2R?jQk{p7T0-DYvjMzJVbhvG>tl28@0>HV@)07jPRso4+IFVN7=x})M6Ap|c5%VgXJ7drmQV<5uJOzRL zs2%(YbiD57B#L7)XGd^?bBH%hs)&cf%aL554r3r;n&>FW0o@X)0atThI(!`{NfQKP zbi-6iLl6fdAu}acb!zqj8CuCz&SLVvGhjS2tz|UIHS&%u9ka-^M1`uXral20=XtCn z=#6E;l$0_qc0f5kt%60Cl?J6yB=}Q?K%l6k&@4&>Hz|ieas`nHZc23tgT!filxKZo z?I#Nwu?6{OoM~40WhL~BW>vFAtF|v!pbJ9}1TGt%20YLY)@^vyhaeXA!lKr~0ckH> zkj}yb>2e#o%3;?)`A(uVgDf(QHCC32tO^NxV_#0xosCsNi)6yj+sD`UzfNcN!1~l#7yBr6a zMBr76FU^-t`l{yI)Xc*pTV^ULk}i7 zr90qVAq4-bZ~J!JJ|mY$-2M7$>DNaJFJW_0_|VI_OhRn1df_|X(Wc=rPHio$nZ2-| zJJ4YELC-0g6JQ1gj@*F1dyc#UKk_PyB^$B}+hUc{N|n+t;e$fs9sBIsU*lWqhuHn~ z!grhs1{9j+_74Wu4CcVh{Sl!#2WRc4pFF$q^!i8g*-gl=50~ehX~-lsw;ZL&83s;i z3EeKCzk(W+q{!gX`WhS=$lbrCv{XLmZOHfGK+&djp7J~fFGYvaCotqopHOg=ry*EJ zex(m0c=s|B531@5-g))A>2`@6NF0fU3oRnw#w~IxH&J|m;yf7hhGfYm2*hRvXv^|! zXVZV#ahyLq*ZJM^oZr^{_RH>8*EO04y;kAt(+oPVG;ZK7T?gIQXO#)Y9DbAkqIIKW Q Type[OperationsTransport]: + """Returns an appropriate transport class. + + Args: + label: The name of the desired transport. If none is + provided, then the first transport in the registry is used. + + Returns: + The transport class to use. + """ + # If a specific transport is requested, return that one. + if ( + label == "rest_asyncio" and not HAS_ASYNC_REST_DEPENDENCIES + ): # pragma: NO COVER + raise ASYNC_REST_EXCEPTION + + if label: + return cls._transport_registry[label] + + # No transport is requested; return the default (that is, the first one + # in the dictionary). + return next(iter(cls._transport_registry.values())) + + +class AbstractOperationsBaseClient(metaclass=AbstractOperationsBaseClientMeta): + """Manages long-running operations with an API service. + + When an API method normally takes long time to complete, it can be + designed to return [Operation][google.api_core.operations_v1.Operation] to the + client, and the client can use this interface to receive the real + response asynchronously by polling the operation resource, or pass + the operation resource to another API (such as Google Cloud Pub/Sub + API) to receive the response. Any API service that returns + long-running operations should implement the ``Operations`` + interface so developers can have a consistent client experience. + """ + + @staticmethod + def _get_default_mtls_endpoint(api_endpoint): + """Converts api endpoint to mTLS endpoint. + + Convert "*.sandbox.googleapis.com" and "*.googleapis.com" to + "*.mtls.sandbox.googleapis.com" and "*.mtls.googleapis.com" respectively. + Args: + api_endpoint (Optional[str]): the api endpoint to convert. + Returns: + str: converted mTLS api endpoint. + """ + if not api_endpoint: + return api_endpoint + + mtls_endpoint_re = re.compile( + r"(?P[^.]+)(?P\.mtls)?(?P\.sandbox)?(?P\.googleapis\.com)?" + ) + + m = mtls_endpoint_re.match(api_endpoint) + name, mtls, sandbox, googledomain = m.groups() + if mtls or not googledomain: + return api_endpoint + + if sandbox: + return api_endpoint.replace( + "sandbox.googleapis.com", "mtls.sandbox.googleapis.com" + ) + + return api_endpoint.replace(".googleapis.com", ".mtls.googleapis.com") + + DEFAULT_ENDPOINT = "longrunning.googleapis.com" + DEFAULT_MTLS_ENDPOINT = _get_default_mtls_endpoint.__func__( # type: ignore + DEFAULT_ENDPOINT + ) + + @classmethod + def from_service_account_info(cls, info: dict, *args, **kwargs): + """ + This class method should be overridden by the subclasses. + + Args: + info (dict): The service account private key info. + args: Additional arguments to pass to the constructor. + kwargs: Additional arguments to pass to the constructor. + + Raises: + NotImplementedError: If the method is called on the base class. + """ + raise NotImplementedError("`from_service_account_info` is not implemented.") + + @classmethod + def from_service_account_file(cls, filename: str, *args, **kwargs): + """ + This class method should be overridden by the subclasses. + + Args: + filename (str): The path to the service account private key json + file. + args: Additional arguments to pass to the constructor. + kwargs: Additional arguments to pass to the constructor. + + Raises: + NotImplementedError: If the method is called on the base class. + """ + raise NotImplementedError("`from_service_account_file` is not implemented.") + + from_service_account_json = from_service_account_file + + @property + def transport(self) -> OperationsTransport: + """Returns the transport used by the client instance. + + Returns: + OperationsTransport: The transport used by the client + instance. + """ + return self._transport + + @staticmethod + def common_billing_account_path( + billing_account: str, + ) -> str: + """Returns a fully-qualified billing_account string.""" + return "billingAccounts/{billing_account}".format( + billing_account=billing_account, + ) + + @staticmethod + def parse_common_billing_account_path(path: str) -> Dict[str, str]: + """Parse a billing_account path into its component segments.""" + m = re.match(r"^billingAccounts/(?P.+?)$", path) + return m.groupdict() if m else {} + + @staticmethod + def common_folder_path( + folder: str, + ) -> str: + """Returns a fully-qualified folder string.""" + return "folders/{folder}".format( + folder=folder, + ) + + @staticmethod + def parse_common_folder_path(path: str) -> Dict[str, str]: + """Parse a folder path into its component segments.""" + m = re.match(r"^folders/(?P.+?)$", path) + return m.groupdict() if m else {} + + @staticmethod + def common_organization_path( + organization: str, + ) -> str: + """Returns a fully-qualified organization string.""" + return "organizations/{organization}".format( + organization=organization, + ) + + @staticmethod + def parse_common_organization_path(path: str) -> Dict[str, str]: + """Parse a organization path into its component segments.""" + m = re.match(r"^organizations/(?P.+?)$", path) + return m.groupdict() if m else {} + + @staticmethod + def common_project_path( + project: str, + ) -> str: + """Returns a fully-qualified project string.""" + return "projects/{project}".format( + project=project, + ) + + @staticmethod + def parse_common_project_path(path: str) -> Dict[str, str]: + """Parse a project path into its component segments.""" + m = re.match(r"^projects/(?P.+?)$", path) + return m.groupdict() if m else {} + + @staticmethod + def common_location_path( + project: str, + location: str, + ) -> str: + """Returns a fully-qualified location string.""" + return "projects/{project}/locations/{location}".format( + project=project, + location=location, + ) + + @staticmethod + def parse_common_location_path(path: str) -> Dict[str, str]: + """Parse a location path into its component segments.""" + m = re.match(r"^projects/(?P.+?)/locations/(?P.+?)$", path) + return m.groupdict() if m else {} + + def __init__( + self, + *, + credentials: Optional[ga_credentials.Credentials] = None, + transport: Union[str, OperationsTransport, None] = None, + client_options: Optional[client_options_lib.ClientOptions] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + ) -> None: + """Instantiates the operations client. + + Args: + credentials (Optional[google.auth.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + transport (Union[str, OperationsTransport]): The + transport to use. If set to None, a transport is chosen + automatically. + client_options (google.api_core.client_options.ClientOptions): Custom options for the + client. It won't take effect if a ``transport`` instance is provided. + (1) The ``api_endpoint`` property can be used to override the + default endpoint provided by the client. GOOGLE_API_USE_MTLS_ENDPOINT + environment variable can also be used to override the endpoint: + "always" (always use the default mTLS endpoint), "never" (always + use the default regular endpoint) and "auto" (auto switch to the + default mTLS endpoint if client certificate is present, this is + the default value). However, the ``api_endpoint`` property takes + precedence if provided. + (2) If GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable + is "true", then the ``client_cert_source`` property can be used + to provide client certificate for mutual TLS transport. If + not provided, the default SSL client certificate will be used if + present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not + set, no client certificate will be used. + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + + Raises: + google.auth.exceptions.MutualTLSChannelError: If mutual TLS transport + creation failed for any reason. + """ + if isinstance(client_options, dict): + client_options = client_options_lib.from_dict(client_options) + if client_options is None: + client_options = client_options_lib.ClientOptions() + + # Create SSL credentials for mutual TLS if needed. + use_client_cert = os.getenv( + "GOOGLE_API_USE_CLIENT_CERTIFICATE", "false" + ).lower() + if use_client_cert not in ("true", "false"): + raise ValueError( + "Environment variable `GOOGLE_API_USE_CLIENT_CERTIFICATE` must be either `true` or `false`" + ) + client_cert_source_func = None + is_mtls = False + if use_client_cert == "true": + if client_options.client_cert_source: + is_mtls = True + client_cert_source_func = client_options.client_cert_source + else: + is_mtls = mtls.has_default_client_cert_source() + if is_mtls: + client_cert_source_func = mtls.default_client_cert_source() + else: + client_cert_source_func = None + + # Figure out which api endpoint to use. + if client_options.api_endpoint is not None: + api_endpoint = client_options.api_endpoint + else: + use_mtls_env = os.getenv("GOOGLE_API_USE_MTLS_ENDPOINT", "auto") + if use_mtls_env == "never": + api_endpoint = self.DEFAULT_ENDPOINT + elif use_mtls_env == "always": + api_endpoint = self.DEFAULT_MTLS_ENDPOINT + elif use_mtls_env == "auto": + if is_mtls: + api_endpoint = self.DEFAULT_MTLS_ENDPOINT + else: + api_endpoint = self.DEFAULT_ENDPOINT + else: + raise MutualTLSChannelError( + "Unsupported GOOGLE_API_USE_MTLS_ENDPOINT value. Accepted " + "values: never, auto, always" + ) + + # Save or instantiate the transport. + # Ordinarily, we provide the transport, but allowing a custom transport + # instance provides an extensibility point for unusual situations. + if isinstance(transport, OperationsTransport): + # transport is a OperationsTransport instance. + if credentials or client_options.credentials_file: + raise ValueError( + "When providing a transport instance, " + "provide its credentials directly." + ) + if client_options.scopes: + raise ValueError( + "When providing a transport instance, provide its scopes " + "directly." + ) + self._transport = transport + else: + Transport = type(self).get_transport_class(transport) + self._transport = Transport( + credentials=credentials, + credentials_file=client_options.credentials_file, + host=api_endpoint, + scopes=client_options.scopes, + client_cert_source_for_mtls=client_cert_source_func, + quota_project_id=client_options.quota_project_id, + client_info=client_info, + always_use_jwt_access=True, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/abstract_operations_client.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/abstract_operations_client.py new file mode 100644 index 00000000..fc445362 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/abstract_operations_client.py @@ -0,0 +1,387 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from typing import Optional, Sequence, Tuple, Union + +from google.api_core import client_options as client_options_lib # type: ignore +from google.api_core import gapic_v1 # type: ignore +from google.api_core import retry as retries # type: ignore +from google.api_core.operations_v1 import pagers +from google.api_core.operations_v1.transports.base import ( + DEFAULT_CLIENT_INFO, + OperationsTransport, +) +from google.api_core.operations_v1.abstract_operations_base_client import ( + AbstractOperationsBaseClient, +) +from google.auth import credentials as ga_credentials # type: ignore +from google.longrunning import operations_pb2 +from google.oauth2 import service_account # type: ignore +import grpc + +OptionalRetry = Union[retries.Retry, object] + + +class AbstractOperationsClient(AbstractOperationsBaseClient): + """Manages long-running operations with an API service. + + When an API method normally takes long time to complete, it can be + designed to return [Operation][google.api_core.operations_v1.Operation] to the + client, and the client can use this interface to receive the real + response asynchronously by polling the operation resource, or pass + the operation resource to another API (such as Google Cloud Pub/Sub + API) to receive the response. Any API service that returns + long-running operations should implement the ``Operations`` + interface so developers can have a consistent client experience. + """ + + def __init__( + self, + *, + credentials: Optional[ga_credentials.Credentials] = None, + transport: Union[str, OperationsTransport, None] = None, + client_options: Optional[client_options_lib.ClientOptions] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + ) -> None: + """Instantiates the operations client. + + Args: + credentials (Optional[google.auth.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + transport (Union[str, OperationsTransport]): The + transport to use. If set to None, a transport is chosen + automatically. + client_options (google.api_core.client_options.ClientOptions): Custom options for the + client. It won't take effect if a ``transport`` instance is provided. + (1) The ``api_endpoint`` property can be used to override the + default endpoint provided by the client. GOOGLE_API_USE_MTLS_ENDPOINT + environment variable can also be used to override the endpoint: + "always" (always use the default mTLS endpoint), "never" (always + use the default regular endpoint) and "auto" (auto switch to the + default mTLS endpoint if client certificate is present, this is + the default value). However, the ``api_endpoint`` property takes + precedence if provided. + (2) If GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable + is "true", then the ``client_cert_source`` property can be used + to provide client certificate for mutual TLS transport. If + not provided, the default SSL client certificate will be used if + present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not + set, no client certificate will be used. + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + + Raises: + google.auth.exceptions.MutualTLSChannelError: If mutual TLS transport + creation failed for any reason. + """ + super().__init__( + credentials=credentials, + transport=transport, + client_options=client_options, + client_info=client_info, + ) + + @classmethod + def from_service_account_info(cls, info: dict, *args, **kwargs): + """Creates an instance of this client using the provided credentials + info. + + Args: + info (dict): The service account private key info. + args: Additional arguments to pass to the constructor. + kwargs: Additional arguments to pass to the constructor. + + Returns: + AbstractOperationsClient: The constructed client. + """ + credentials = service_account.Credentials.from_service_account_info(info) + kwargs["credentials"] = credentials + return cls(*args, **kwargs) + + @classmethod + def from_service_account_file(cls, filename: str, *args, **kwargs): + """Creates an instance of this client using the provided credentials + file. + + Args: + filename (str): The path to the service account private key json + file. + args: Additional arguments to pass to the constructor. + kwargs: Additional arguments to pass to the constructor. + + Returns: + AbstractOperationsClient: The constructed client. + """ + credentials = service_account.Credentials.from_service_account_file(filename) + kwargs["credentials"] = credentials + return cls(*args, **kwargs) + + from_service_account_json = from_service_account_file + + def list_operations( + self, + name: str, + filter_: Optional[str] = None, + *, + page_size: Optional[int] = None, + page_token: Optional[str] = None, + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> pagers.ListOperationsPager: + r"""Lists operations that match the specified filter in the request. + If the server doesn't support this method, it returns + ``UNIMPLEMENTED``. + + NOTE: the ``name`` binding allows API services to override the + binding to use different resource name schemes, such as + ``users/*/operations``. To override the binding, API services + can add a binding such as ``"/v1/{name=users/*}/operations"`` to + their service configuration. For backwards compatibility, the + default name includes the operations collection id, however + overriding users must ensure the name binding is the parent + resource, without the operations collection id. + + Args: + name (str): + The name of the operation's parent + resource. + filter_ (str): + The standard list filter. + This corresponds to the ``filter`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + google.api_core.operations_v1.pagers.ListOperationsPager: + The response message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + + Iterating over this object will yield results and + resolve additional pages automatically. + + """ + # Create a protobuf request object. + request = operations_pb2.ListOperationsRequest(name=name, filter=filter_) + if page_size is not None: + request.page_size = page_size + if page_token is not None: + request.page_token = page_token + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.list_operations] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + response = rpc( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + # This method is paged; wrap the response in a pager, which provides + # an `__iter__` convenience method. + response = pagers.ListOperationsPager( + method=rpc, + request=request, + response=response, + metadata=metadata, + ) + + # Done; return the response. + return response + + def get_operation( + self, + name: str, + *, + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.Operation: + r"""Gets the latest state of a long-running operation. + Clients can use this method to poll the operation result + at intervals as recommended by the API service. + + Args: + name (str): + The name of the operation resource. + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + google.longrunning.operations_pb2.Operation: + This resource represents a long- + running operation that is the result of a + network API call. + + """ + + request = operations_pb2.GetOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.get_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + response = rpc( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + # Done; return the response. + return response + + def delete_operation( + self, + name: str, + *, + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> None: + r"""Deletes a long-running operation. This method indicates that the + client is no longer interested in the operation result. It does + not cancel the operation. If the server doesn't support this + method, it returns ``google.rpc.Code.UNIMPLEMENTED``. + + Args: + name (str): + The name of the operation resource to + be deleted. + + This corresponds to the ``name`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + # Create the request object. + request = operations_pb2.DeleteOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.delete_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + rpc( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + def cancel_operation( + self, + name: Optional[str] = None, + *, + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> None: + r"""Starts asynchronous cancellation on a long-running operation. + The server makes a best effort to cancel the operation, but + success is not guaranteed. If the server doesn't support this + method, it returns ``google.rpc.Code.UNIMPLEMENTED``. Clients + can use + [Operations.GetOperation][google.api_core.operations_v1.Operations.GetOperation] + or other methods to check whether the cancellation succeeded or + whether the operation completed despite cancellation. On + successful cancellation, the operation is not deleted; instead, + it becomes an operation with an + [Operation.error][google.api_core.operations_v1.Operation.error] value with + a [google.rpc.Status.code][google.rpc.Status.code] of 1, + corresponding to ``Code.CANCELLED``. + + Args: + name (str): + The name of the operation resource to + be cancelled. + + This corresponds to the ``name`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + # Create the request object. + request = operations_pb2.CancelOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.cancel_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + rpc( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_async_client.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_async_client.py new file mode 100644 index 00000000..a60c7177 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_async_client.py @@ -0,0 +1,364 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""An async client for the google.longrunning.operations meta-API. + +.. _Google API Style Guide: + https://cloud.google.com/apis/design/design_pattern + s#long_running_operations +.. _google/longrunning/operations.proto: + https://github.com/googleapis/googleapis/blob/master/google/longrunning + /operations.proto +""" + +import functools + +from google.api_core import exceptions as core_exceptions +from google.api_core import gapic_v1, page_iterator_async +from google.api_core import retry_async as retries +from google.api_core import timeout as timeouts +from google.longrunning import operations_pb2 +from grpc import Compression + + +class OperationsAsyncClient: + """Async client for interacting with long-running operations. + + Args: + channel (aio.Channel): The gRPC AsyncIO channel associated with the + service that implements the ``google.longrunning.operations`` + interface. + client_config (dict): + A dictionary of call options for each method. If not specified + the default configuration is used. + """ + + def __init__(self, channel, client_config=None): + # Create the gRPC client stub with gRPC AsyncIO channel. + self.operations_stub = operations_pb2.OperationsStub(channel) + + default_retry = retries.AsyncRetry( + initial=0.1, # seconds + maximum=60.0, # seconds + multiplier=1.3, + predicate=retries.if_exception_type( + core_exceptions.DeadlineExceeded, + core_exceptions.ServiceUnavailable, + ), + timeout=600.0, # seconds + ) + default_timeout = timeouts.TimeToDeadlineTimeout(timeout=600.0) + + default_compression = Compression.NoCompression + + self._get_operation = gapic_v1.method_async.wrap_method( + self.operations_stub.GetOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._list_operations = gapic_v1.method_async.wrap_method( + self.operations_stub.ListOperations, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._cancel_operation = gapic_v1.method_async.wrap_method( + self.operations_stub.CancelOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._delete_operation = gapic_v1.method_async.wrap_method( + self.operations_stub.DeleteOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + async def get_operation( + self, + name, + retry=gapic_v1.method_async.DEFAULT, + timeout=gapic_v1.method_async.DEFAULT, + compression=gapic_v1.method_async.DEFAULT, + metadata=None, + ): + """Gets the latest state of a long-running operation. + + Clients can use this method to poll the operation result at intervals + as recommended by the API service. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> response = await api.get_operation(name) + + Args: + name (str): The name of the operation resource. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): + Additional gRPC metadata. + + Returns: + google.longrunning.operations_pb2.Operation: The state of the + operation. + + Raises: + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + request = operations_pb2.GetOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + return await self._get_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + async def list_operations( + self, + name, + filter_, + retry=gapic_v1.method_async.DEFAULT, + timeout=gapic_v1.method_async.DEFAULT, + compression=gapic_v1.method_async.DEFAULT, + metadata=None, + ): + """ + Lists operations that match the specified filter in the request. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> + >>> # Iterate over all results + >>> for operation in await api.list_operations(name): + >>> # process operation + >>> pass + >>> + >>> # Or iterate over results one page at a time + >>> iter = await api.list_operations(name) + >>> for page in iter.pages: + >>> for operation in page: + >>> # process operation + >>> pass + + Args: + name (str): The name of the operation collection. + filter_ (str): The standard list filter. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + + Returns: + google.api_core.page_iterator.Iterator: An iterator that yields + :class:`google.longrunning.operations_pb2.Operation` instances. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + # Create the request object. + request = operations_pb2.ListOperationsRequest(name=name, filter=filter_) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + # Create the method used to fetch pages + method = functools.partial( + self._list_operations, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + iterator = page_iterator_async.AsyncGRPCIterator( + client=None, + method=method, + request=request, + items_field="operations", + request_token_field="page_token", + response_token_field="next_page_token", + ) + + return iterator + + async def cancel_operation( + self, + name, + retry=gapic_v1.method_async.DEFAULT, + timeout=gapic_v1.method_async.DEFAULT, + compression=gapic_v1.method_async.DEFAULT, + metadata=None, + ): + """Starts asynchronous cancellation on a long-running operation. + + The server makes a best effort to cancel the operation, but success is + not guaranteed. Clients can use :meth:`get_operation` or service- + specific methods to check whether the cancellation succeeded or whether + the operation completed despite cancellation. On successful + cancellation, the operation is not deleted; instead, it becomes an + operation with an ``Operation.error`` value with a + ``google.rpc.Status.code`` of ``1``, corresponding to + ``Code.CANCELLED``. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> api.cancel_operation(name) + + Args: + name (str): The name of the operation resource to be cancelled. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + """ + # Create the request object. + request = operations_pb2.CancelOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + await self._cancel_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + async def delete_operation( + self, + name, + retry=gapic_v1.method_async.DEFAULT, + timeout=gapic_v1.method_async.DEFAULT, + compression=gapic_v1.method_async.DEFAULT, + metadata=None, + ): + """Deletes a long-running operation. + + This method indicates that the client is no longer interested in the + operation result. It does not cancel the operation. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> api.delete_operation(name) + + Args: + name (str): The name of the operation resource to be deleted. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + # Create the request object. + request = operations_pb2.DeleteOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + await self._delete_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client.py new file mode 100644 index 00000000..d1d3fd55 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client.py @@ -0,0 +1,378 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""A client for the google.longrunning.operations meta-API. + +This is a client that deals with long-running operations that follow the +pattern outlined by the `Google API Style Guide`_. + +When an API method normally takes long time to complete, it can be designed to +return ``Operation`` to the client, and the client can use this interface to +receive the real response asynchronously by polling the operation resource to +receive the response. + +It is not a separate service, but rather an interface implemented by a larger +service. The protocol-level definition is available at +`google/longrunning/operations.proto`_. Typically, this will be constructed +automatically by another client class to deal with operations. + +.. _Google API Style Guide: + https://cloud.google.com/apis/design/design_pattern + s#long_running_operations +.. _google/longrunning/operations.proto: + https://github.com/googleapis/googleapis/blob/master/google/longrunning + /operations.proto +""" + +import functools + +from google.api_core import exceptions as core_exceptions +from google.api_core import gapic_v1 +from google.api_core import page_iterator +from google.api_core import retry as retries +from google.api_core import timeout as timeouts +from google.longrunning import operations_pb2 +from grpc import Compression + + +class OperationsClient(object): + """Client for interacting with long-running operations within a service. + + Args: + channel (grpc.Channel): The gRPC channel associated with the service + that implements the ``google.longrunning.operations`` interface. + client_config (dict): + A dictionary of call options for each method. If not specified + the default configuration is used. + """ + + def __init__(self, channel, client_config=None): + # Create the gRPC client stub. + self.operations_stub = operations_pb2.OperationsStub(channel) + + default_retry = retries.Retry( + initial=0.1, # seconds + maximum=60.0, # seconds + multiplier=1.3, + predicate=retries.if_exception_type( + core_exceptions.DeadlineExceeded, + core_exceptions.ServiceUnavailable, + ), + timeout=600.0, # seconds + ) + default_timeout = timeouts.TimeToDeadlineTimeout(timeout=600.0) + + default_compression = Compression.NoCompression + + self._get_operation = gapic_v1.method.wrap_method( + self.operations_stub.GetOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._list_operations = gapic_v1.method.wrap_method( + self.operations_stub.ListOperations, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._cancel_operation = gapic_v1.method.wrap_method( + self.operations_stub.CancelOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + self._delete_operation = gapic_v1.method.wrap_method( + self.operations_stub.DeleteOperation, + default_retry=default_retry, + default_timeout=default_timeout, + default_compression=default_compression, + ) + + # Service calls + def get_operation( + self, + name, + retry=gapic_v1.method.DEFAULT, + timeout=gapic_v1.method.DEFAULT, + compression=gapic_v1.method.DEFAULT, + metadata=None, + ): + """Gets the latest state of a long-running operation. + + Clients can use this method to poll the operation result at intervals + as recommended by the API service. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> response = api.get_operation(name) + + Args: + name (str): The name of the operation resource. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): + Additional gRPC metadata. + + Returns: + google.longrunning.operations_pb2.Operation: The state of the + operation. + + Raises: + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + request = operations_pb2.GetOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + return self._get_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + def list_operations( + self, + name, + filter_, + retry=gapic_v1.method.DEFAULT, + timeout=gapic_v1.method.DEFAULT, + compression=gapic_v1.method.DEFAULT, + metadata=None, + ): + """ + Lists operations that match the specified filter in the request. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> + >>> # Iterate over all results + >>> for operation in api.list_operations(name): + >>> # process operation + >>> pass + >>> + >>> # Or iterate over results one page at a time + >>> iter = api.list_operations(name) + >>> for page in iter.pages: + >>> for operation in page: + >>> # process operation + >>> pass + + Args: + name (str): The name of the operation collection. + filter_ (str): The standard list filter. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + + Returns: + google.api_core.page_iterator.Iterator: An iterator that yields + :class:`google.longrunning.operations_pb2.Operation` instances. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + # Create the request object. + request = operations_pb2.ListOperationsRequest(name=name, filter=filter_) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + # Create the method used to fetch pages + method = functools.partial( + self._list_operations, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + iterator = page_iterator.GRPCIterator( + client=None, + method=method, + request=request, + items_field="operations", + request_token_field="page_token", + response_token_field="next_page_token", + ) + + return iterator + + def cancel_operation( + self, + name, + retry=gapic_v1.method.DEFAULT, + timeout=gapic_v1.method.DEFAULT, + compression=gapic_v1.method.DEFAULT, + metadata=None, + ): + """Starts asynchronous cancellation on a long-running operation. + + The server makes a best effort to cancel the operation, but success is + not guaranteed. Clients can use :meth:`get_operation` or service- + specific methods to check whether the cancellation succeeded or whether + the operation completed despite cancellation. On successful + cancellation, the operation is not deleted; instead, it becomes an + operation with an ``Operation.error`` value with a + ``google.rpc.Status.code`` of ``1``, corresponding to + ``Code.CANCELLED``. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> api.cancel_operation(name) + + Args: + name (str): The name of the operation resource to be cancelled. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + # Create the request object. + request = operations_pb2.CancelOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + self._cancel_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) + + def delete_operation( + self, + name, + retry=gapic_v1.method.DEFAULT, + timeout=gapic_v1.method.DEFAULT, + compression=gapic_v1.method.DEFAULT, + metadata=None, + ): + """Deletes a long-running operation. + + This method indicates that the client is no longer interested in the + operation result. It does not cancel the operation. + + Example: + >>> from google.api_core import operations_v1 + >>> api = operations_v1.OperationsClient() + >>> name = '' + >>> api.delete_operation(name) + + Args: + name (str): The name of the operation resource to be deleted. + retry (google.api_core.retry.Retry): The retry strategy to use + when invoking the RPC. If unspecified, the default retry from + the client configuration will be used. If ``None``, then this + method will not retry the RPC at all. + timeout (float): The amount of time in seconds to wait for the RPC + to complete. Note that if ``retry`` is used, this timeout + applies to each individual attempt and the overall time it + takes for this method to complete may be longer. If + unspecified, the the default timeout in the client + configuration is used. If ``None``, then the RPC method will + not time out. + compression (grpc.Compression): An element of grpc.compression + e.g. grpc.compression.Gzip. + metadata (Optional[List[Tuple[str, str]]]): Additional gRPC + metadata. + + Raises: + google.api_core.exceptions.MethodNotImplemented: If the server + does not support this method. Services are not required to + implement this method. + google.api_core.exceptions.GoogleAPICallError: If an error occurred + while invoking the RPC, the appropriate ``GoogleAPICallError`` + subclass will be raised. + """ + # Create the request object. + request = operations_pb2.DeleteOperationRequest(name=name) + + # Add routing header + metadata = metadata or [] + metadata.append(gapic_v1.routing_header.to_grpc_metadata({"name": name})) + + self._delete_operation( + request, + retry=retry, + timeout=timeout, + compression=compression, + metadata=metadata, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client_config.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client_config.py new file mode 100644 index 00000000..3ad3548c --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_client_config.py @@ -0,0 +1,60 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""gapic configuration for the google.longrunning.operations client.""" + +# DEPRECATED: retry and timeout classes are instantiated directly +config = { + "interfaces": { + "google.longrunning.Operations": { + "retry_codes": { + "idempotent": ["DEADLINE_EXCEEDED", "UNAVAILABLE"], + "non_idempotent": [], + }, + "retry_params": { + "default": { + "initial_retry_delay_millis": 100, + "retry_delay_multiplier": 1.3, + "max_retry_delay_millis": 60000, + "initial_rpc_timeout_millis": 20000, + "rpc_timeout_multiplier": 1.0, + "max_rpc_timeout_millis": 600000, + "total_timeout_millis": 600000, + } + }, + "methods": { + "GetOperation": { + "timeout_millis": 60000, + "retry_codes_name": "idempotent", + "retry_params_name": "default", + }, + "ListOperations": { + "timeout_millis": 60000, + "retry_codes_name": "idempotent", + "retry_params_name": "default", + }, + "CancelOperation": { + "timeout_millis": 60000, + "retry_codes_name": "idempotent", + "retry_params_name": "default", + }, + "DeleteOperation": { + "timeout_millis": 60000, + "retry_codes_name": "idempotent", + "retry_params_name": "default", + }, + }, + } + } +} diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_rest_client_async.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_rest_client_async.py new file mode 100644 index 00000000..7ab0cd36 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/operations_rest_client_async.py @@ -0,0 +1,345 @@ +# -*- coding: utf-8 -*- +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from typing import Optional, Sequence, Tuple, Union + +from google.api_core import client_options as client_options_lib # type: ignore +from google.api_core import gapic_v1 # type: ignore +from google.api_core.operations_v1 import pagers_async as pagers +from google.api_core.operations_v1.transports.base import ( + DEFAULT_CLIENT_INFO, + OperationsTransport, +) +from google.api_core.operations_v1.abstract_operations_base_client import ( + AbstractOperationsBaseClient, +) +from google.longrunning import operations_pb2 + +try: + from google.auth.aio import credentials as ga_credentials # type: ignore +except ImportError as e: # pragma: NO COVER + raise ImportError( + "The `async_rest` extra of `google-api-core` is required to use long-running operations. Install it by running " + "`pip install google-api-core[async_rest]`." + ) from e + + +class AsyncOperationsRestClient(AbstractOperationsBaseClient): + """Manages long-running operations with a REST API service for the asynchronous client. + + When an API method normally takes long time to complete, it can be + designed to return [Operation][google.api_core.operations_v1.Operation] to the + client, and the client can use this interface to receive the real + response asynchronously by polling the operation resource, or pass + the operation resource to another API (such as Google Cloud Pub/Sub + API) to receive the response. Any API service that returns + long-running operations should implement the ``Operations`` + interface so developers can have a consistent client experience. + """ + + def __init__( + self, + *, + credentials: Optional[ga_credentials.Credentials] = None, + transport: Union[str, OperationsTransport, None] = None, + client_options: Optional[client_options_lib.ClientOptions] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + ) -> None: + """Instantiates the operations client. + + Args: + credentials (Optional[google.auth.aio.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + transport (Union[str, OperationsTransport]): The + transport to use. If set to None, this defaults to 'rest_asyncio'. + client_options (google.api_core.client_options.ClientOptions): Custom options for the + client. It won't take effect if a ``transport`` instance is provided. + (1) The ``api_endpoint`` property can be used to override the + default endpoint provided by the client. GOOGLE_API_USE_MTLS_ENDPOINT + environment variable can also be used to override the endpoint: + "always" (always use the default mTLS endpoint), "never" (always + use the default regular endpoint) and "auto" (auto switch to the + default mTLS endpoint if client certificate is present, this is + the default value). However, the ``api_endpoint`` property takes + precedence if provided. + (2) If GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable + is "true", then the ``client_cert_source`` property can be used + to provide client certificate for mutual TLS transport. If + not provided, the default SSL client certificate will be used if + present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not + set, no client certificate will be used. + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + + Raises: + google.auth.exceptions.MutualTLSChannelError: If mutual TLS transport + creation failed for any reason. + """ + super().__init__( + credentials=credentials, # type: ignore + # NOTE: If a transport is not provided, we force the client to use the async + # REST transport. + transport=transport or "rest_asyncio", + client_options=client_options, + client_info=client_info, + ) + + async def get_operation( + self, + name: str, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.Operation: + r"""Gets the latest state of a long-running operation. + Clients can use this method to poll the operation result + at intervals as recommended by the API service. + + Args: + name (str): + The name of the operation resource. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + google.longrunning.operations_pb2.Operation: + This resource represents a long- + running operation that is the result of a + network API call. + + """ + + request = operations_pb2.GetOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.get_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + response = await rpc( + request, + retry=retry, + timeout=timeout, + metadata=metadata, + ) + + # Done; return the response. + return response + + async def list_operations( + self, + name: str, + filter_: Optional[str] = None, + *, + page_size: Optional[int] = None, + page_token: Optional[str] = None, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> pagers.ListOperationsAsyncPager: + r"""Lists operations that match the specified filter in the request. + If the server doesn't support this method, it returns + ``UNIMPLEMENTED``. + + NOTE: the ``name`` binding allows API services to override the + binding to use different resource name schemes, such as + ``users/*/operations``. To override the binding, API services + can add a binding such as ``"/v1/{name=users/*}/operations"`` to + their service configuration. For backwards compatibility, the + default name includes the operations collection id, however + overriding users must ensure the name binding is the parent + resource, without the operations collection id. + + Args: + name (str): + The name of the operation's parent + resource. + filter_ (str): + The standard list filter. + This corresponds to the ``filter`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + google.api_core.operations_v1.pagers.ListOperationsPager: + The response message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + + Iterating over this object will yield results and + resolve additional pages automatically. + + """ + # Create a protobuf request object. + request = operations_pb2.ListOperationsRequest(name=name, filter=filter_) + if page_size is not None: + request.page_size = page_size + if page_token is not None: + request.page_token = page_token + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.list_operations] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + response = await rpc( + request, + retry=retry, + timeout=timeout, + metadata=metadata, + ) + + # This method is paged; wrap the response in a pager, which provides + # an `__iter__` convenience method. + response = pagers.ListOperationsAsyncPager( + method=rpc, + request=request, + response=response, + metadata=metadata, + ) + + # Done; return the response. + return response + + async def delete_operation( + self, + name: str, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> None: + r"""Deletes a long-running operation. This method indicates that the + client is no longer interested in the operation result. It does + not cancel the operation. If the server doesn't support this + method, it returns ``google.rpc.Code.UNIMPLEMENTED``. + + Args: + name (str): + The name of the operation resource to + be deleted. + + This corresponds to the ``name`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + # Create the request object. + request = operations_pb2.DeleteOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.delete_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + await rpc( + request, + retry=retry, + timeout=timeout, + metadata=metadata, + ) + + async def cancel_operation( + self, + name: Optional[str] = None, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> None: + r"""Starts asynchronous cancellation on a long-running operation. + The server makes a best effort to cancel the operation, but + success is not guaranteed. If the server doesn't support this + method, it returns ``google.rpc.Code.UNIMPLEMENTED``. Clients + can use + [Operations.GetOperation][google.api_core.operations_v1.Operations.GetOperation] + or other methods to check whether the cancellation succeeded or + whether the operation completed despite cancellation. On + successful cancellation, the operation is not deleted; instead, + it becomes an operation with an + [Operation.error][google.api_core.operations_v1.Operation.error] value with + a [google.rpc.Status.code][google.rpc.Status.code] of 1, + corresponding to ``Code.CANCELLED``. + + Args: + name (str): + The name of the operation resource to + be cancelled. + + This corresponds to the ``name`` field + on the ``request`` instance; if ``request`` is provided, this + should not be set. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + # Create the request object. + request = operations_pb2.CancelOperationRequest(name=name) + + # Wrap the RPC method; this adds retry and timeout information, + # and friendly error handling. + rpc = self._transport._wrapped_methods[self._transport.cancel_operation] + + # Certain fields should be provided within the metadata header; + # add these here. + metadata = tuple(metadata or ()) + ( + gapic_v1.routing_header.to_grpc_metadata((("name", request.name),)), + ) + + # Send the request. + await rpc( + request, + retry=retry, + timeout=timeout, + metadata=metadata, + ) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers.py new file mode 100644 index 00000000..132f1c66 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from typing import ( + Callable, + Iterator, + Sequence, + Tuple, +) + +from google.longrunning import operations_pb2 +from google.api_core.operations_v1.pagers_base import ListOperationsPagerBase + + +class ListOperationsPager(ListOperationsPagerBase): + """A pager for iterating through ``list_operations`` requests. + + This class thinly wraps an initial + :class:`google.longrunning.operations_pb2.ListOperationsResponse` object, and + provides an ``__iter__`` method to iterate through its + ``operations`` field. + + If there are more pages, the ``__iter__`` method will make additional + ``ListOperations`` requests and continue to iterate + through the ``operations`` field on the + corresponding responses. + + All the usual :class:`google.longrunning.operations_pb2.ListOperationsResponse` + attributes are available on the pager. If multiple requests are made, only + the most recent response is retained, and thus used for attribute lookup. + """ + + def __init__( + self, + method: Callable[..., operations_pb2.ListOperationsResponse], + request: operations_pb2.ListOperationsRequest, + response: operations_pb2.ListOperationsResponse, + *, + metadata: Sequence[Tuple[str, str]] = () + ): + super().__init__( + method=method, request=request, response=response, metadata=metadata + ) + + @property + def pages(self) -> Iterator[operations_pb2.ListOperationsResponse]: + yield self._response + while self._response.next_page_token: + self._request.page_token = self._response.next_page_token + self._response = self._method(self._request, metadata=self._metadata) + yield self._response + + def __iter__(self) -> Iterator[operations_pb2.Operation]: + for page in self.pages: + yield from page.operations diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_async.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_async.py new file mode 100644 index 00000000..e2909dd5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_async.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from typing import ( + Callable, + AsyncIterator, + Sequence, + Tuple, +) + +from google.longrunning import operations_pb2 +from google.api_core.operations_v1.pagers_base import ListOperationsPagerBase + + +class ListOperationsAsyncPager(ListOperationsPagerBase): + """A pager for iterating through ``list_operations`` requests. + + This class thinly wraps an initial + :class:`google.longrunning.operations_pb2.ListOperationsResponse` object, and + provides an ``__iter__`` method to iterate through its + ``operations`` field. + + If there are more pages, the ``__iter__`` method will make additional + ``ListOperations`` requests and continue to iterate + through the ``operations`` field on the + corresponding responses. + + All the usual :class:`google.longrunning.operations_pb2.ListOperationsResponse` + attributes are available on the pager. If multiple requests are made, only + the most recent response is retained, and thus used for attribute lookup. + """ + + def __init__( + self, + method: Callable[..., operations_pb2.ListOperationsResponse], + request: operations_pb2.ListOperationsRequest, + response: operations_pb2.ListOperationsResponse, + *, + metadata: Sequence[Tuple[str, str]] = () + ): + super().__init__( + method=method, request=request, response=response, metadata=metadata + ) + + @property + async def pages(self) -> AsyncIterator[operations_pb2.ListOperationsResponse]: + yield self._response + while self._response.next_page_token: + self._request.page_token = self._response.next_page_token + self._response = await self._method(self._request, metadata=self._metadata) + yield self._response + + def __aiter__(self) -> AsyncIterator[operations_pb2.Operation]: + async def async_generator(): + async for page in self.pages: + for operation in page.operations: + yield operation + + return async_generator() diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_base.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_base.py new file mode 100644 index 00000000..24caf74f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/pagers_base.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from typing import ( + Any, + Callable, + Sequence, + Tuple, +) + +from google.longrunning import operations_pb2 + + +class ListOperationsPagerBase: + """A pager for iterating through ``list_operations`` requests. + + This class thinly wraps an initial + :class:`google.longrunning.operations_pb2.ListOperationsResponse` object, and + provides an ``__iter__`` method to iterate through its + ``operations`` field. + + If there are more pages, the ``__iter__`` method will make additional + ``ListOperations`` requests and continue to iterate + through the ``operations`` field on the + corresponding responses. + + All the usual :class:`google.longrunning.operations_pb2.ListOperationsResponse` + attributes are available on the pager. If multiple requests are made, only + the most recent response is retained, and thus used for attribute lookup. + """ + + def __init__( + self, + method: Callable[..., operations_pb2.ListOperationsResponse], + request: operations_pb2.ListOperationsRequest, + response: operations_pb2.ListOperationsResponse, + *, + metadata: Sequence[Tuple[str, str]] = () + ): + """Instantiate the pager. + + Args: + method (Callable): The method that was originally called, and + which instantiated this pager. + request (google.longrunning.operations_pb2.ListOperationsRequest): + The initial request object. + response (google.longrunning.operations_pb2.ListOperationsResponse): + The initial response object. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + self._method = method + self._request = request + self._response = response + self._metadata = metadata + + def __getattr__(self, name: str) -> Any: + return getattr(self._response, name) + + def __repr__(self) -> str: + return "{0}<{1!r}>".format(self.__class__.__name__, self._response) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__init__.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__init__.py new file mode 100644 index 00000000..8c24ce6e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__init__.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +from collections import OrderedDict +from typing import cast, Dict, Tuple + +from .base import OperationsTransport +from .rest import OperationsRestTransport + +# Compile a registry of transports. +_transport_registry: Dict[str, OperationsTransport] = OrderedDict() +_transport_registry["rest"] = cast(OperationsTransport, OperationsRestTransport) + +__all__: Tuple[str, ...] = ("OperationsTransport", "OperationsRestTransport") + +try: + from .rest_asyncio import AsyncOperationsRestTransport + + __all__ += ("AsyncOperationsRestTransport",) + _transport_registry["rest_asyncio"] = cast( + OperationsTransport, AsyncOperationsRestTransport + ) +except ImportError: + # This import requires the `async_rest` extra. + # Don't raise an exception if `AsyncOperationsRestTransport` cannot be imported + # as other transports are still available. + pass diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1fad2e5dff464edac39161f3df50af6d872df7a GIT binary patch literal 718 zcmZ`$Pm9zr6i?E0Ix}sj>JEzF!Rs8H!IL0^xVRn`#0A}DuoObKd6w>`O-ZsN<8{A- z-@%)Hom@TbR}evy86CZtkjMM;d%wItGEK+Go$;qT&DRj2Z{GO#44v`ZJ^jUrGsF?c z0<}2D*y}`)HpqjP=Clp-(D?#R#h{JyXsd@}*pBiMMu4wTJ_ZUgMDNLc1PLE35d;vy z=$gQoM@z(qc?u!KeDoVJUZRgv#~6!Ao8_5fNqPJPIh4=Kwt2}Ctq@P&B8uSFW`&Wz z@3x)~Xg0ZVRihcU@rmM~fFCuLnFW?sr8bs&%Z8^{y?`6M10J08pi0xoPM@l>)4f#2 z<=^}3egoR9Gi@)Mlfh_O-##vIp!L%r#${}CoWmz5sU z$k(&mHm;-)P;E<6#F5#7+4N0UtH9G!FWlykrRSxF-JgD^+mF@AM*>%s&0GatC(W)o z##HP=vJ;PFzoQS zkd-RtYv|U+tLD7Wje$pfSzVSj=%SXg7O*J$hE-C*Lhgsm){hta3F-x7P1hL4=KaPF nm#ySi0-pKR=!Z^BvMEkTg6{?sJSD_wLqagclb=a2pybCdN=3s% literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a0eb3558496ff416386137d1c2342122a13e2023 GIT binary patch literal 8109 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e60058e877cd83943df34c9dae19a6ed18828835 GIT binary patch literal 13895 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/base.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/base.py new file mode 100644 index 00000000..46c2f5d1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/base.py @@ -0,0 +1,300 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +import abc +import re +from typing import Awaitable, Callable, Optional, Sequence, Union +import warnings + +import google.auth # type: ignore +from google.auth import credentials as ga_credentials # type: ignore +from google.longrunning import operations_pb2 +from google.oauth2 import service_account # type: ignore +import google.protobuf +from google.protobuf import empty_pb2, json_format # type: ignore +from grpc import Compression + +import google.api_core # type: ignore +from google.api_core import exceptions as core_exceptions # type: ignore +from google.api_core import gapic_v1 # type: ignore +from google.api_core import general_helpers +from google.api_core import retry as retries # type: ignore +from google.api_core import version + +PROTOBUF_VERSION = google.protobuf.__version__ + +DEFAULT_CLIENT_INFO = gapic_v1.client_info.ClientInfo( + gapic_version=version.__version__, +) + + +class OperationsTransport(abc.ABC): + """Abstract transport class for Operations.""" + + AUTH_SCOPES = () + + DEFAULT_HOST: str = "longrunning.googleapis.com" + + def __init__( + self, + *, + host: str = DEFAULT_HOST, + # TODO(https://github.com/googleapis/python-api-core/issues/709): update type hint for credentials to include `google.auth.aio.Credentials`. + credentials: Optional[ga_credentials.Credentials] = None, + credentials_file: Optional[str] = None, + scopes: Optional[Sequence[str]] = None, + quota_project_id: Optional[str] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + always_use_jwt_access: Optional[bool] = False, + url_scheme="https", + **kwargs, + ) -> None: + """Instantiate the transport. + + Args: + host (Optional[str]): + The hostname to connect to. + credentials (Optional[google.auth.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + credentials_file (Optional[str]): Deprecated. A file with credentials that can + be loaded with :func:`google.auth.load_credentials_from_file`. + This argument is mutually exclusive with credentials. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + scopes (Optional[Sequence[str]]): A list of scopes. + quota_project_id (Optional[str]): An optional project to use for billing + and quota. + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + always_use_jwt_access (Optional[bool]): Whether self signed JWT should + be used for service account credentials. + url_scheme: the protocol scheme for the API endpoint. Normally + "https", but for testing or local servers, + "http" can be specified. + """ + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + maybe_url_match = re.match("^(?Phttp(?:s)?://)?(?P.*)$", host) + if maybe_url_match is None: + raise ValueError( + f"Unexpected hostname structure: {host}" + ) # pragma: NO COVER + + url_match_items = maybe_url_match.groupdict() + + host = f"{url_scheme}://{host}" if not url_match_items["scheme"] else host + + # Save the hostname. Default to port 443 (HTTPS) if none is specified. + if ":" not in host: + host += ":443" # pragma: NO COVER + self._host = host + + scopes_kwargs = {"scopes": scopes, "default_scopes": self.AUTH_SCOPES} + + # Save the scopes. + self._scopes = scopes + + # If no credentials are provided, then determine the appropriate + # defaults. + if credentials and credentials_file: + raise core_exceptions.DuplicateCredentialArgs( + "'credentials_file' and 'credentials' are mutually exclusive" + ) + + if credentials_file is not None: + credentials, _ = google.auth.load_credentials_from_file( + credentials_file, **scopes_kwargs, quota_project_id=quota_project_id + ) + + elif credentials is None: + credentials, _ = google.auth.default( + **scopes_kwargs, quota_project_id=quota_project_id + ) + + # If the credentials are service account credentials, then always try to use self signed JWT. + if ( + always_use_jwt_access + and isinstance(credentials, service_account.Credentials) + and hasattr(service_account.Credentials, "with_always_use_jwt_access") + ): + credentials = credentials.with_always_use_jwt_access(True) + + # Save the credentials. + self._credentials = credentials + + def _prep_wrapped_messages(self, client_info): + # Precompute the wrapped methods. + self._wrapped_methods = { + self.list_operations: gapic_v1.method.wrap_method( + self.list_operations, + default_retry=retries.Retry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + default_compression=Compression.NoCompression, + client_info=client_info, + ), + self.get_operation: gapic_v1.method.wrap_method( + self.get_operation, + default_retry=retries.Retry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + default_compression=Compression.NoCompression, + client_info=client_info, + ), + self.delete_operation: gapic_v1.method.wrap_method( + self.delete_operation, + default_retry=retries.Retry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + default_compression=Compression.NoCompression, + client_info=client_info, + ), + self.cancel_operation: gapic_v1.method.wrap_method( + self.cancel_operation, + default_retry=retries.Retry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + default_compression=Compression.NoCompression, + client_info=client_info, + ), + } + + def close(self): + """Closes resources associated with the transport. + + .. warning:: + Only call this method if the transport is NOT shared + with other clients - this may cause errors in other clients! + """ + raise NotImplementedError() + + def _convert_protobuf_message_to_dict( + self, message: google.protobuf.message.Message + ): + r"""Converts protobuf message to a dictionary. + + When the dictionary is encoded to JSON, it conforms to proto3 JSON spec. + + Args: + message(google.protobuf.message.Message): The protocol buffers message + instance to serialize. + + Returns: + A dict representation of the protocol buffer message. + """ + # TODO(https://github.com/googleapis/python-api-core/issues/643): For backwards compatibility + # with protobuf 3.x 4.x, Remove once support for protobuf 3.x and 4.x is dropped. + if PROTOBUF_VERSION[0:2] in ["3.", "4."]: + result = json_format.MessageToDict( + message, + preserving_proto_field_name=True, + including_default_value_fields=True, # type: ignore # backward compatibility + ) + else: + result = json_format.MessageToDict( + message, + preserving_proto_field_name=True, + always_print_fields_with_no_presence=True, + ) + + return result + + @property + def list_operations( + self, + ) -> Callable[ + [operations_pb2.ListOperationsRequest], + Union[ + operations_pb2.ListOperationsResponse, + Awaitable[operations_pb2.ListOperationsResponse], + ], + ]: + raise NotImplementedError() + + @property + def get_operation( + self, + ) -> Callable[ + [operations_pb2.GetOperationRequest], + Union[operations_pb2.Operation, Awaitable[operations_pb2.Operation]], + ]: + raise NotImplementedError() + + @property + def delete_operation( + self, + ) -> Callable[ + [operations_pb2.DeleteOperationRequest], + Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]], + ]: + raise NotImplementedError() + + @property + def cancel_operation( + self, + ) -> Callable[ + [operations_pb2.CancelOperationRequest], + Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]], + ]: + raise NotImplementedError() + + +__all__ = ("OperationsTransport",) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest.py new file mode 100644 index 00000000..62f34d69 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest.py @@ -0,0 +1,492 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +from typing import Callable, Dict, Optional, Sequence, Tuple, Union +import warnings + +from google.auth import credentials as ga_credentials # type: ignore +from google.auth.transport.requests import AuthorizedSession # type: ignore +from google.longrunning import operations_pb2 # type: ignore +import google.protobuf +from google.protobuf import empty_pb2 # type: ignore +from google.protobuf import json_format # type: ignore +import grpc +from requests import __version__ as requests_version + +from google.api_core import exceptions as core_exceptions # type: ignore +from google.api_core import gapic_v1 # type: ignore +from google.api_core import general_helpers +from google.api_core import path_template # type: ignore +from google.api_core import rest_helpers # type: ignore +from google.api_core import retry as retries # type: ignore + +from .base import DEFAULT_CLIENT_INFO as BASE_DEFAULT_CLIENT_INFO +from .base import OperationsTransport + +PROTOBUF_VERSION = google.protobuf.__version__ + +OptionalRetry = Union[retries.Retry, object] + +DEFAULT_CLIENT_INFO = gapic_v1.client_info.ClientInfo( + gapic_version=BASE_DEFAULT_CLIENT_INFO.gapic_version, + grpc_version=None, + rest_version=f"requests@{requests_version}", +) + + +class OperationsRestTransport(OperationsTransport): + """REST backend transport for Operations. + + Manages long-running operations with an API service. + + When an API method normally takes long time to complete, it can be + designed to return [Operation][google.api_core.operations_v1.Operation] to the + client, and the client can use this interface to receive the real + response asynchronously by polling the operation resource, or pass + the operation resource to another API (such as Google Cloud Pub/Sub + API) to receive the response. Any API service that returns + long-running operations should implement the ``Operations`` + interface so developers can have a consistent client experience. + + This class defines the same methods as the primary client, so the + primary client can load the underlying transport implementation + and call it. + + It sends JSON representations of protocol buffers over HTTP/1.1 + """ + + def __init__( + self, + *, + host: str = "longrunning.googleapis.com", + credentials: Optional[ga_credentials.Credentials] = None, + credentials_file: Optional[str] = None, + scopes: Optional[Sequence[str]] = None, + client_cert_source_for_mtls: Optional[Callable[[], Tuple[bytes, bytes]]] = None, + quota_project_id: Optional[str] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + always_use_jwt_access: Optional[bool] = False, + url_scheme: str = "https", + http_options: Optional[Dict] = None, + path_prefix: str = "v1", + ) -> None: + """Instantiate the transport. + + Args: + host (Optional[str]): + The hostname to connect to. + credentials (Optional[google.auth.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + + credentials_file (Optional[str]): Deprecated. A file with credentials that can + be loaded with :func:`google.auth.load_credentials_from_file`. + This argument is ignored if ``channel`` is provided. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configuration from external sources`_. + + .. _Validate credential configuration from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + scopes (Optional(Sequence[str])): A list of scopes. This argument is + ignored if ``channel`` is provided. + client_cert_source_for_mtls (Callable[[], Tuple[bytes, bytes]]): Client + certificate to configure mutual TLS HTTP channel. It is ignored + if ``channel`` is provided. + quota_project_id (Optional[str]): An optional project to use for billing + and quota. + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + always_use_jwt_access (Optional[bool]): Whether self signed JWT should + be used for service account credentials. + url_scheme: the protocol scheme for the API endpoint. Normally + "https", but for testing or local servers, + "http" can be specified. + http_options: a dictionary of http_options for transcoding, to override + the defaults from operations.proto. Each method has an entry + with the corresponding http rules as value. + path_prefix: path prefix (usually represents API version). Set to + "v1" by default. + + """ + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + # Run the base constructor + # TODO(yon-mg): resolve other ctor params i.e. scopes, quota, etc. + # TODO: When custom host (api_endpoint) is set, `scopes` must *also* be set on the + # credentials object + super().__init__( + host=host, + credentials=credentials, + client_info=client_info, + always_use_jwt_access=always_use_jwt_access, + ) + self._session = AuthorizedSession( + self._credentials, default_host=self.DEFAULT_HOST + ) + if client_cert_source_for_mtls: + self._session.configure_mtls_channel(client_cert_source_for_mtls) + # TODO(https://github.com/googleapis/python-api-core/issues/720): Add wrap logic directly to the property methods for callables. + self._prep_wrapped_messages(client_info) + self._http_options = http_options or {} + self._path_prefix = path_prefix + + def _list_operations( + self, + request: operations_pb2.ListOperationsRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/723): Leverage `retry` + # to allow configuring retryable error codes. + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.ListOperationsResponse: + r"""Call the list operations method over HTTP. + + Args: + request (~.operations_pb2.ListOperationsRequest): + The request object. The request message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + ~.operations_pb2.ListOperationsResponse: + The response message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + + """ + + http_options = [ + { + "method": "get", + "uri": "/{}/{{name=**}}/operations".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.ListOperations" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.ListOperations" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.ListOperationsRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + raise core_exceptions.from_http_response(response) + + # Return the response + api_response = operations_pb2.ListOperationsResponse() + json_format.Parse(response.content, api_response, ignore_unknown_fields=False) + return api_response + + def _get_operation( + self, + request: operations_pb2.GetOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/723): Leverage `retry` + # to allow configuring retryable error codes. + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.Operation: + r"""Call the get operation method over HTTP. + + Args: + request (~.operations_pb2.GetOperationRequest): + The request object. The request message for + [Operations.GetOperation][google.api_core.operations_v1.Operations.GetOperation]. + + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + ~.operations_pb2.Operation: + This resource represents a long- + running operation that is the result of a + network API call. + + """ + + http_options = [ + { + "method": "get", + "uri": "/{}/{{name=**/operations/*}}".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.GetOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.GetOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.GetOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + raise core_exceptions.from_http_response(response) + + # Return the response + api_response = operations_pb2.Operation() + json_format.Parse(response.content, api_response, ignore_unknown_fields=False) + return api_response + + def _delete_operation( + self, + request: operations_pb2.DeleteOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/723): Leverage `retry` + # to allow configuring retryable error codes. + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> empty_pb2.Empty: + r"""Call the delete operation method over HTTP. + + Args: + request (~.operations_pb2.DeleteOperationRequest): + The request object. The request message for + [Operations.DeleteOperation][google.api_core.operations_v1.Operations.DeleteOperation]. + + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + + http_options = [ + { + "method": "delete", + "uri": "/{}/{{name=**/operations/*}}".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.DeleteOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.DeleteOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.DeleteOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + raise core_exceptions.from_http_response(response) + + return empty_pb2.Empty() + + def _cancel_operation( + self, + request: operations_pb2.CancelOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/723): Leverage `retry` + # to allow configuring retryable error codes. + retry: OptionalRetry = gapic_v1.method.DEFAULT, + timeout: Optional[float] = None, + compression: Optional[grpc.Compression] = gapic_v1.method.DEFAULT, + metadata: Sequence[Tuple[str, str]] = (), + ) -> empty_pb2.Empty: + r"""Call the cancel operation method over HTTP. + + Args: + request (~.operations_pb2.CancelOperationRequest): + The request object. The request message for + [Operations.CancelOperation][google.api_core.operations_v1.Operations.CancelOperation]. + + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + + http_options = [ + { + "method": "post", + "uri": "/{}/{{name=**/operations/*}}:cancel".format(self._path_prefix), + "body": "*", + }, + ] + if "google.longrunning.Operations.CancelOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.CancelOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + # Jsonify the request body + body_request = operations_pb2.CancelOperationRequest() + json_format.ParseDict(transcoded_request["body"], body_request) + body = json_format.MessageToDict( + body_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.CancelOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + data=body, + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + raise core_exceptions.from_http_response(response) + + return empty_pb2.Empty() + + @property + def list_operations( + self, + ) -> Callable[ + [operations_pb2.ListOperationsRequest], operations_pb2.ListOperationsResponse + ]: + return self._list_operations + + @property + def get_operation( + self, + ) -> Callable[[operations_pb2.GetOperationRequest], operations_pb2.Operation]: + return self._get_operation + + @property + def delete_operation( + self, + ) -> Callable[[operations_pb2.DeleteOperationRequest], empty_pb2.Empty]: + return self._delete_operation + + @property + def cancel_operation( + self, + ) -> Callable[[operations_pb2.CancelOperationRequest], empty_pb2.Empty]: + return self._cancel_operation + + +__all__ = ("OperationsRestTransport",) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest_asyncio.py b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest_asyncio.py new file mode 100644 index 00000000..6fa9f56a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/operations_v1/transports/rest_asyncio.py @@ -0,0 +1,581 @@ +# -*- coding: utf-8 -*- +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +import json +from typing import Any, Callable, Coroutine, Dict, Optional, Sequence, Tuple +import warnings + +from google.auth import __version__ as auth_version + +try: + from google.auth.aio.transport.sessions import AsyncAuthorizedSession # type: ignore +except ImportError as e: # pragma: NO COVER + raise ImportError( + "The `async_rest` extra of `google-api-core` is required to use long-running operations. Install it by running " + "`pip install google-api-core[async_rest]`." + ) from e + +from google.api_core import exceptions as core_exceptions # type: ignore +from google.api_core import gapic_v1 # type: ignore +from google.api_core import general_helpers +from google.api_core import path_template # type: ignore +from google.api_core import rest_helpers # type: ignore +from google.api_core import retry_async as retries_async # type: ignore +from google.auth.aio import credentials as ga_credentials_async # type: ignore +from google.longrunning import operations_pb2 # type: ignore +from google.protobuf import empty_pb2 # type: ignore +from google.protobuf import json_format # type: ignore + +from .base import DEFAULT_CLIENT_INFO as BASE_DEFAULT_CLIENT_INFO, OperationsTransport + +DEFAULT_CLIENT_INFO = gapic_v1.client_info.ClientInfo( + gapic_version=BASE_DEFAULT_CLIENT_INFO.gapic_version, + grpc_version=None, + rest_version=f"google-auth@{auth_version}", +) + + +class AsyncOperationsRestTransport(OperationsTransport): + """Asynchronous REST backend transport for Operations. + + Manages async long-running operations with an API service. + + When an API method normally takes long time to complete, it can be + designed to return [Operation][google.api_core.operations_v1.Operation] to the + client, and the client can use this interface to receive the real + response asynchronously by polling the operation resource, or pass + the operation resource to another API (such as Google Cloud Pub/Sub + API) to receive the response. Any API service that returns + long-running operations should implement the ``Operations`` + interface so developers can have a consistent client experience. + + This class defines the same methods as the primary client, so the + primary client can load the underlying transport implementation + and call it. + + It sends JSON representations of protocol buffers over HTTP/1.1 + """ + + def __init__( + self, + *, + host: str = "longrunning.googleapis.com", + credentials: Optional[ga_credentials_async.Credentials] = None, + credentials_file: Optional[str] = None, + scopes: Optional[Sequence[str]] = None, + client_cert_source_for_mtls: Optional[Callable[[], Tuple[bytes, bytes]]] = None, + quota_project_id: Optional[str] = None, + client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, + always_use_jwt_access: Optional[bool] = False, + url_scheme: str = "https", + http_options: Optional[Dict] = None, + path_prefix: str = "v1", + # TODO(https://github.com/googleapis/python-api-core/issues/715): Add docstring for `credentials_file` to async REST transport. + # TODO(https://github.com/googleapis/python-api-core/issues/716): Add docstring for `scopes` to async REST transport. + # TODO(https://github.com/googleapis/python-api-core/issues/717): Add docstring for `quota_project_id` to async REST transport. + # TODO(https://github.com/googleapis/python-api-core/issues/718): Add docstring for `client_cert_source` to async REST transport. + ) -> None: + """Instantiate the transport. + + Args: + host (Optional[str]): + The hostname to connect to. + credentials (Optional[google.auth.aio.credentials.Credentials]): The + authorization credentials to attach to requests. These + credentials identify the application to the service; if none + are specified, the client will attempt to ascertain the + credentials from the environment. + credentials_file (Optional[str]): Deprecated. A file with credentials that can + be loaded with :func:`google.auth.load_credentials_from_file`. + This argument is ignored if ``channel`` is provided. This argument will be + removed in the next major version of `google-api-core`. + + .. warning:: + Important: If you accept a credential configuration (credential JSON/File/Stream) + from an external source for authentication to Google Cloud Platform, you must + validate it before providing it to any Google API or client library. Providing an + unvalidated credential configuration to Google APIs or libraries can compromise + the security of your systems and data. For more information, refer to + `Validate credential configurations from external sources`_. + + .. _Validate credential configurations from external sources: + + https://cloud.google.com/docs/authentication/external/externally-sourced-credentials + client_info (google.api_core.gapic_v1.client_info.ClientInfo): + The client info used to send a user-agent string along with + API requests. If ``None``, then default info will be used. + Generally, you only need to set this if you're developing + your own client library. + always_use_jwt_access (Optional[bool]): Whether self signed JWT should + be used for service account credentials. + url_scheme: the protocol scheme for the API endpoint. Normally + "https", but for testing or local servers, + "http" can be specified. + http_options: a dictionary of http_options for transcoding, to override + the defaults from operations.proto. Each method has an entry + with the corresponding http rules as value. + path_prefix: path prefix (usually represents API version). Set to + "v1" by default. + + """ + if credentials_file is not None: + warnings.warn(general_helpers._CREDENTIALS_FILE_WARNING, DeprecationWarning) + + unsupported_params = { + # TODO(https://github.com/googleapis/python-api-core/issues/715): Add support for `credentials_file` to async REST transport. + "google.api_core.client_options.ClientOptions.credentials_file": credentials_file, + # TODO(https://github.com/googleapis/python-api-core/issues/716): Add support for `scopes` to async REST transport. + "google.api_core.client_options.ClientOptions.scopes": scopes, + # TODO(https://github.com/googleapis/python-api-core/issues/717): Add support for `quota_project_id` to async REST transport. + "google.api_core.client_options.ClientOptions.quota_project_id": quota_project_id, + # TODO(https://github.com/googleapis/python-api-core/issues/718): Add support for `client_cert_source` to async REST transport. + "google.api_core.client_options.ClientOptions.client_cert_source": client_cert_source_for_mtls, + # TODO(https://github.com/googleapis/python-api-core/issues/718): Add support for `client_cert_source` to async REST transport. + "google.api_core.client_options.ClientOptions.client_cert_source": client_cert_source_for_mtls, + } + provided_unsupported_params = [ + name for name, value in unsupported_params.items() if value is not None + ] + if provided_unsupported_params: + raise core_exceptions.AsyncRestUnsupportedParameterError( + f"The following provided parameters are not supported for `transport=rest_asyncio`: {', '.join(provided_unsupported_params)}" + ) + + super().__init__( + host=host, + # TODO(https://github.com/googleapis/python-api-core/issues/709): Remove `type: ignore` when the linked issue is resolved. + credentials=credentials, # type: ignore + client_info=client_info, + # TODO(https://github.com/googleapis/python-api-core/issues/725): Set always_use_jwt_access token when supported. + always_use_jwt_access=False, + ) + # TODO(https://github.com/googleapis/python-api-core/issues/708): add support for + # `default_host` in AsyncAuthorizedSession for feature parity with the synchronous + # code. + # TODO(https://github.com/googleapis/python-api-core/issues/709): Remove `type: ignore` when the linked issue is resolved. + self._session = AsyncAuthorizedSession(self._credentials) # type: ignore + # TODO(https://github.com/googleapis/python-api-core/issues/720): Add wrap logic directly to the property methods for callables. + self._prep_wrapped_messages(client_info) + self._http_options = http_options or {} + self._path_prefix = path_prefix + + def _prep_wrapped_messages(self, client_info): + # Precompute the wrapped methods. + self._wrapped_methods = { + self.list_operations: gapic_v1.method_async.wrap_method( + self.list_operations, + default_retry=retries_async.AsyncRetry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries_async.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + client_info=client_info, + kind="rest_asyncio", + ), + self.get_operation: gapic_v1.method_async.wrap_method( + self.get_operation, + default_retry=retries_async.AsyncRetry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries_async.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + client_info=client_info, + kind="rest_asyncio", + ), + self.delete_operation: gapic_v1.method_async.wrap_method( + self.delete_operation, + default_retry=retries_async.AsyncRetry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries_async.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + client_info=client_info, + kind="rest_asyncio", + ), + self.cancel_operation: gapic_v1.method_async.wrap_method( + self.cancel_operation, + default_retry=retries_async.AsyncRetry( + initial=0.5, + maximum=10.0, + multiplier=2.0, + predicate=retries_async.if_exception_type( + core_exceptions.ServiceUnavailable, + ), + deadline=10.0, + ), + default_timeout=10.0, + client_info=client_info, + kind="rest_asyncio", + ), + } + + async def _list_operations( + self, + request: operations_pb2.ListOperationsRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.ListOperationsResponse: + r"""Asynchronously call the list operations method over HTTP. + + Args: + request (~.operations_pb2.ListOperationsRequest): + The request object. The request message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + ~.operations_pb2.ListOperationsResponse: + The response message for + [Operations.ListOperations][google.api_core.operations_v1.Operations.ListOperations]. + + """ + + http_options = [ + { + "method": "get", + "uri": "/{}/{{name=**}}/operations".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.ListOperations" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.ListOperations" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.ListOperationsRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = await getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + content = await response.read() + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + payload = json.loads(content.decode("utf-8")) + request_url = "{host}{uri}".format(host=self._host, uri=uri) + raise core_exceptions.format_http_response_error(response, method, request_url, payload) # type: ignore + + # Return the response + api_response = operations_pb2.ListOperationsResponse() + json_format.Parse(content, api_response, ignore_unknown_fields=False) + return api_response + + async def _get_operation( + self, + request: operations_pb2.GetOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> operations_pb2.Operation: + r"""Asynchronously call the get operation method over HTTP. + + Args: + request (~.operations_pb2.GetOperationRequest): + The request object. The request message for + [Operations.GetOperation][google.api_core.operations_v1.Operations.GetOperation]. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + + Returns: + ~.operations_pb2.Operation: + This resource represents a long- + running operation that is the result of a + network API call. + + """ + + http_options = [ + { + "method": "get", + "uri": "/{}/{{name=**/operations/*}}".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.GetOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.GetOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.GetOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = await getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + content = await response.read() + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + payload = json.loads(content.decode("utf-8")) + request_url = "{host}{uri}".format(host=self._host, uri=uri) + raise core_exceptions.format_http_response_error(response, method, request_url, payload) # type: ignore + + # Return the response + api_response = operations_pb2.Operation() + json_format.Parse(content, api_response, ignore_unknown_fields=False) + return api_response + + async def _delete_operation( + self, + request: operations_pb2.DeleteOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + ) -> empty_pb2.Empty: + r"""Asynchronously call the delete operation method over HTTP. + + Args: + request (~.operations_pb2.DeleteOperationRequest): + The request object. The request message for + [Operations.DeleteOperation][google.api_core.operations_v1.Operations.DeleteOperation]. + + retry (google.api_core.retry.Retry): Designation of what errors, if any, + should be retried. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + + http_options = [ + { + "method": "delete", + "uri": "/{}/{{name=**/operations/*}}".format(self._path_prefix), + }, + ] + if "google.longrunning.Operations.DeleteOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.DeleteOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.DeleteOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = await getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + content = await response.read() + payload = json.loads(content.decode("utf-8")) + request_url = "{host}{uri}".format(host=self._host, uri=uri) + raise core_exceptions.format_http_response_error(response, method, request_url, payload) # type: ignore + + return empty_pb2.Empty() + + async def _cancel_operation( + self, + request: operations_pb2.CancelOperationRequest, + *, + # TODO(https://github.com/googleapis/python-api-core/issues/722): Leverage `retry` + # to allow configuring retryable error codes. + retry=gapic_v1.method_async.DEFAULT, + timeout: Optional[float] = None, + metadata: Sequence[Tuple[str, str]] = (), + # TODO(https://github.com/googleapis/python-api-core/issues/722): Add `retry` parameter + # to allow configuring retryable error codes. + ) -> empty_pb2.Empty: + r"""Asynchronously call the cancel operation method over HTTP. + + Args: + request (~.operations_pb2.CancelOperationRequest): + The request object. The request message for + [Operations.CancelOperation][google.api_core.operations_v1.Operations.CancelOperation]. + timeout (float): The timeout for this request. + metadata (Sequence[Tuple[str, str]]): Strings which should be + sent along with the request as metadata. + """ + + http_options = [ + { + "method": "post", + "uri": "/{}/{{name=**/operations/*}}:cancel".format(self._path_prefix), + "body": "*", + }, + ] + if "google.longrunning.Operations.CancelOperation" in self._http_options: + http_options = self._http_options[ + "google.longrunning.Operations.CancelOperation" + ] + + request_kwargs = self._convert_protobuf_message_to_dict(request) + transcoded_request = path_template.transcode(http_options, **request_kwargs) + + # Jsonify the request body + body_request = operations_pb2.CancelOperationRequest() + json_format.ParseDict(transcoded_request["body"], body_request) + body = json_format.MessageToDict( + body_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + uri = transcoded_request["uri"] + method = transcoded_request["method"] + + # Jsonify the query params + query_params_request = operations_pb2.CancelOperationRequest() + json_format.ParseDict(transcoded_request["query_params"], query_params_request) + query_params = json_format.MessageToDict( + query_params_request, + preserving_proto_field_name=False, + use_integers_for_enums=False, + ) + + # Send the request + headers = dict(metadata) + headers["Content-Type"] = "application/json" + # TODO(https://github.com/googleapis/python-api-core/issues/721): Update incorrect use of `uri`` variable name. + response = await getattr(self._session, method)( + "{host}{uri}".format(host=self._host, uri=uri), + timeout=timeout, + headers=headers, + params=rest_helpers.flatten_query_params(query_params), + data=body, + ) + + # In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception + # subclass. + if response.status_code >= 400: + content = await response.read() + payload = json.loads(content.decode("utf-8")) + request_url = "{host}{uri}".format(host=self._host, uri=uri) + raise core_exceptions.format_http_response_error(response, method, request_url, payload) # type: ignore + + return empty_pb2.Empty() + + @property + def list_operations( + self, + ) -> Callable[ + [operations_pb2.ListOperationsRequest], + Coroutine[Any, Any, operations_pb2.ListOperationsResponse], + ]: + return self._list_operations + + @property + def get_operation( + self, + ) -> Callable[ + [operations_pb2.GetOperationRequest], + Coroutine[Any, Any, operations_pb2.Operation], + ]: + return self._get_operation + + @property + def delete_operation( + self, + ) -> Callable[ + [operations_pb2.DeleteOperationRequest], Coroutine[Any, Any, empty_pb2.Empty] + ]: + return self._delete_operation + + @property + def cancel_operation( + self, + ) -> Callable[ + [operations_pb2.CancelOperationRequest], Coroutine[Any, Any, empty_pb2.Empty] + ]: + return self._cancel_operation + + +__all__ = ("AsyncOperationsRestTransport",) diff --git a/ocr/.venv/Lib/site-packages/google/api_core/page_iterator.py b/ocr/.venv/Lib/site-packages/google/api_core/page_iterator.py new file mode 100644 index 00000000..23761ec4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/page_iterator.py @@ -0,0 +1,571 @@ +# Copyright 2015 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Iterators for paging through paged API methods. + +These iterators simplify the process of paging through API responses +where the request takes a page token and the response is a list of results with +a token for the next page. See `list pagination`_ in the Google API Style Guide +for more details. + +.. _list pagination: + https://cloud.google.com/apis/design/design_patterns#list_pagination + +API clients that have methods that follow the list pagination pattern can +return an :class:`.Iterator`. You can use this iterator to get **all** of +the results across all pages:: + + >>> results_iterator = client.list_resources() + >>> list(results_iterator) # Convert to a list (consumes all values). + +Or you can walk your way through items and call off the search early if +you find what you're looking for (resulting in possibly fewer requests):: + + >>> for resource in results_iterator: + ... print(resource.name) + ... if not resource.is_valid: + ... break + +At any point, you may check the number of items consumed by referencing the +``num_results`` property of the iterator:: + + >>> for my_item in results_iterator: + ... if results_iterator.num_results >= 10: + ... break + +When iterating, not every new item will send a request to the server. +To iterate based on each page of items (where a page corresponds to +a request):: + + >>> for page in results_iterator.pages: + ... print('=' * 20) + ... print(' Page number: {:d}'.format(iterator.page_number)) + ... print(' Items in page: {:d}'.format(page.num_items)) + ... print(' First item: {!r}'.format(next(page))) + ... print('Items remaining: {:d}'.format(page.remaining)) + ... print('Next page token: {}'.format(iterator.next_page_token)) + ==================== + Page number: 1 + Items in page: 1 + First item: + Items remaining: 0 + Next page token: eav1OzQB0OM8rLdGXOEsyQWSG + ==================== + Page number: 2 + Items in page: 19 + First item: + Items remaining: 18 + Next page token: None + +Then, for each page you can get all the resources on that page by iterating +through it or using :func:`list`:: + + >>> list(page) + [ + , + , + , + ] +""" + +import abc + + +class Page(object): + """Single page of results in an iterator. + + Args: + parent (google.api_core.page_iterator.Iterator): The iterator that owns + the current page. + items (Sequence[Any]): An iterable (that also defines __len__) of items + from a raw API response. + item_to_value (Callable[google.api_core.page_iterator.Iterator, Any]): + Callable to convert an item from the type in the raw API response + into the native object. Will be called with the iterator and a + single item. + raw_page Optional[google.protobuf.message.Message]: + The raw page response. + """ + + def __init__(self, parent, items, item_to_value, raw_page=None): + self._parent = parent + self._num_items = len(items) + self._remaining = self._num_items + self._item_iter = iter(items) + self._item_to_value = item_to_value + self._raw_page = raw_page + + @property + def raw_page(self): + """google.protobuf.message.Message""" + return self._raw_page + + @property + def num_items(self): + """int: Total items in the page.""" + return self._num_items + + @property + def remaining(self): + """int: Remaining items in the page.""" + return self._remaining + + def __iter__(self): + """The :class:`Page` is an iterator of items.""" + return self + + def __next__(self): + """Get the next value in the page.""" + item = next(self._item_iter) + result = self._item_to_value(self._parent, item) + # Since we've successfully got the next value from the + # iterator, we update the number of remaining. + self._remaining -= 1 + return result + + +def _item_to_value_identity(iterator, item): + """An item to value transformer that returns the item un-changed.""" + # pylint: disable=unused-argument + # We are conforming to the interface defined by Iterator. + return item + + +class Iterator(object, metaclass=abc.ABCMeta): + """A generic class for iterating through API list responses. + + Args: + client(google.cloud.client.Client): The API client. + item_to_value (Callable[google.api_core.page_iterator.Iterator, Any]): + Callable to convert an item from the type in the raw API response + into the native object. Will be called with the iterator and a + single item. + page_token (str): A token identifying a page in a result set to start + fetching results from. + max_results (int): The maximum number of results to fetch. + """ + + def __init__( + self, + client, + item_to_value=_item_to_value_identity, + page_token=None, + max_results=None, + ): + self._started = False + self.__active_iterator = None + + self.client = client + """Optional[Any]: The client that created this iterator.""" + self.item_to_value = item_to_value + """Callable[Iterator, Any]: Callable to convert an item from the type + in the raw API response into the native object. Will be called with + the iterator and a + single item. + """ + self.max_results = max_results + """int: The maximum number of results to fetch""" + + # The attributes below will change over the life of the iterator. + self.page_number = 0 + """int: The current page of results.""" + self.next_page_token = page_token + """str: The token for the next page of results. If this is set before + the iterator starts, it effectively offsets the iterator to a + specific starting point.""" + self.num_results = 0 + """int: The total number of results fetched so far.""" + + @property + def pages(self): + """Iterator of pages in the response. + + returns: + types.GeneratorType[google.api_core.page_iterator.Page]: A + generator of page instances. + + raises: + ValueError: If the iterator has already been started. + """ + if self._started: + raise ValueError("Iterator has already started", self) + self._started = True + return self._page_iter(increment=True) + + def _items_iter(self): + """Iterator for each item returned.""" + for page in self._page_iter(increment=False): + for item in page: + self.num_results += 1 + yield item + + def __iter__(self): + """Iterator for each item returned. + + Returns: + types.GeneratorType[Any]: A generator of items from the API. + + Raises: + ValueError: If the iterator has already been started. + """ + if self._started: + raise ValueError("Iterator has already started", self) + self._started = True + return self._items_iter() + + def __next__(self): + if self.__active_iterator is None: + self.__active_iterator = iter(self) + return next(self.__active_iterator) + + def _page_iter(self, increment): + """Generator of pages of API responses. + + Args: + increment (bool): Flag indicating if the total number of results + should be incremented on each page. This is useful since a page + iterator will want to increment by results per page while an + items iterator will want to increment per item. + + Yields: + Page: each page of items from the API. + """ + page = self._next_page() + while page is not None: + self.page_number += 1 + if increment: + self.num_results += page.num_items + yield page + page = self._next_page() + + @abc.abstractmethod + def _next_page(self): + """Get the next page in the iterator. + + This does nothing and is intended to be over-ridden by subclasses + to return the next :class:`Page`. + + Raises: + NotImplementedError: Always, this method is abstract. + """ + raise NotImplementedError + + +def _do_nothing_page_start(iterator, page, response): + """Helper to provide custom behavior after a :class:`Page` is started. + + This is a do-nothing stand-in as the default value. + + Args: + iterator (Iterator): An iterator that holds some request info. + page (Page): The page that was just created. + response (Any): The API response for a page. + """ + # pylint: disable=unused-argument + pass + + +class HTTPIterator(Iterator): + """A generic class for iterating through HTTP/JSON API list responses. + + To make an iterator work, you'll need to provide a way to convert a JSON + item returned from the API into the object of your choice (via + ``item_to_value``). You also may need to specify a custom ``items_key`` so + that a given response (containing a page of results) can be parsed into an + iterable page of the actual objects you want. + + Args: + client (google.cloud.client.Client): The API client. + api_request (Callable): The function to use to make API requests. + Generally, this will be + :meth:`google.cloud._http.JSONConnection.api_request`. + path (str): The method path to query for the list of items. + item_to_value (Callable[google.api_core.page_iterator.Iterator, Any]): + Callable to convert an item from the type in the JSON response into + a native object. Will be called with the iterator and a single + item. + items_key (str): The key in the API response where the list of items + can be found. + page_token (str): A token identifying a page in a result set to start + fetching results from. + page_size (int): The maximum number of results to fetch per page + max_results (int): The maximum number of results to fetch + extra_params (dict): Extra query string parameters for the + API call. + page_start (Callable[ + google.api_core.page_iterator.Iterator, + google.api_core.page_iterator.Page, dict]): Callable to provide + any special behavior after a new page has been created. Assumed + signature takes the :class:`.Iterator` that started the page, + the :class:`.Page` that was started and the dictionary containing + the page response. + next_token (str): The name of the field used in the response for page + tokens. + + .. autoattribute:: pages + """ + + _DEFAULT_ITEMS_KEY = "items" + _PAGE_TOKEN = "pageToken" + _MAX_RESULTS = "maxResults" + _NEXT_TOKEN = "nextPageToken" + _RESERVED_PARAMS = frozenset([_PAGE_TOKEN]) + _HTTP_METHOD = "GET" + + def __init__( + self, + client, + api_request, + path, + item_to_value, + items_key=_DEFAULT_ITEMS_KEY, + page_token=None, + page_size=None, + max_results=None, + extra_params=None, + page_start=_do_nothing_page_start, + next_token=_NEXT_TOKEN, + ): + super(HTTPIterator, self).__init__( + client, item_to_value, page_token=page_token, max_results=max_results + ) + self.api_request = api_request + self.path = path + self._items_key = items_key + self.extra_params = extra_params + self._page_size = page_size + self._page_start = page_start + self._next_token = next_token + # Verify inputs / provide defaults. + if self.extra_params is None: + self.extra_params = {} + self._verify_params() + + def _verify_params(self): + """Verifies the parameters don't use any reserved parameter. + + Raises: + ValueError: If a reserved parameter is used. + """ + reserved_in_use = self._RESERVED_PARAMS.intersection(self.extra_params) + if reserved_in_use: + raise ValueError("Using a reserved parameter", reserved_in_use) + + def _next_page(self): + """Get the next page in the iterator. + + Returns: + Optional[Page]: The next page in the iterator or :data:`None` if + there are no pages left. + """ + if self._has_next_page(): + response = self._get_next_page_response() + items = response.get(self._items_key, ()) + page = Page(self, items, self.item_to_value, raw_page=response) + self._page_start(self, page, response) + self.next_page_token = response.get(self._next_token) + return page + else: + return None + + def _has_next_page(self): + """Determines whether or not there are more pages with results. + + Returns: + bool: Whether the iterator has more pages. + """ + if self.page_number == 0: + return True + + if self.max_results is not None: + if self.num_results >= self.max_results: + return False + + return self.next_page_token is not None + + def _get_query_params(self): + """Getter for query parameters for the next request. + + Returns: + dict: A dictionary of query parameters. + """ + result = {} + if self.next_page_token is not None: + result[self._PAGE_TOKEN] = self.next_page_token + + page_size = None + if self.max_results is not None: + page_size = self.max_results - self.num_results + if self._page_size is not None: + page_size = min(page_size, self._page_size) + elif self._page_size is not None: + page_size = self._page_size + + if page_size is not None: + result[self._MAX_RESULTS] = page_size + + result.update(self.extra_params) + return result + + def _get_next_page_response(self): + """Requests the next page from the path provided. + + Returns: + dict: The parsed JSON response of the next page's contents. + + Raises: + ValueError: If the HTTP method is not ``GET`` or ``POST``. + """ + params = self._get_query_params() + if self._HTTP_METHOD == "GET": + return self.api_request( + method=self._HTTP_METHOD, path=self.path, query_params=params + ) + elif self._HTTP_METHOD == "POST": + return self.api_request( + method=self._HTTP_METHOD, path=self.path, data=params + ) + else: + raise ValueError("Unexpected HTTP method", self._HTTP_METHOD) + + +class _GAXIterator(Iterator): + """A generic class for iterating through Cloud gRPC APIs list responses. + + Any: + client (google.cloud.client.Client): The API client. + page_iter (google.gax.PageIterator): A GAX page iterator to be wrapped + to conform to the :class:`Iterator` interface. + item_to_value (Callable[Iterator, Any]): Callable to convert an item + from the protobuf response into a native object. Will + be called with the iterator and a single item. + max_results (int): The maximum number of results to fetch. + + .. autoattribute:: pages + """ + + def __init__(self, client, page_iter, item_to_value, max_results=None): + super(_GAXIterator, self).__init__( + client, + item_to_value, + page_token=page_iter.page_token, + max_results=max_results, + ) + self._gax_page_iter = page_iter + + def _next_page(self): + """Get the next page in the iterator. + + Wraps the response from the :class:`~google.gax.PageIterator` in a + :class:`Page` instance and captures some state at each page. + + Returns: + Optional[Page]: The next page in the iterator or :data:`None` if + there are no pages left. + """ + try: + items = next(self._gax_page_iter) + page = Page(self, items, self.item_to_value) + self.next_page_token = self._gax_page_iter.page_token or None + return page + except StopIteration: + return None + + +class GRPCIterator(Iterator): + """A generic class for iterating through gRPC list responses. + + .. note:: The class does not take a ``page_token`` argument because it can + just be specified in the ``request``. + + Args: + client (google.cloud.client.Client): The API client. This unused by + this class, but kept to satisfy the :class:`Iterator` interface. + method (Callable[protobuf.Message]): A bound gRPC method that should + take a single message for the request. + request (protobuf.Message): The request message. + items_field (str): The field in the response message that has the + items for the page. + item_to_value (Callable[GRPCIterator, Any]): Callable to convert an + item from the type in the JSON response into a native object. Will + be called with the iterator and a single item. + request_token_field (str): The field in the request message used to + specify the page token. + response_token_field (str): The field in the response message that has + the token for the next page. + max_results (int): The maximum number of results to fetch. + + .. autoattribute:: pages + """ + + _DEFAULT_REQUEST_TOKEN_FIELD = "page_token" + _DEFAULT_RESPONSE_TOKEN_FIELD = "next_page_token" + + def __init__( + self, + client, + method, + request, + items_field, + item_to_value=_item_to_value_identity, + request_token_field=_DEFAULT_REQUEST_TOKEN_FIELD, + response_token_field=_DEFAULT_RESPONSE_TOKEN_FIELD, + max_results=None, + ): + super(GRPCIterator, self).__init__( + client, item_to_value, max_results=max_results + ) + self._method = method + self._request = request + self._items_field = items_field + self._request_token_field = request_token_field + self._response_token_field = response_token_field + + def _next_page(self): + """Get the next page in the iterator. + + Returns: + Page: The next page in the iterator or :data:`None` if + there are no pages left. + """ + if not self._has_next_page(): + return None + + if self.next_page_token is not None: + setattr(self._request, self._request_token_field, self.next_page_token) + + response = self._method(self._request) + + self.next_page_token = getattr(response, self._response_token_field) + items = getattr(response, self._items_field) + page = Page(self, items, self.item_to_value, raw_page=response) + + return page + + def _has_next_page(self): + """Determines whether or not there are more pages with results. + + Returns: + bool: Whether the iterator has more pages. + """ + if self.page_number == 0: + return True + + if self.max_results is not None: + if self.num_results >= self.max_results: + return False + + # Note: intentionally a falsy check instead of a None check. The RPC + # can return an empty string indicating no more pages. + return True if self.next_page_token else False diff --git a/ocr/.venv/Lib/site-packages/google/api_core/page_iterator_async.py b/ocr/.venv/Lib/site-packages/google/api_core/page_iterator_async.py new file mode 100644 index 00000000..c0725758 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/page_iterator_async.py @@ -0,0 +1,285 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""AsyncIO iterators for paging through paged API methods. + +These iterators simplify the process of paging through API responses +where the request takes a page token and the response is a list of results with +a token for the next page. See `list pagination`_ in the Google API Style Guide +for more details. + +.. _list pagination: + https://cloud.google.com/apis/design/design_patterns#list_pagination + +API clients that have methods that follow the list pagination pattern can +return an :class:`.AsyncIterator`: + + >>> results_iterator = await client.list_resources() + +Or you can walk your way through items and call off the search early if +you find what you're looking for (resulting in possibly fewer requests):: + + >>> async for resource in results_iterator: + ... print(resource.name) + ... if not resource.is_valid: + ... break + +At any point, you may check the number of items consumed by referencing the +``num_results`` property of the iterator:: + + >>> async for my_item in results_iterator: + ... if results_iterator.num_results >= 10: + ... break + +When iterating, not every new item will send a request to the server. +To iterate based on each page of items (where a page corresponds to +a request):: + + >>> async for page in results_iterator.pages: + ... print('=' * 20) + ... print(' Page number: {:d}'.format(iterator.page_number)) + ... print(' Items in page: {:d}'.format(page.num_items)) + ... print(' First item: {!r}'.format(next(page))) + ... print('Items remaining: {:d}'.format(page.remaining)) + ... print('Next page token: {}'.format(iterator.next_page_token)) + ==================== + Page number: 1 + Items in page: 1 + First item: + Items remaining: 0 + Next page token: eav1OzQB0OM8rLdGXOEsyQWSG + ==================== + Page number: 2 + Items in page: 19 + First item: + Items remaining: 18 + Next page token: None +""" + +import abc + +from google.api_core.page_iterator import Page + + +def _item_to_value_identity(iterator, item): + """An item to value transformer that returns the item un-changed.""" + # pylint: disable=unused-argument + # We are conforming to the interface defined by Iterator. + return item + + +class AsyncIterator(abc.ABC): + """A generic class for iterating through API list responses. + + Args: + client(google.cloud.client.Client): The API client. + item_to_value (Callable[google.api_core.page_iterator_async.AsyncIterator, Any]): + Callable to convert an item from the type in the raw API response + into the native object. Will be called with the iterator and a + single item. + page_token (str): A token identifying a page in a result set to start + fetching results from. + max_results (int): The maximum number of results to fetch. + """ + + def __init__( + self, + client, + item_to_value=_item_to_value_identity, + page_token=None, + max_results=None, + ): + self._started = False + self.__active_aiterator = None + + self.client = client + """Optional[Any]: The client that created this iterator.""" + self.item_to_value = item_to_value + """Callable[Iterator, Any]: Callable to convert an item from the type + in the raw API response into the native object. Will be called with + the iterator and a + single item. + """ + self.max_results = max_results + """int: The maximum number of results to fetch.""" + + # The attributes below will change over the life of the iterator. + self.page_number = 0 + """int: The current page of results.""" + self.next_page_token = page_token + """str: The token for the next page of results. If this is set before + the iterator starts, it effectively offsets the iterator to a + specific starting point.""" + self.num_results = 0 + """int: The total number of results fetched so far.""" + + @property + def pages(self): + """Iterator of pages in the response. + + returns: + types.GeneratorType[google.api_core.page_iterator.Page]: A + generator of page instances. + + raises: + ValueError: If the iterator has already been started. + """ + if self._started: + raise ValueError("Iterator has already started", self) + self._started = True + return self._page_aiter(increment=True) + + async def _items_aiter(self): + """Iterator for each item returned.""" + async for page in self._page_aiter(increment=False): + for item in page: + self.num_results += 1 + yield item + + def __aiter__(self): + """Iterator for each item returned. + + Returns: + types.GeneratorType[Any]: A generator of items from the API. + + Raises: + ValueError: If the iterator has already been started. + """ + if self._started: + raise ValueError("Iterator has already started", self) + self._started = True + return self._items_aiter() + + async def __anext__(self): + if self.__active_aiterator is None: + self.__active_aiterator = self.__aiter__() + return await self.__active_aiterator.__anext__() + + async def _page_aiter(self, increment): + """Generator of pages of API responses. + + Args: + increment (bool): Flag indicating if the total number of results + should be incremented on each page. This is useful since a page + iterator will want to increment by results per page while an + items iterator will want to increment per item. + + Yields: + Page: each page of items from the API. + """ + page = await self._next_page() + while page is not None: + self.page_number += 1 + if increment: + self.num_results += page.num_items + yield page + page = await self._next_page() + + @abc.abstractmethod + async def _next_page(self): + """Get the next page in the iterator. + + This does nothing and is intended to be over-ridden by subclasses + to return the next :class:`Page`. + + Raises: + NotImplementedError: Always, this method is abstract. + """ + raise NotImplementedError + + +class AsyncGRPCIterator(AsyncIterator): + """A generic class for iterating through gRPC list responses. + + .. note:: The class does not take a ``page_token`` argument because it can + just be specified in the ``request``. + + Args: + client (google.cloud.client.Client): The API client. This unused by + this class, but kept to satisfy the :class:`Iterator` interface. + method (Callable[protobuf.Message]): A bound gRPC method that should + take a single message for the request. + request (protobuf.Message): The request message. + items_field (str): The field in the response message that has the + items for the page. + item_to_value (Callable[GRPCIterator, Any]): Callable to convert an + item from the type in the JSON response into a native object. Will + be called with the iterator and a single item. + request_token_field (str): The field in the request message used to + specify the page token. + response_token_field (str): The field in the response message that has + the token for the next page. + max_results (int): The maximum number of results to fetch. + + .. autoattribute:: pages + """ + + _DEFAULT_REQUEST_TOKEN_FIELD = "page_token" + _DEFAULT_RESPONSE_TOKEN_FIELD = "next_page_token" + + def __init__( + self, + client, + method, + request, + items_field, + item_to_value=_item_to_value_identity, + request_token_field=_DEFAULT_REQUEST_TOKEN_FIELD, + response_token_field=_DEFAULT_RESPONSE_TOKEN_FIELD, + max_results=None, + ): + super().__init__(client, item_to_value, max_results=max_results) + self._method = method + self._request = request + self._items_field = items_field + self._request_token_field = request_token_field + self._response_token_field = response_token_field + + async def _next_page(self): + """Get the next page in the iterator. + + Returns: + Page: The next page in the iterator or :data:`None` if + there are no pages left. + """ + if not self._has_next_page(): + return None + + if self.next_page_token is not None: + setattr(self._request, self._request_token_field, self.next_page_token) + + response = await self._method(self._request) + + self.next_page_token = getattr(response, self._response_token_field) + items = getattr(response, self._items_field) + page = Page(self, items, self.item_to_value, raw_page=response) + + return page + + def _has_next_page(self): + """Determines whether or not there are more pages with results. + + Returns: + bool: Whether the iterator has more pages. + """ + if self.page_number == 0: + return True + + # Note: intentionally a falsy check instead of a None check. The RPC + # can return an empty string indicating no more pages. + if self.max_results is not None: + if self.num_results >= self.max_results: + return False + + return True if self.next_page_token else False diff --git a/ocr/.venv/Lib/site-packages/google/api_core/path_template.py b/ocr/.venv/Lib/site-packages/google/api_core/path_template.py new file mode 100644 index 00000000..b8ebb2af --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api_core/path_template.py @@ -0,0 +1,346 @@ +# Copyright 2017 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Expand and validate URL path templates. + +This module provides the :func:`expand` and :func:`validate` functions for +interacting with Google-style URL `path templates`_ which are commonly used +in Google APIs for `resource names`_. + +.. _path templates: https://github.com/googleapis/googleapis/blob + /57e2d376ac7ef48681554204a3ba78a414f2c533/google/api/http.proto#L212 +.. _resource names: https://cloud.google.com/apis/design/resource_names +""" + +from __future__ import unicode_literals + +from collections import deque +import copy +import functools +import re + +# Regular expression for extracting variable parts from a path template. +# The variables can be expressed as: +# +# - "*": a single-segment positional variable, for example: "books/*" +# - "**": a multi-segment positional variable, for example: "shelf/**/book/*" +# - "{name}": a single-segment wildcard named variable, for example +# "books/{name}" +# - "{name=*}: same as above. +# - "{name=**}": a multi-segment wildcard named variable, for example +# "shelf/{name=**}" +# - "{name=/path/*/**}": a multi-segment named variable with a sub-template. +_VARIABLE_RE = re.compile( + r""" + ( # Capture the entire variable expression + (?P\*\*?) # Match & capture * and ** positional variables. + | + # Match & capture named variables {name} + { + (?P[^/]+?) + # Optionally match and capture the named variable's template. + (?:=(?P

wQqv}v*r)RHUzjvjYwx7-84Iec;p+w|kDG4}7 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8a7cf6173c5ea5c01653fa03dfff392ae08e0df GIT binary patch literal 2053 zcmcgt%}?V-6t|u4$+v-x>2@hXsetKF(lYrB9Cc-H%JIdKe*J$P}f3DdDno_@K zMUp<(?Gi2jsM!^Y&Z@LTE9VC2p)-?~NCsBmnI;ZrNOow5A4rZ?2%6XMEXl`cjuZeD zfxAb*Izly422_c-YK&^c1T+(IvoWfXIY9R!t`?&ju>j3S+w0^0IxU63wLZvHM5OM*l^34hdoO_Cr zC!;?1FmXbs???(%raxvLp+e3lG!4xSI3IX))d|?DGY${x(S9bH&~>1fJXC6cg!&oaYXQjYF*8Bt&#FT}Vi2}Vp?e>n>rSDMw#c{aB`UQAPWi^Qfw7#sxc#juNyd`RB|!Djpt(*o(7~ zRyry`ZMpzc*)FZ1>bqsOP{nn8?n9?|Sh_rboulJg`V5utl+T<&`K!Lb*J<4fS{-d} zeTYgfA5F!vo{Osz@*Ul7#@#pIp5qVdTnttR)CbQYU!91ci)GZ|l8PhdQkVPtZ1DN5 z)$c~~S!1WwPe+EIp3Y45v?>`6`fE?OFVJSQyU}Uw?6x~{2p{497~18Bu%BJVjlJFH z&F$URMq{_t-oE?^*vp@lXy%Tnv$xe`U%+H#U%|^R;1{oUx7rgk_M76*6km+Yb~^2E zTAR%ddt`v%F}!ROx7A*q=GS|zPV*(~*=0;ghe}$B%%+6w51^N=iwwquyBOQ$xP(zf zVSEXYYjz&rj41&lNO`(pqQNDS6Z+2ZvaLG~>&y?S@EuR6KN35Oa!T1U-tg8X}l1k|eXu~H>e>~c}p0m=P z$ai@#MS@yvAfaq~-6r0^H=WYG$YLI-(JA4OpzY!?uF2{&DMLquaL!YD)F*E=QG|e_ z*Wcf6JnHR%T=otRDfb6G2xS=Zpw|wl{|W{j4RNE@;t=nPFhfmd>-pik~>GMg~;kR#E@} literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0036e4fe7b4be2d33ca59be43cba92cdabe2408 GIT binary patch literal 2090 zcmcgt&2QsG6t|r;NvCO&x?k?Hu+<)5SAtZO1FHog^5NZ$C`m|C&<+tJJM)@#>v+uA zDQd-y3nz}8yWF^PMdA1W;f zqoOE(Mo#v#gwCgU2OFxQaD^&d<(jL`G@4T*JBN0jF2!~p?E)>v_L5tgEmNW@P`p@q zuFx_pMc)^zyzpG56{!B8&>E17HK;)CxrRJ)p+kii(Zih~cf8I^Cz||`FGG!!9ffW1 zmDJjdv2u*9A{JQ*R@qUGw|F&<)G%`6Z}K(tb&PED_0%%>M#4dCGqnu9g;uoVHs4My zgBxh=#MrIWGWhaPiSGMvoZop29!M($zUxa7iivP{?fKCW$lZzHP``>AdSAUH9D<2- z{7^{rsy80WM%IGfqRW!wra+X?`oqCIz94l*d@6onX5A*L?uS-!JpTay#;cs>3} zog|SuM((~(ip?abzfG3p+=akUcXRhv_P6Udw0g=JVEpcHd9sr6^%^M!;KBq;#Z>j) zvR)-ci*pG)6EusrQYLO!{@ufJcL2AAg zK4YP@yughqMgb$0{dZndZM~2D(G6YSBIV=nLT1gm1KtFTBBn1tQ6ii>fn~dZvGAEu zLcD}HmcBSBV>#mL-;g)ODM;zyp)mW5N%(dSLCCIYB<|mbudArHNN%1DlGJ`W38ojy zvs;wh`45V|LUJc?mUbJ@?bLGT5cm4^=k`#0pxy;ieYGLGS;rl8z({Y;$*Yc)yA*Xv&@ZzTKB_W*GARgxca}_YW_L7r8faMH1C^GuN%W;RD5eyO6y2*aF3wN5hx0osv$Gjl+qlr%3tn7AbdH%RaK1;%{hiAqV_Zxaqt&#Racfbu zB*qoGf-mtxsw4^zYIO#Q?LqH^AhD^;R>I#m`ZVtSK}+ZhG@s`?}j?yP22aWr+zt5~zT#Gn~J)jBBuR;Bng>EoH;DCD2uEGR)Am;8EJO|DYDl+)Dwi$cDv eR#bwQmec;xRPBYPW$hZ`rE5ImEv|~1|Lb43Q)W{D literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7616bee43aed264dedb5e76a3ca420dc1537054 GIT binary patch literal 1370 zcmcgr&2HpG5Vk$e*yGG!oc$RV2}T^y=D-9koY)m&CYg;!3Q4q+)k=+}mhG-sPTFp( z+Y@QCM;-x*bHa@`;J}m2l~djTabPL`WMg;$Y`MGYtFG$$++T}c&(ZL)e|BT1qiKH> zPV?D7=R5q=Z#XcGXiR4Y*As)Z^ulhTZIX@BHqmYqtF$+`opgw!YhYb(-e{x?8^wIx zW9=KA^kML$Muy;AZ$Tf1HwLbAu3hLe3q7n1t@CYWUl@|G4h)&|kwzb|&Dwg%x@h$f zd&Driv>vkoTEh=mVLfJ@rB-}9TUVbRKnl{&fsHdMauEtX4pwJpAjhF#Fu6r~+K#?< z7^qOjSuP}cgL{u=Lhu4oZ<9c9%KY39d<6(u!7Anqr21OdG-nhE5pme{vv@a%Igit5 zQf}!wRb+yZ&wkP!YgR?wx$`g-sahoE^S~C--@iI_GZQzhC}j z>bP~Zfx1r|HxX%!e1K62N~~lEBYmtt?YINSN+6eUs73~E)tRMEKNLx0zgf2~c~bne z6P?WKULwJLBqn6E8$nv~+pR*#PL<>p$jdkcq;?iZ&;RB9VweZhlSR-j6TiB8)L%I6Pb&9o+to?(Mq*`}hvKo3YQ+ z#nJS1aeTBhT3eJd5mHJ9HM5c^3QihD_GWR;wajFzK!y#Zl$tav_&;(ZwY(}xVZlk9 z<{(p_%i^kHueBJ7wGU_his!_lSc9^FY)u(kf{cA0Ujcg=bC7M!Sz8eofzK5t-&vo` z3Q2ztO8F5?Q#Mam3971YS&=G!DzXNM%jyJ0T>5%Br+f7N^pLdiC0--7<9Z aecSBneci#=Xc>PSy7AsH3eQ2*{PQ2aVX5x` literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..545bd3a6f1027c81b52b80586989f3e1f7f93885 GIT binary patch literal 6285 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 A`~Uy| literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..034d54f5d169c747aa62a3911fabde860fa867eb GIT binary patch literal 1405 zcmcgrUvJ|?5VsvCaW-lG6|Mm!sEUNzhjZb01B7VP+)?ScR!yseJxeRwJGIz5$;luRP@&ARaizj_+dl0NC<+<~K9DGqb;u8ym#H$N6O#f88>SKXRq| z)KU2gKm9u{+@JYlfl$ZuI@7nhU?La;M-)->5 zy-B;!`^lhvAa?`kLjT@EKXNyOE^nfSJ45YilRMXzqPzutPTn!tTfALLZ}SdH8;CvN z7+pwPyoXZ1zy_tX#amM&|MrHrA3T8sl%E0LPL<4LD8+U#zq|ys9ZC-F63a98%mv|~ zLlvi)RH*gV8cU@VIiz3C0x1~xGe7V(Ak+-zvEZPzZyE*}MN&or_Wd;84`q_UkC|H> zIV3BKiu^Ii#wMx67b>4-%&_DuZ63j;KNlHoGTejlfDR5gpMr{g5#IuT z91Bnlj9D}zAp>7%41O)Wf0(oW8_?R1;2`0XWIj83Gd!BE?B_DAfaq2RXgXvU(+L~1 z^_@)@4wGq?^N?;b^##_Novh{5L~&G2vqQ>&5sp?*jMH-qjVzB=Rto z>rAHJNeanxWH@B(;MkL)^4uFpZoH>);ORJnhp8W4V_Di;-A#3vbFR7R%Z2mBOmdvd sFLCG%{V^`~X2)E;j_uSe(|*;kJ7(7;_*ymVZ_Bh^SyrwQMD0KS0kjmcR{#J2 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2acd912fee11b52798e0140c13a08522b015ad26 GIT binary patch literal 1347 zcmcgr&2HO95GE;Fq$$a=r2HrekP1B|htNoJYl9%N>;wjqShbuM*b-Qf+%ZFY$t89v z1NJTG8}yK~om+2x9$kC#E9B60_|ur_1C#`pGvCbYelt5GdOb(O$No5sKiHb~SD`eY zHB?^Ur~br+X+&c>Gq|1@q@@>f3uTk6m9mL)n^>j1#_eRCIJySbMdwl@UG#19Ua~>@ zh^-aa#U`^ZbuxhAZyFhab8!O(FuF9*?p)l20kcuVQ=oNxi>;p+@@MA2h;{C0^fv3( z(wOy7+Cc0M>(|m<<}9@0d$@W2-782z`Z=&kCPgkn!6(7;=m_K_6b#%eOiO#HuN(#{ zlyQ~|iCX_!qnQxAfYezM2u_)w`+=_jAuCwMoIw%bWP-=x8O?$x3X|5HaU?{Ih9jo~>1ixQnn0S5^@;vqefZevCy>7v z4C&#)F{rUQX+7vX8N1ipyKhRDc}Z(EGWKaE@=qpb+i zlJ!<)Le8p8Nr60#L%__A;^@b3v`>clYC7Kw+GXI=^IHusD44KsJM64Y+@|Qd(7R5a%3rM49WV>*_Uy(zq zImJsU|8)x%#U+C&V+)Y6&*O7oFJlhU!nlI14OqvK#?JRx7ejKdVQITl}$yK$0Ai^M6o$)8ehRd6I8h`bJA}@kg`8C z*+atR^7+@<58gZ6M|sD`AkxS~Dkr(fy!{N)UwqCXr_()8gwk_Qaag?9ap0*qhew$o zo?u$atLoJp$D&SdcDAygC4wzEJjb!sl#7cw>gv^No86Xe7`pkTZFcny-NDyr8GjqP M@x?G4M9k0s0P>5dhX4Qo literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..343bc04e667be6ef70a90e7396c93e4e6a097575 GIT binary patch literal 2640 zcmcgu&2HO95GJW#uYPRPP9jVBQGz0g50(Knr?v0-xk7 zoqo5fD1VB@;wJ`+FX6}UsfvOXL%}N6Y;~d;5mn#_;HVLkI0`s!BqWa6$;py|RD~o? zQm+*w4cs{RGe%bW6M&bE74XM||6~;>U#o^r*1lDYb%IVV5uL2R*1(TWE)yLu!3rvp z$iWqi4mIxwoFeNuy`h*noC(ne&H`EnTOO~3sDM`i>C(0qq5@tAbV=GShp2$B0Ln?* zMu-YH52zq*S3^|5*8p9Ywi_WT;3A-#(kAK(RKTgOB7U2pADH^ z985iW!s)$-ZObQ!aSi62h}%r>#*TLX&|FeL_4YGWb- z5|(ppx`Q&nj87+o`_{x227W)PDCpXlv9V3IEthU%%6*Rxraom(Novwj;4XnXzY$WU z2b69@=75&J@vduLDInbXBaYI$3+eR?iVfM+@pEcXy&KWfC^{jQlha_O>P3{}(}~GO zCVw`yJc3P3j;JMcGGV+F&2x!j1XSNcOXLNaxVGi-90F6SeDlJLwUC*=iDH4O6pBo! zBX>a6#lm_KY(V~(2+EvSu!piXb%^Defez#`)HDvHZMgIz|krys=h~rbs zo@WyqpDLF>GF$B|1EhR}Rv@KKht!|v6R#;%-v0P}GW?;EucCOMRnH^cfi4(Phx%lm zSoBLww9j*j{ik8WWKo=rMx6LTd*oXvwIK0>nc&rqJ@(vxYL2WS%vhKa3h<$2lQ3Z( zB_W~Is6(*<3JFAN$&=!YFTQ#cTh>V#HGf`sR zczaA7S$aEgK`4LkAozUoRQO4Y?p50LL0pD?`m(Svc8ff5zC382qTO1z+NrmDtqy+% zr`i85^vwZOH8SRIz1!>5clLYrR+Ii3Q4~6bi_2I$=P)~!=3b4y0uTLBxC`gqJNwl~ zwO*?&l5}ZPWcgkL+N}@J%tpOgt90mZK%~D5_MH#0Yfsv(X06$)R~qz=D6k0+p$YJ7v7Z-$L5D)Tv zb0$hI#PucG$x8^@?Tcvh*^*>qwSsY%cyPkemjpkcHt~`Wf0`KEY+%_O1kKR(9ii+o z;oKUNii2x#=(F!UhkeJXZH-W7@y0S8&?;Na3OoX zvAk#^4*ps3G9Xw!{{E)=S$`k$@czL8Va~V@QVxCQ_FFD-zP4-|F1AX&&xT&VbVQt^ zeuEDB98S$G*BTzepT+yZzP&fyVrNV4@oDml3ByyH+=sqbcmp2MwX_<1lhJe}ttK^1 hjlPXX(`r1WIPw5(}= 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69876f5aa6d874b726561f0f733b205ebbb50541 GIT binary patch literal 1630 zcmcgs&2H;N6t*2FaVEb_T51;1>LNtDAQ1&NfDq}=y{&ZbZPcU!jUtW4nW^j6@mMpH zidG&Sw~`?(!`TD7b{ zjIjI^LHG)O>UUU}g)L??C$^^!F4zVa0K2%DVHa=-mor?9y=es_+v4Th>YasaylDP! z>#THV;|6d3WZ@P^w=2BCTXzoFq1!fZurf#xnHMfP%)4|XV-?aq@Ej39Qc-2eBKX#zah)GT*IaNt-(|uyH@{NGM{Ogk2%SUdWTI zqrHU+`l+&B(kI&(FNE+-seK|+_2gALSqrvF- zM1^n_|EIL>--o?$ksOXjgZpd1_um}eEpSpuJVIgCX>V+GEy(Yw25 zf?sf@Xvq5sJ4j~J{fCqlUg$?6T_V9OcTjLNr^5rXM;@CvoO?v1*=@ib0u!63@j$LD zlS)&madVmC3H#NObx1f{{`zL`v+*g!QR9mXE|PEzsa$H2j*nBGd`)ARRnk8ii-{a} zuXu7bejWv56>0uqN+*|4mKraP^5Mf|ZeBONo_k+R1%ofmm(WW~eFBTyso9IybG?FN dyRS-a&2HETUZ>#v?byyM$1&34ZP@Og{{RLg-(~;+ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a23a6c51fa92ff5bfb8d5add43e6d14522ec0ce3 GIT binary patch literal 1329 zcmcgrKX2Pc6elTKq)(D1({3VXXoXJBPzp%5rYI^|PGTUfg~(~s1AzmnduC}(jl7;Bnu0$v>`Pyw}Y7*+AxJ zyy`!ExIqnWaw|0_7Oj|?t{`pGjgq#Ju2QF@H&S=9Nr`EIb6LAGXdQK{C~wd$#5Oc` z+2qcZNn5b}w?RE1mpjk`@5(|sx!i>ocag&=P&xaGZ=PH7H%`FgwLOE~84t}l;h@Gc$qONo zYu<7!7b4Y=noS~+G9DIT6e>W-iKa=)K^r(>He-48NYzZkAbYV8aSGiqPr82=MIH%0 z^ULraS%`cTJy@xg5=^R#P8Mq4z9Q~3H0-0Hw@d0{krj{?teEA{Haq72rdKDnPNi)j zSNHY_fxl2iB_dPpN~f}4d$j8>W3BxAy=>M8vNaZyl?c=5H&&5`x|zA`P?H z7c%a~kd&|B>7eD@iBl1Uslpg5>g&E<*8UNRi4NSOvJ_H9p1TWE# z3eL_zWO0D0oEIVwj&sO<57QJ1);kKsSO)%U$X*A}lPFM00pI1}_#Dep!J=bdEU0dj zpU>v*j}yVCDg1>0siAy)?47!~_*}bQaV^WVKUM9zxn&aktcvx~GObURMG&z+dFR{3%k++LL_ariWJ(YNf+(N(#X!dMs6n_ zYsRV6Uil7i;m~s98*t}acG4v39a|p%-tYZ?ewLLAG4OJJZiL$8f{HaK2kzowR1G?Gbd;lu+MR*PTZ74t$&}UX03mN!Aqw_ubq@Awr z51_R_hE~Ko(R6aK+(}L6`k{>1NHkkGXxd<>gAUtgtI-W+4wG?$tEcG})5|iJYSG3(k&z-tT|yonjpAou7k@#vYb(k;vFPjv@Nd7XlL2>UwgdJogf! zORpCOo(>au9{ZyUY)gCdQLgqeT{JhonmON2B%ccS4*y$2zre%Z+A!z0V>>y^v_BN= Y4YO(zysez|uVq>vEGv}=vi9Hq0d9Si!2kdN literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed8f7be4df270e3c85ff3bff502477bad4be2ff1 GIT binary patch literal 1288 zcmcIjO>g5w7`7cJcBc7oT|SC{rPoDT7r_k>!cE<7q%<4Vi4Y@8gPoZgw-b*wb1FakIuI;1;%O+~oG6jghV~>u&E}!yVSF-gjNvy4P`! z^?%Z^!_eJ6>oMov06%o+vL3bI1esam`heOuhMdqgb13>iBk$0?4SJV$0CjTge^ z5Q0~fdbLOdCp0eOBvuS4D_LfoGO3>Enub13g-AI&j*IM=$IE>FBT;3XGOzw$7p=`6 zm_PklM|-2%C9FK$kI>=BpN$94NjUY-12P+jlVC7B8wRJ2=I*2JY&^V}jDm|`JO!%d zc2RqB8LVR*%XLsE@GnQ-6MrxW!qCy(Hfs8#$#dT^TpO7u!PIveZVMUbzGJ#QgiZs9 zANWL%6LCOUq$v8RH^dFlz79;Ym?n>${cpfy#s{}rrX4fEWe z43k#v@Wt(i+w9)%bV!kWel}h~LE+$XIGMhp_RE)F3)H;#ontn?w`0%ZSUY3_k<}sJmox(QRC<$Aq z>?&UJ5?cgv5Srk9pVE-YEaurQqh}dsvIQ|KE9D}Ixq{$-(UX%(j~7fS5S5?PAYU#{ zA7!oZ+CCM<4he3X0EJyL3j;DB+iwxBY$A#>6S=|%L_L=ANbc{FAa_~f{w~FG`iCYv zP;kAy{$cQCG=n@Uy1r&2Pa`PhrW8f=qG0)VG3Tr#{xA}A8F?>R{xTY6Nu;upJuBk* z4YZ}A^(g;y%_<>z#jBP5^+M1kXWzh`)YNCNnFk$x{j*KGVd&E`Qy0P0+V*8l(j literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b172b44d267d25993e7f8309db278557613d9ef GIT binary patch literal 1366 zcmcgr%Wm676eTHIq(?7Ha#JNiTcJRK1Vw2e-L*kczhW40Ya_}77!Vkcnrnjch(pX! z2JCJBp=-Ol?%EINk7(PKe<6#ecSt#6^8qEn;k{?>d(OyChgkUdzYfyBe9QXVDD`Ip zl^^lbf8fF`YH^!8!k#;{VH>%DvP(Bg*+scYy;9x~{(O@X+XC;Vb!*W!+BQXJ-laXn zHVk&N#l2gb_F?dgMTbCcwxJKhTL<^a%_q?3K5Cc+8nXv{^TJVYIDsK=J+#=TyuFe} zyn|8~v4_03k{)p~vCQ{$>-vi$$UsE}@NuqWA*WJ|#4mY9Q0JB zc_9^Qy|u=2DTRUb)jXDh@u-O6NCQG%yhsHH8q{Svg{jQW)8zaAXumn`(eBxC+$Nz4&=a z4h|>#FOSb&oxapFJe>cpu)F7&j&|9}>Cw7|yFU#<9xpw{xSTRZd#kF;CXh3yXhyvQIFA;hpdP~*jK{P_DAhE^ zpH;E2)PmuWl>dsFX1cV$%lQOU8j188_={A4^3ZMRB|^rL(3tFA`h3rj`zO#kN?jGttUBI`b_2pGEvhZLuRbX_yG3npe`a+&|V#a zjQ?(_4i;Q4@80fz7rw?gI-JcwW=V*pTof`7PjkrLMnXWrc8^0jRbg-m*=2Z=#-UCN z_$H607uc2#t8v|5Q!}F=zgqgw=aMf3{D4>4(g7~+ux(eb@3tGhWgt0lV4TZr1o z-Qnn+qr1F|sP~o2&|Th~8QHhFcK+i8Vo+WRe2^%a%0P;Nzc@YyH3%e!;T4u=Y?@2L zK?f>IQmN4D-dHS=Qe>2VH}|Dr+)F**(}0xYFCxJ~>9?j~kd08vP{5X#L|a0JVHAhM ze9Jy5W`;QP(+86{d&O*jOm5=>z6d}u+%Sz|FO6iZH_Sop!Rq7t!yCV0>2v+xy;+`x z3D9dX|2B;EU&7pbLHgw;)!_F?e=g$)+X9>^&~l*y*r*N62hDzq*jQ+hZgV>(oj}ej zId8Yhc!ycz4^28Q>j|asusKqNTOq`GkG6^_?2yhIs6m}Y0bpInQTXg%*6)@*868gj zdhYn-{7$7ym`>JrmiUif?k~yic((IudU$m3O2>H2|8IgHPcEdRaMKFUWLi!s_cUP zMzXY&Xdz1sIE>;HRO|_rU3bj26f|{q;n-Va;4dQqs*XNO zClu26ghuCU^uu;`Eq(#5y%0t*AIFP1N~%m*(_;QeCKVEwl@6Nr+3VSu?Xa8En=Knm zCi&f<>kQRUrty_rtCBkPR7$&53S$0;q1u>mK74+&^VEHfakP7K0x}L=Oyx9{iF=Sh z{HrGfq-->GWuV;Q8N_GqUgWzvO5tJR1*ce+c8jyA-u6s&!{ptv@qCV#TEGiDa6>=B l!Cr5f#oMqOHOsWW)a{npF$um_&HCFituL09Sp-@8(?6oN!QcP@ literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0856834c97a6a21a270efec2d0ca9bf511026ba9 GIT binary patch literal 3177 zcmcIm&2!sC6qjVjA8W^PoF-8|8k?{)C6Z<}+ ztBZp02V=%RGr)WSKgSgXfe5NVL?RhtUs6LNqeDQ4)frBQfsUwAPR|&zeq2SOK%dM2pL6kW=6kuE=%K#wk0 z=psSDfp;1@T_uS#$^Mlj=`xvJ5%3yG`P4d>&8-NhH%Xdn=0P*!J$;627C^(Ob#eo! zMW8mwl22vHvbPRovQK5n3Q(&Y$7GDkk~N^#x$LG-WyuCm*=u`@%90$&-r}-NpURTA zfnpJC5GG?(mLwYj``x+qG`mktYHKbfxq)rDR@X9eo#Dv|wR2sI(EJN_V0XkTM5xoX z^?_^Iz|D;~Jg_W-iJXgm$1*U{T&<%y6hzU^P&Wu=3*v^>p#~mwwt-0-+R*Gi!H%o- zs4q*BAw;2DCgYv&pfu2O&$4<3-O>j7R-d}I-p%t6GssiqL9x0t2I4+E%<9co! zdc#+9gOKl5;NH`3{v1Q;1MahQop&aQ!lu@zvX~QZ#~J5d45%FA-1{iP-8-_B3*Am^ zujNNU<|{1uF+-oBgqILL(@i3Wz(Q*Kz3~;3zVn{oF~BoB2%T%jkYesW%oo4=#>Gbr z-h^OT&_h#qM!9q!#UNyjovw^PlGy&}jV>n> z0G=<-+(XIn711qM?^Eo62kMOSdZNQ!w7X9(utCqMA%`Ku)b>%}8VcSogi$d~34)!@H^D=L zJE;5n_9!r4Vb(XFi75A9pv(hwzga#|a6_q=l?JXWjasW-RPdv+QZLktkB)IgIZ`UP zRc#z9#qwTRDW!!>0!0t&wJ()oGc9J)C|RrT7pi5o&@9)gX(@wHWUp2!DfM({vxbm& ze7v~V(DH%Ote1=Uak*NWuo_1*`-RrN0ycpxDV1gcjHM7NwhmeqFn*+f!LLz#RPd{4 z>8Ma?DY$ujs7#oPq3~|4R`INrtIdxec%hYQt=$S(VqrEQmg;^w%#tXT8MoWwNzAYi z4r*29I33v>qKKEnbyr|_I-bc-bcK!Slk}Q{qnNIJv3d_Bc(3qS*u~Hpz3}_ZESllh zp4Vf1M|vpkVwCDy{V|)n2``L8*2)h>^%K7d^(;d(dwI+5ZS|?(i z6`BS0l|JK05S=Wl3qBrK3cE_Bp;VjoW3GEBzW4?p>im>J{im=X=y$<@{$~gt1Rm<+ zDcF=C2n4hH<6WQN_FP{ces}a2%;Nf#0bjr_g8q=jumcZuZ5qcboE5nK3qwSGguV%5 zRR0S^cXC%zjEU97Se^6FGU#JA+Zi2-U?x@iDC}>qi*b|p1x@f#)JU#7dUDLw;BpA;!y=Ru4334uy-E^%9D)*FN|wp>O`jo zad5|*$WWqVAb5$gU3G3;L{0LeV5cAf{`gxh?zCI5#A%n~0_Xb+`4AOMk-jf|a(o0E_La`}|A%gEXGFTJny#JIK{{3Hj C!KWVp literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1c14599fb43613152ad8c48a4bf6e5214fe6c9b GIT binary patch literal 2398 zcmc&#OK&4Z5S|%3w$pZA&dYHUZwMf5KykD|NXvrII*E6cRbH|a5G_lsvAbg?8BdS8 z$B~>XC&Zm2$|5fCD>(B9kbLE|62E{0OLfmUp4bu`vE}wxUsrWKrn-htO(6q5neX$? zlUc*~LkaQE1PIUJC!d>!K@DtBlUlCXv2emvH~~0`Cp1n1PT{o16K*#S=;Uh?FS4a?47|+HU4bpK<<}PMqq`Nh zND)Zjoh7b{G<$7{A83v()2S7MtkUTSt!ZvXbF;uH6moO-oI-0f54-b#*6BioN)-Ij zCCx2Is6-2Z)G6y!aSD~_3ZSCqRwGoRYk<_r>r`W5Ny?-S7nu zc#FFm&FH$dz~hC3AF>eX-fuFy4iJH z%9O#RYd4uo{N^qQv##CsT3-_x*liYZNCu+Y3X~+@OBe=vx6OImWjnU->~y&2fMZ69 zV3K!5iN%fspx57)ZFg`KyUmj|bjsk@JK5 zQsi?e>De7tnAk8MPbw+s`K(}SX#wS^BYoHI5v^lsb{=I1#dEk)A9wt^kQl*Re+(x;00Sjq3VtRM^p^3_~uIjt_or&hgQWy#KlY9S`_P-TBY|J=} zNLIZ-^orXks{;(hd=@3HSud)<6q>lP-7YKW)Sp>T&CTCTv@&+!F$-+fH~BJ}l06x) z4vEU4Dw!STHh4(oy6%?zE0pa@CI;GJ@E`wc@B?4v3owjDUVMUPMyUTvX72_~w|FP! zZf|KUw=;FC&P==?J<&FIZLeMCqP^2*o=#{d+=3>S58EBO{nO5%`#|{7O1`X|9X3btnVGmSa$wo<0wz4$73#f*GbEa*IDNn_?XDZ(G=Vb+ZQ|G{6e*<~%{>S;AkbR+ zU*9UC8bhR&&ikRi5gk1vqv@=5GfFoa$Xa)huoj}ptu*mmh0;0`j_o?PjJ|MOCMLnS zpKiOnX}c0q7@*RgdOI95DPc-gJX-a-o#B*|INU$yevAaQ$Uwpag?=FWWcak}{S4uL z0Ap3+c>>ov3ge!fi<9v75dofwQ_Q138)6y)*2`a)`_CF`CdkIs72{sJ0ij$6+;5!v z%=^-IT^5kaVS~3sqkO}>o5qpTY)B_y+rHhphO}fOEbzl?{osa{{a!!wS%=fE%RYxL zG~^esBg5w81^`BoJ`XsO(~mQB;tQ@w~OBwLRV$ zr_%PyKLCky%Z-1)58;$6r%L<)#DV3tV;a*N7i`&n=9zgv=NYTDHEQA2_^~IyZ(7!G z`Jj5O;NVMq%rE#77PABqc0^*E)kuzOh#j_4UBMnF>_2HJzQEf!+#~fWa-6XKj-? z6<`7_(@bd`b(SNZDi!6Fc^gkv#D$;vQ{Mnm?sO(20owdPEQ@{+DiubsyCvMii=WrmC40Pg0I{z`S1}~-0+BHGC{)@^QS7UkhrWgFs#R4PY(DVU+&~& z-ry=N&JWw*D2_6XJ952Bn#|W3>r^R7#Lt#)VZz1h&u{lW^d^qw{puNE*B$wXTa_SkG!6&I7TwqzoTeR}te<2s)AbmS;d>-T3kKha3 tdCR=Om$T6#i@V`8YBq7+)twe`NF5QaQDWEZzieW^vu#T9yG@)w{su;(){_7L literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0cf1480b99054d90fb1c8cd26acb41026948cc40 GIT binary patch literal 1657 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 literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ef19bf06d177cfe7a9ee7256710f6959c2df053 GIT binary patch literal 4225 zcmcgv%~Bgj5MBv^#7ZDo@w5C3jALU5;b13@jpLX*LB^??sA_Aa9mL|*?q+vI zf{)2N z0^&U2B3VQ{0(gmBLp%z2nOsM#0se&CKwJQPldK>f1AL3zMm!GqQ?iP90&t0}A)W+$ zhkS-uhkdV;yNIU%-y@$Ro(B8{xesU1&(7fdOKav`f;^xPe^tl^RnH&M2Xy0I67=f% zSM-533nMsH+IRBUntPKB{~CfH?ZPwa z(!h+URrCWd@@k$_tTvC1Xi%(q7A^hFg1eHqP%RqP0^5(g07m)t$nZVSVWRM?QS}_d zG9$BUh7?5UYSVTs$|hvYW^`=$)pfwxs#$wOU8^;;9mjU-VyM;}o4Qe~ta)xkf9@Ct zunM;{YI(J01K4I{d#(`Xz_jn#EfbmJDDs6a?RfDzS%7tE*#?aQyC!%O4bQbn@yX(E##T# z%#X#np90hOX%I49_wN27{*&80!EwtAwNxH+f|sr`{1IaE*La7HbF4XasW zmpbrHXe}~qOP@fcswM$1B3@Ec;998n75i>x*T+iSIldhDUE1_*Z5eEXkD;DI(s&o? z6=)fYy3IzY_g}%<1+8{R9qPDU`T)3*U7w0=vUA#za|hT>iwB`+kXw+sTRdZF^JShOn`6k|%p6m8) zn`cP2Hr@?A-@W!BOEuaJbufNYp{{j?f}O~&NSyJ4@ND(*-V1^X%%$LIh595~>Nwly zUVW!kFSJ!P&0kum>&TszH~Rt;uSDNb3*GN8)TeOjjgF~tmOc?3FVvmg^7g^r{;QVU+SNTC}Hg+2`vo` zT+<0yj}4xP?uw*$=#klUB9b=1hGA8S)CmOOrb0vo0#_pg4wnCC9T_{?Ak8QX-2VBoGN$e{`&jsO1V7G^??0>OX6Ns!FV_omzd`AJ`+#$v- z_Ta{8k<*45t=ExZCyA@(8AUV$9ovL#!i|hDMz2E^`G&Jb8LQWE@r21q8YA8A;dVPs zw%b&6ufS$3T|EPm1~)y%h;u!NSjISKoN<FKEar?WSw7Hl$sRLc;a0JYNz5O-u-hW*nAxjcucy zbdm_ zxbi0Q{K`w8y5F0QLnC8zuj18$O6iokrHWm`4`w6S5u39ulrAh{!g_KM5w zQU>fx5B-Op?cRFp_vqS_f5C^Qvm_k}{(zF;V&=`hH?y-t(QbPNKJFjA^ujfaf3&mu ztfBKWe(G;rm_ZC?GK-rti!@AaH_*1pT4~#8H;Gf)YuueZBc5r1bGv?LkQVN3V!TZ@ z5L?sOZHGB`Ch5ZF?*{3Cce@2$=-pWu_imp2_S6H)d0!?%Bpe1|o(`0l z%NS^yO@&`p(DSOOkI~(odS@BIx(29IZF}*9=S@oP7^%H)y;iL>O*yD-v)}k;eebzn zYd!M)VRpU$!P|(%>@kFC_B%_ZQ{9DAlZIfjO(imcq zP1EF+TJ`?4?Bn6-IBJ%}?{9W%Rpk0BC)cexdb98jN0WoI@#))>Gxb3?>i@3u{ur~8 zbvijYKRXzW-yEIX|EBMMci~XVL`*5^Jn5*kD#~&qWJ4oex@8M9@#O z0%R6)ssAnF(t3)Ba|qLL&I{sD)SxVqO}(LC@v*#uK3;R_=#kTnC7VOWCLq(0r#HZk za6Y7i%!QM15rte~jz{aOeLb?jf>L1u!;Fox`Rwr1(%#BDV}ksdvtjOYPf zUgTuqQjr&_$Q0S4I2?5upTNykP!*vpNM{v-jQwTEHWpki5A@*2;2d>SaB%@5O9CwA zvJiQ2l0)`BxKJzCfJ?UreqO|-m*XIc&GU(2*UT9#*SnD)be#;>P% literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed64dc32fa471a43c59ef3970c351b29b8542c6f GIT binary patch literal 1567 zcmc&!&2QsG6t^AcqmwqDT^h6!4LxlSIHG%50Yap0c2#N1hNRWPDALIByn5YEJZ8p; z)L!`?IH%nBUqIY*<&=Mb0|%C8CvBo=#T8o~|K9I?%*>njM(*qo1E0drwcrTRpNX*k zWKsAAKm8jH+@J4` zo3sSwpA1?7GOa=hD)$!Jk!cM|JdYAahRk)H7j7)Y`4&_-`Pg8)ytqV9_%@;)Jsho8lrm2?Jm(C-|8F5clhLP{}qIw+!%N>QZkmF6wTrI>IziTlN_8m zZrM0AXM}_HR1n2dp;TT;ERs?rl)fDerC{8R-Jz=isr+yp2o6e5O~W9c`cnD=T5c4y z^sSCz#3EO@BZxsc>D)E4Fmcf2;FwhUsa5yENY@;aRbv6VVKy_*ibwm-%HG*9?xEem z_oV&-x>g|t4FWve3q~@ZZPi+YJg!AItTg)5|A>C@9Vu@_u5A-L#N8|-)=BYQ97pUO zxR?P9nN0JP)W=G&AIG3>SDSBS66NuPlsq|FoAh{hV~TEaKwXn|mfQBFa6{jb%5V7) zrYUSKRG2`$NHnNP;DIN@tHA$KuS>sJ_N#XHY?w(2c5ME^&k zuWagrCYI=7W0q%(OOG*HUS=ar4mO0c62Br_6~4+WBCVLT6_mZ8H`;+VHUc_9h=m`z zLM7J=EwE*?(EKS}xnmL2Ji{1_4{5c{c^_2Zir^0T%Rqq2q0cPu3psR!M&}3g$#K$h z=b*LgLp$W1a6CGF>|9M3`U@GYk!ZGb(6q)b`yF<|RtMdm6_||TK!%#u8CKA88INRj zoz$_bVp?9OAmqOqs*DRxhrjvB7lTWTqX*a5AVYtEOSy?tHz0K@6Wou6Kjm(t|}RKX{WQmFh&dv%*&+$?*>O8qd|xFL1Ey+vege*oBN` g+V6ArwrQI=L?lB@D`Wj*nbv#DBId(eGVQ{KO!TW+42)arABHVpd`5b=9`_Lot=@Jo5aG$|2arLuUppd zMp%EUD13>Z{tXvyQH$H$5%$!f72DtnVwYA+>>{pFuf$d1PwSM}7I@biHx_L`)%>qF zdF{rgO=$gK(Ke9lEoegf#=(8$I)EnkP(sg8Ip5~~g`+61Lz|QLEVjcpmgp95AlgLk zHb?6c-Qg`n?ULJCqC31kw9K~~Tzzx|DX1_9-p!QEWh6y+TudgQx{>72o8$4UU3*42 z=tw15E)`0xmBcbBg`xE8=~xQJ!#o^^8j$kFMItyT4Yp;G+p(0ffW0tF_6i-w&?^H5 zWWo24zk5!qXGRt5kcNWqibTN_(p-1!ZsmSG_?T2xAwYL(C~iEs)mxeNO1o3k2KUGZ z=$RK0D3;1RnIut|Co*Nxw_%!s=y+ZGe*Nw%QeWA$iLXIGgvY~Js1CZM6AB@}XGN+Y zPIL|mIE#?e9S3*#!TV%KUnCjRpe~aLSR~V2Nztho?Y+$UwY6I10An+}$_ z$5Mo8+>OuwDc)!r3S}ml`fS;&)H{Sp zScsf@41F*@rdxf^hoF*BBv-(nCIVCqZDw99jsHa-?wgMP3bZMGKjnk8m>#|z z98DMc7cyHTaof^B(*R2{U>pWM{$HteQN@O3KA-;V9P MaU3HNWZggi0i0N_)Bpeg literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc b/ocr/.venv/Lib/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b7198c722d1ada2d80c84f693e5984313dbc02e GIT binary patch literal 1985 zcmcgsOKzO;cmEDkVr)WsUV=wtDs(5HEn=V#9(`-!Og^D%{Z0X zEr_4Mx@E_TKL9&c{Df>-{hxCB@x#IDOUccbG9tA3|plcDPxt1$D%06)5Zg;i)CR#1hd&R?Y~LqmQ;5i@CF zO(U<-;@o#dlp6^9)|2qc#7B4!2U730i-FNJ*l>55rH1<6z(T_p%S!KaxWe# z?lO7dI!o>H_7IgEFe$&?%6nI9i3X3Oh;MJ~e?CFGd)=Mm&e6%?u^Pf@{vQQSpF=%dAiYkv zv)wu9oP0I?9+2q|AzV(t$EOE-)87DXu1|7=P~i}Q%k!^V94Bc+Z1L%rFh(?7Au%!= zM=~A3_eK(~-y>|fUcjVhaT$(woG0^vg>$>?%o_6m=Lm2RYRhaG@J^Hu@&d9DHCrU= zhntS8Ta-fcxE6P>7~OX{lQ|%mW7FSSeVLjRohvfWhY)}ZBReGi$=ykwh-m2G8d0}0Zoz62RDmS}_!o&d=Fy)uSq8zg*WX|7Z1zvV zulncbOn8GnNErsg?;rZi`@-U!1!Sw!7mn<=E|_=GKXC27as&3RZ#hGl3#uP&+`Wbl zx2ok|PVyg(1chPzu?{8G`|wKFih6YC)5TQYF!c0`Y`UnY^()lj{A1|G3&TKq Kc$f6_U;hGqxrr+P literal 0 HcmV?d00001 diff --git a/ocr/.venv/Lib/site-packages/google/api/annotations.proto b/ocr/.venv/Lib/site-packages/google/api/annotations.proto new file mode 100644 index 00000000..417edd8f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/annotations.proto @@ -0,0 +1,31 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/http.proto"; +import "google/protobuf/descriptor.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "AnnotationsProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.MethodOptions { + // See `HttpRule`. + HttpRule http = 72295728; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.py b/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.py new file mode 100644 index 00000000..cb76f1db --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/annotations.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import http_pb2 as google_dot_api_dot_http__pb2 +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1cgoogle/api/annotations.proto\x12\ngoogle.api\x1a\x15google/api/http.proto\x1a google/protobuf/descriptor.proto:E\n\x04http\x12\x1e.google.protobuf.MethodOptions\x18\xb0\xca\xbc" \x01(\x0b\x32\x14.google.api.HttpRuleBn\n\x0e\x63om.google.apiB\x10\x41nnotationsProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.annotations_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\020AnnotationsProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.pyi new file mode 100644 index 00000000..41b6de69 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/annotations_pb2.pyi @@ -0,0 +1,23 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar + +from google.api import http_pb2 as _http_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 + +DESCRIPTOR: _descriptor.FileDescriptor +HTTP_FIELD_NUMBER: _ClassVar[int] +http: _descriptor.FieldDescriptor diff --git a/ocr/.venv/Lib/site-packages/google/api/auth.proto b/ocr/.venv/Lib/site-packages/google/api/auth.proto new file mode 100644 index 00000000..cb640bd6 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/auth.proto @@ -0,0 +1,237 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "AuthProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Authentication` defines the authentication configuration for API methods +// provided by an API service. +// +// Example: +// +// name: calendar.googleapis.com +// authentication: +// providers: +// - id: google_calendar_auth +// jwks_uri: https://www.googleapis.com/oauth2/v1/certs +// issuer: https://securetoken.google.com +// rules: +// - selector: "*" +// requirements: +// provider_id: google_calendar_auth +// - selector: google.calendar.Delegate +// oauth: +// canonical_scopes: https://www.googleapis.com/auth/calendar.read +message Authentication { + // A list of authentication rules that apply to individual API methods. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated AuthenticationRule rules = 3; + + // Defines a set of authentication providers that a service supports. + repeated AuthProvider providers = 4; +} + +// Authentication rules for the service. +// +// By default, if a method has any authentication requirements, every request +// must include a valid credential matching one of the requirements. +// It's an error to include more than one kind of credential in a single +// request. +// +// If a method doesn't have any auth requirements, request credentials will be +// ignored. +message AuthenticationRule { + // Selects the methods to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // The requirements for OAuth credentials. + OAuthRequirements oauth = 2; + + // If true, the service accepts API keys without any other credential. + // This flag only applies to HTTP and gRPC requests. + bool allow_without_credential = 5; + + // Requirements for additional authentication providers. + repeated AuthRequirement requirements = 7; +} + +// Specifies a location to extract JWT from an API request. +message JwtLocation { + oneof in { + // Specifies HTTP header name to extract JWT token. + string header = 1; + + // Specifies URL query parameter name to extract JWT token. + string query = 2; + + // Specifies cookie name to extract JWT token. + string cookie = 4; + } + + // The value prefix. The value format is "value_prefix{token}" + // Only applies to "in" header type. Must be empty for "in" query type. + // If not empty, the header value has to match (case sensitive) this prefix. + // If not matched, JWT will not be extracted. If matched, JWT will be + // extracted after the prefix is removed. + // + // For example, for "Authorization: Bearer {JWT}", + // value_prefix="Bearer " with a space at the end. + string value_prefix = 3; +} + +// Configuration for an authentication provider, including support for +// [JSON Web Token +// (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32). +message AuthProvider { + // The unique identifier of the auth provider. It will be referred to by + // `AuthRequirement.provider_id`. + // + // Example: "bookstore_auth". + string id = 1; + + // Identifies the principal that issued the JWT. See + // https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1 + // Usually a URL or an email address. + // + // Example: https://securetoken.google.com + // Example: 1234567-compute@developer.gserviceaccount.com + string issuer = 2; + + // URL of the provider's public key set to validate signature of the JWT. See + // [OpenID + // Discovery](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata). + // Optional if the key set document: + // - can be retrieved from + // [OpenID + // Discovery](https://openid.net/specs/openid-connect-discovery-1_0.html) + // of the issuer. + // - can be inferred from the email domain of the issuer (e.g. a Google + // service account). + // + // Example: https://www.googleapis.com/oauth2/v1/certs + string jwks_uri = 3; + + // The list of JWT + // [audiences](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.3). + // that are allowed to access. A JWT containing any of these audiences will + // be accepted. When this setting is absent, JWTs with audiences: + // - "https://[service.name]/[google.protobuf.Api.name]" + // - "https://[service.name]/" + // will be accepted. + // For example, if no audiences are in the setting, LibraryService API will + // accept JWTs with the following audiences: + // - + // https://library-example.googleapis.com/google.example.library.v1.LibraryService + // - https://library-example.googleapis.com/ + // + // Example: + // + // audiences: bookstore_android.apps.googleusercontent.com, + // bookstore_web.apps.googleusercontent.com + string audiences = 4; + + // Redirect URL if JWT token is required but not present or is expired. + // Implement authorizationUrl of securityDefinitions in OpenAPI spec. + string authorization_url = 5; + + // Defines the locations to extract the JWT. For now it is only used by the + // Cloud Endpoints to store the OpenAPI extension [x-google-jwt-locations] + // (https://cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-locations) + // + // JWT locations can be one of HTTP headers, URL query parameters or + // cookies. The rule is that the first match wins. + // + // If not specified, default to use following 3 locations: + // 1) Authorization: Bearer + // 2) x-goog-iap-jwt-assertion + // 3) access_token query parameter + // + // Default locations can be specified as followings: + // jwt_locations: + // - header: Authorization + // value_prefix: "Bearer " + // - header: x-goog-iap-jwt-assertion + // - query: access_token + repeated JwtLocation jwt_locations = 6; +} + +// OAuth scopes are a way to define data and permissions on data. For example, +// there are scopes defined for "Read-only access to Google Calendar" and +// "Access to Cloud Platform". Users can consent to a scope for an application, +// giving it permission to access that data on their behalf. +// +// OAuth scope specifications should be fairly coarse grained; a user will need +// to see and understand the text description of what your scope means. +// +// In most cases: use one or at most two OAuth scopes for an entire family of +// products. If your product has multiple APIs, you should probably be sharing +// the OAuth scope across all of those APIs. +// +// When you need finer grained OAuth consent screens: talk with your product +// management about how developers will use them in practice. +// +// Please note that even though each of the canonical scopes is enough for a +// request to be accepted and passed to the backend, a request can still fail +// due to the backend requiring additional scopes or permissions. +message OAuthRequirements { + // The list of publicly documented OAuth scopes that are allowed access. An + // OAuth token containing any of these scopes will be accepted. + // + // Example: + // + // canonical_scopes: https://www.googleapis.com/auth/calendar, + // https://www.googleapis.com/auth/calendar.read + string canonical_scopes = 1; +} + +// User-defined authentication requirements, including support for +// [JSON Web Token +// (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32). +message AuthRequirement { + // [id][google.api.AuthProvider.id] from authentication provider. + // + // Example: + // + // provider_id: bookstore_auth + string provider_id = 1; + + // NOTE: This will be deprecated soon, once AuthProvider.audiences is + // implemented and accepted in all the runtime components. + // + // The list of JWT + // [audiences](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.3). + // that are allowed to access. A JWT containing any of these audiences will + // be accepted. When this setting is absent, only JWTs with audience + // "https://[Service_name][google.api.Service.name]/[API_name][google.protobuf.Api.name]" + // will be accepted. For example, if no audiences are in the setting, + // LibraryService API will only accept JWTs with the following audience + // "https://library-example.googleapis.com/google.example.library.v1.LibraryService". + // + // Example: + // + // audiences: bookstore_android.apps.googleusercontent.com, + // bookstore_web.apps.googleusercontent.com + string audiences = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/auth_pb2.py b/ocr/.venv/Lib/site-packages/google/api/auth_pb2.py new file mode 100644 index 00000000..0ae68764 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/auth_pb2.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/auth.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x15google/api/auth.proto\x12\ngoogle.api"l\n\x0e\x41uthentication\x12-\n\x05rules\x18\x03 \x03(\x0b\x32\x1e.google.api.AuthenticationRule\x12+\n\tproviders\x18\x04 \x03(\x0b\x32\x18.google.api.AuthProvider"\xa9\x01\n\x12\x41uthenticationRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12,\n\x05oauth\x18\x02 \x01(\x0b\x32\x1d.google.api.OAuthRequirements\x12 \n\x18\x61llow_without_credential\x18\x05 \x01(\x08\x12\x31\n\x0crequirements\x18\x07 \x03(\x0b\x32\x1b.google.api.AuthRequirement"^\n\x0bJwtLocation\x12\x10\n\x06header\x18\x01 \x01(\tH\x00\x12\x0f\n\x05query\x18\x02 \x01(\tH\x00\x12\x10\n\x06\x63ookie\x18\x04 \x01(\tH\x00\x12\x14\n\x0cvalue_prefix\x18\x03 \x01(\tB\x04\n\x02in"\x9a\x01\n\x0c\x41uthProvider\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0e\n\x06issuer\x18\x02 \x01(\t\x12\x10\n\x08jwks_uri\x18\x03 \x01(\t\x12\x11\n\taudiences\x18\x04 \x01(\t\x12\x19\n\x11\x61uthorization_url\x18\x05 \x01(\t\x12.\n\rjwt_locations\x18\x06 \x03(\x0b\x32\x17.google.api.JwtLocation"-\n\x11OAuthRequirements\x12\x18\n\x10\x63\x61nonical_scopes\x18\x01 \x01(\t"9\n\x0f\x41uthRequirement\x12\x13\n\x0bprovider_id\x18\x01 \x01(\t\x12\x11\n\taudiences\x18\x02 \x01(\tBk\n\x0e\x63om.google.apiB\tAuthProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.auth_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\tAuthProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_AUTHENTICATION"]._serialized_start = 37 + _globals["_AUTHENTICATION"]._serialized_end = 145 + _globals["_AUTHENTICATIONRULE"]._serialized_start = 148 + _globals["_AUTHENTICATIONRULE"]._serialized_end = 317 + _globals["_JWTLOCATION"]._serialized_start = 319 + _globals["_JWTLOCATION"]._serialized_end = 413 + _globals["_AUTHPROVIDER"]._serialized_start = 416 + _globals["_AUTHPROVIDER"]._serialized_end = 570 + _globals["_OAUTHREQUIREMENTS"]._serialized_start = 572 + _globals["_OAUTHREQUIREMENTS"]._serialized_end = 617 + _globals["_AUTHREQUIREMENT"]._serialized_start = 619 + _globals["_AUTHREQUIREMENT"]._serialized_end = 676 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/auth_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/auth_pb2.pyi new file mode 100644 index 00000000..660d9960 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/auth_pb2.pyi @@ -0,0 +1,120 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Authentication(_message.Message): + __slots__ = ("rules", "providers") + RULES_FIELD_NUMBER: _ClassVar[int] + PROVIDERS_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[AuthenticationRule] + providers: _containers.RepeatedCompositeFieldContainer[AuthProvider] + def __init__( + self, + rules: _Optional[_Iterable[_Union[AuthenticationRule, _Mapping]]] = ..., + providers: _Optional[_Iterable[_Union[AuthProvider, _Mapping]]] = ..., + ) -> None: ... + +class AuthenticationRule(_message.Message): + __slots__ = ("selector", "oauth", "allow_without_credential", "requirements") + SELECTOR_FIELD_NUMBER: _ClassVar[int] + OAUTH_FIELD_NUMBER: _ClassVar[int] + ALLOW_WITHOUT_CREDENTIAL_FIELD_NUMBER: _ClassVar[int] + REQUIREMENTS_FIELD_NUMBER: _ClassVar[int] + selector: str + oauth: OAuthRequirements + allow_without_credential: bool + requirements: _containers.RepeatedCompositeFieldContainer[AuthRequirement] + def __init__( + self, + selector: _Optional[str] = ..., + oauth: _Optional[_Union[OAuthRequirements, _Mapping]] = ..., + allow_without_credential: bool = ..., + requirements: _Optional[_Iterable[_Union[AuthRequirement, _Mapping]]] = ..., + ) -> None: ... + +class JwtLocation(_message.Message): + __slots__ = ("header", "query", "cookie", "value_prefix") + HEADER_FIELD_NUMBER: _ClassVar[int] + QUERY_FIELD_NUMBER: _ClassVar[int] + COOKIE_FIELD_NUMBER: _ClassVar[int] + VALUE_PREFIX_FIELD_NUMBER: _ClassVar[int] + header: str + query: str + cookie: str + value_prefix: str + def __init__( + self, + header: _Optional[str] = ..., + query: _Optional[str] = ..., + cookie: _Optional[str] = ..., + value_prefix: _Optional[str] = ..., + ) -> None: ... + +class AuthProvider(_message.Message): + __slots__ = ( + "id", + "issuer", + "jwks_uri", + "audiences", + "authorization_url", + "jwt_locations", + ) + ID_FIELD_NUMBER: _ClassVar[int] + ISSUER_FIELD_NUMBER: _ClassVar[int] + JWKS_URI_FIELD_NUMBER: _ClassVar[int] + AUDIENCES_FIELD_NUMBER: _ClassVar[int] + AUTHORIZATION_URL_FIELD_NUMBER: _ClassVar[int] + JWT_LOCATIONS_FIELD_NUMBER: _ClassVar[int] + id: str + issuer: str + jwks_uri: str + audiences: str + authorization_url: str + jwt_locations: _containers.RepeatedCompositeFieldContainer[JwtLocation] + def __init__( + self, + id: _Optional[str] = ..., + issuer: _Optional[str] = ..., + jwks_uri: _Optional[str] = ..., + audiences: _Optional[str] = ..., + authorization_url: _Optional[str] = ..., + jwt_locations: _Optional[_Iterable[_Union[JwtLocation, _Mapping]]] = ..., + ) -> None: ... + +class OAuthRequirements(_message.Message): + __slots__ = ("canonical_scopes",) + CANONICAL_SCOPES_FIELD_NUMBER: _ClassVar[int] + canonical_scopes: str + def __init__(self, canonical_scopes: _Optional[str] = ...) -> None: ... + +class AuthRequirement(_message.Message): + __slots__ = ("provider_id", "audiences") + PROVIDER_ID_FIELD_NUMBER: _ClassVar[int] + AUDIENCES_FIELD_NUMBER: _ClassVar[int] + provider_id: str + audiences: str + def __init__( + self, provider_id: _Optional[str] = ..., audiences: _Optional[str] = ... + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/backend.proto b/ocr/.venv/Lib/site-packages/google/api/backend.proto new file mode 100644 index 00000000..8d2206e5 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/backend.proto @@ -0,0 +1,185 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "BackendProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Backend` defines the backend configuration for a service. +message Backend { + // A list of API backend rules that apply to individual API methods. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated BackendRule rules = 1; +} + +// A backend rule provides configuration for an individual API element. +message BackendRule { + // Path Translation specifies how to combine the backend address with the + // request path in order to produce the appropriate forwarding URL for the + // request. + // + // Path Translation is applicable only to HTTP-based backends. Backends which + // do not accept requests over HTTP/HTTPS should leave `path_translation` + // unspecified. + enum PathTranslation { + PATH_TRANSLATION_UNSPECIFIED = 0; + + // Use the backend address as-is, with no modification to the path. If the + // URL pattern contains variables, the variable names and values will be + // appended to the query string. If a query string parameter and a URL + // pattern variable have the same name, this may result in duplicate keys in + // the query string. + // + // # Examples + // + // Given the following operation config: + // + // Method path: /api/company/{cid}/user/{uid} + // Backend address: https://example.cloudfunctions.net/getUser + // + // Requests to the following request paths will call the backend at the + // translated path: + // + // Request path: /api/company/widgetworks/user/johndoe + // Translated: + // https://example.cloudfunctions.net/getUser?cid=widgetworks&uid=johndoe + // + // Request path: /api/company/widgetworks/user/johndoe?timezone=EST + // Translated: + // https://example.cloudfunctions.net/getUser?timezone=EST&cid=widgetworks&uid=johndoe + CONSTANT_ADDRESS = 1; + + // The request path will be appended to the backend address. + // + // # Examples + // + // Given the following operation config: + // + // Method path: /api/company/{cid}/user/{uid} + // Backend address: https://example.appspot.com + // + // Requests to the following request paths will call the backend at the + // translated path: + // + // Request path: /api/company/widgetworks/user/johndoe + // Translated: + // https://example.appspot.com/api/company/widgetworks/user/johndoe + // + // Request path: /api/company/widgetworks/user/johndoe?timezone=EST + // Translated: + // https://example.appspot.com/api/company/widgetworks/user/johndoe?timezone=EST + APPEND_PATH_TO_ADDRESS = 2; + } + + // Selects the methods to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // The address of the API backend. + // + // The scheme is used to determine the backend protocol and security. + // The following schemes are accepted: + // + // SCHEME PROTOCOL SECURITY + // http:// HTTP None + // https:// HTTP TLS + // grpc:// gRPC None + // grpcs:// gRPC TLS + // + // It is recommended to explicitly include a scheme. Leaving out the scheme + // may cause constrasting behaviors across platforms. + // + // If the port is unspecified, the default is: + // - 80 for schemes without TLS + // - 443 for schemes with TLS + // + // For HTTP backends, use [protocol][google.api.BackendRule.protocol] + // to specify the protocol version. + string address = 2; + + // The number of seconds to wait for a response from a request. The default + // varies based on the request protocol and deployment environment. + double deadline = 3; + + // Deprecated, do not use. + double min_deadline = 4 [deprecated = true]; + + // The number of seconds to wait for the completion of a long running + // operation. The default is no deadline. + double operation_deadline = 5; + + PathTranslation path_translation = 6; + + // Authentication settings used by the backend. + // + // These are typically used to provide service management functionality to + // a backend served on a publicly-routable URL. The `authentication` + // details should match the authentication behavior used by the backend. + // + // For example, specifying `jwt_audience` implies that the backend expects + // authentication via a JWT. + // + // When authentication is unspecified, the resulting behavior is the same + // as `disable_auth` set to `true`. + // + // Refer to https://developers.google.com/identity/protocols/OpenIDConnect for + // JWT ID token. + oneof authentication { + // The JWT audience is used when generating a JWT ID token for the backend. + // This ID token will be added in the HTTP "authorization" header, and sent + // to the backend. + string jwt_audience = 7; + + // When disable_auth is true, a JWT ID token won't be generated and the + // original "Authorization" HTTP header will be preserved. If the header is + // used to carry the original token and is expected by the backend, this + // field must be set to true to preserve the header. + bool disable_auth = 8; + } + + // The protocol used for sending a request to the backend. + // The supported values are "http/1.1" and "h2". + // + // The default value is inferred from the scheme in the + // [address][google.api.BackendRule.address] field: + // + // SCHEME PROTOCOL + // http:// http/1.1 + // https:// http/1.1 + // grpc:// h2 + // grpcs:// h2 + // + // For secure HTTP backends (https://) that support HTTP/2, set this field + // to "h2" for improved performance. + // + // Configuring this field to non-default values is only supported for secure + // HTTP backends. This field will be ignored for all other backends. + // + // See + // https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids + // for more details on the supported values. + string protocol = 9; + + // The map between request protocol and the backend address. + map overrides_by_request_protocol = 10; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/backend_pb2.py b/ocr/.venv/Lib/site-packages/google/api/backend_pb2.py new file mode 100644 index 00000000..c23b3534 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/backend_pb2.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/backend.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/backend.proto\x12\ngoogle.api"1\n\x07\x42\x61\x63kend\x12&\n\x05rules\x18\x01 \x03(\x0b\x32\x17.google.api.BackendRule"\xb2\x04\n\x0b\x42\x61\x63kendRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x64ress\x18\x02 \x01(\t\x12\x10\n\x08\x64\x65\x61\x64line\x18\x03 \x01(\x01\x12\x18\n\x0cmin_deadline\x18\x04 \x01(\x01\x42\x02\x18\x01\x12\x1a\n\x12operation_deadline\x18\x05 \x01(\x01\x12\x41\n\x10path_translation\x18\x06 \x01(\x0e\x32\'.google.api.BackendRule.PathTranslation\x12\x16\n\x0cjwt_audience\x18\x07 \x01(\tH\x00\x12\x16\n\x0c\x64isable_auth\x18\x08 \x01(\x08H\x00\x12\x10\n\x08protocol\x18\t \x01(\t\x12^\n\x1doverrides_by_request_protocol\x18\n \x03(\x0b\x32\x37.google.api.BackendRule.OverridesByRequestProtocolEntry\x1aZ\n\x1fOverridesByRequestProtocolEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.google.api.BackendRule:\x02\x38\x01"e\n\x0fPathTranslation\x12 \n\x1cPATH_TRANSLATION_UNSPECIFIED\x10\x00\x12\x14\n\x10\x43ONSTANT_ADDRESS\x10\x01\x12\x1a\n\x16\x41PPEND_PATH_TO_ADDRESS\x10\x02\x42\x10\n\x0e\x61uthenticationBn\n\x0e\x63om.google.apiB\x0c\x42\x61\x63kendProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.backend_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014BackendProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_BACKENDRULE_OVERRIDESBYREQUESTPROTOCOLENTRY"]._options = None + _globals[ + "_BACKENDRULE_OVERRIDESBYREQUESTPROTOCOLENTRY" + ]._serialized_options = b"8\001" + _globals["_BACKENDRULE"].fields_by_name["min_deadline"]._options = None + _globals["_BACKENDRULE"].fields_by_name[ + "min_deadline" + ]._serialized_options = b"\030\001" + _globals["_BACKEND"]._serialized_start = 40 + _globals["_BACKEND"]._serialized_end = 89 + _globals["_BACKENDRULE"]._serialized_start = 92 + _globals["_BACKENDRULE"]._serialized_end = 654 + _globals["_BACKENDRULE_OVERRIDESBYREQUESTPROTOCOLENTRY"]._serialized_start = 443 + _globals["_BACKENDRULE_OVERRIDESBYREQUESTPROTOCOLENTRY"]._serialized_end = 533 + _globals["_BACKENDRULE_PATHTRANSLATION"]._serialized_start = 535 + _globals["_BACKENDRULE_PATHTRANSLATION"]._serialized_end = 636 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/backend_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/backend_pb2.pyi new file mode 100644 index 00000000..ad2aec0b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/backend_pb2.pyi @@ -0,0 +1,102 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class Backend(_message.Message): + __slots__ = ("rules",) + RULES_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[BackendRule] + def __init__( + self, rules: _Optional[_Iterable[_Union[BackendRule, _Mapping]]] = ... + ) -> None: ... + +class BackendRule(_message.Message): + __slots__ = ( + "selector", + "address", + "deadline", + "min_deadline", + "operation_deadline", + "path_translation", + "jwt_audience", + "disable_auth", + "protocol", + "overrides_by_request_protocol", + ) + + class PathTranslation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + PATH_TRANSLATION_UNSPECIFIED: _ClassVar[BackendRule.PathTranslation] + CONSTANT_ADDRESS: _ClassVar[BackendRule.PathTranslation] + APPEND_PATH_TO_ADDRESS: _ClassVar[BackendRule.PathTranslation] + PATH_TRANSLATION_UNSPECIFIED: BackendRule.PathTranslation + CONSTANT_ADDRESS: BackendRule.PathTranslation + APPEND_PATH_TO_ADDRESS: BackendRule.PathTranslation + + class OverridesByRequestProtocolEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: BackendRule + def __init__( + self, + key: _Optional[str] = ..., + value: _Optional[_Union[BackendRule, _Mapping]] = ..., + ) -> None: ... + SELECTOR_FIELD_NUMBER: _ClassVar[int] + ADDRESS_FIELD_NUMBER: _ClassVar[int] + DEADLINE_FIELD_NUMBER: _ClassVar[int] + MIN_DEADLINE_FIELD_NUMBER: _ClassVar[int] + OPERATION_DEADLINE_FIELD_NUMBER: _ClassVar[int] + PATH_TRANSLATION_FIELD_NUMBER: _ClassVar[int] + JWT_AUDIENCE_FIELD_NUMBER: _ClassVar[int] + DISABLE_AUTH_FIELD_NUMBER: _ClassVar[int] + PROTOCOL_FIELD_NUMBER: _ClassVar[int] + OVERRIDES_BY_REQUEST_PROTOCOL_FIELD_NUMBER: _ClassVar[int] + selector: str + address: str + deadline: float + min_deadline: float + operation_deadline: float + path_translation: BackendRule.PathTranslation + jwt_audience: str + disable_auth: bool + protocol: str + overrides_by_request_protocol: _containers.MessageMap[str, BackendRule] + def __init__( + self, + selector: _Optional[str] = ..., + address: _Optional[str] = ..., + deadline: _Optional[float] = ..., + min_deadline: _Optional[float] = ..., + operation_deadline: _Optional[float] = ..., + path_translation: _Optional[_Union[BackendRule.PathTranslation, str]] = ..., + jwt_audience: _Optional[str] = ..., + disable_auth: bool = ..., + protocol: _Optional[str] = ..., + overrides_by_request_protocol: _Optional[_Mapping[str, BackendRule]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/billing.proto b/ocr/.venv/Lib/site-packages/google/api/billing.proto new file mode 100644 index 00000000..7c822742 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/billing.proto @@ -0,0 +1,77 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "BillingProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Billing related configuration of the service. +// +// The following example shows how to configure monitored resources and metrics +// for billing, `consumer_destinations` is the only supported destination and +// the monitored resources need at least one label key +// `cloud.googleapis.com/location` to indicate the location of the billing +// usage, using different monitored resources between monitoring and billing is +// recommended so they can be evolved independently: +// +// +// monitored_resources: +// - type: library.googleapis.com/billing_branch +// labels: +// - key: cloud.googleapis.com/location +// description: | +// Predefined label to support billing location restriction. +// - key: city +// description: | +// Custom label to define the city where the library branch is located +// in. +// - key: name +// description: Custom label to define the name of the library branch. +// metrics: +// - name: library.googleapis.com/book/borrowed_count +// metric_kind: DELTA +// value_type: INT64 +// unit: "1" +// billing: +// consumer_destinations: +// - monitored_resource: library.googleapis.com/billing_branch +// metrics: +// - library.googleapis.com/book/borrowed_count +message Billing { + // Configuration of a specific billing destination (Currently only support + // bill against consumer project). + message BillingDestination { + // The monitored resource type. The type must be defined in + // [Service.monitored_resources][google.api.Service.monitored_resources] + // section. + string monitored_resource = 1; + + // Names of the metrics to report to this billing destination. + // Each name must be defined in + // [Service.metrics][google.api.Service.metrics] section. + repeated string metrics = 2; + } + + // Billing configurations for sending metrics to the consumer project. + // There can be multiple consumer destinations per service, each one must have + // a different monitored resource type. A metric can be used in at most + // one consumer destination. + repeated BillingDestination consumer_destinations = 8; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/billing_pb2.py b/ocr/.venv/Lib/site-packages/google/api/billing_pb2.py new file mode 100644 index 00000000..3ceb3f24 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/billing_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/billing.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/billing.proto\x12\ngoogle.api"\x93\x01\n\x07\x42illing\x12\x45\n\x15\x63onsumer_destinations\x18\x08 \x03(\x0b\x32&.google.api.Billing.BillingDestination\x1a\x41\n\x12\x42illingDestination\x12\x1a\n\x12monitored_resource\x18\x01 \x01(\t\x12\x0f\n\x07metrics\x18\x02 \x03(\tBn\n\x0e\x63om.google.apiB\x0c\x42illingProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.billing_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014BillingProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_BILLING"]._serialized_start = 41 + _globals["_BILLING"]._serialized_end = 188 + _globals["_BILLING_BILLINGDESTINATION"]._serialized_start = 123 + _globals["_BILLING_BILLINGDESTINATION"]._serialized_end = 188 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/billing_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/billing_pb2.pyi new file mode 100644 index 00000000..5d3a013e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/billing_pb2.pyi @@ -0,0 +1,50 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Billing(_message.Message): + __slots__ = ("consumer_destinations",) + + class BillingDestination(_message.Message): + __slots__ = ("monitored_resource", "metrics") + MONITORED_RESOURCE_FIELD_NUMBER: _ClassVar[int] + METRICS_FIELD_NUMBER: _ClassVar[int] + monitored_resource: str + metrics: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + monitored_resource: _Optional[str] = ..., + metrics: _Optional[_Iterable[str]] = ..., + ) -> None: ... + CONSUMER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + consumer_destinations: _containers.RepeatedCompositeFieldContainer[ + Billing.BillingDestination + ] + def __init__( + self, + consumer_destinations: _Optional[ + _Iterable[_Union[Billing.BillingDestination, _Mapping]] + ] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/client.proto b/ocr/.venv/Lib/site-packages/google/api/client.proto new file mode 100644 index 00000000..3d692560 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/client.proto @@ -0,0 +1,486 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/launch_stage.proto"; +import "google/protobuf/descriptor.proto"; +import "google/protobuf/duration.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; +option java_multiple_files = true; +option java_outer_classname = "ClientProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +extend google.protobuf.MethodOptions { + // A definition of a client library method signature. + // + // In client libraries, each proto RPC corresponds to one or more methods + // which the end user is able to call, and calls the underlying RPC. + // Normally, this method receives a single argument (a struct or instance + // corresponding to the RPC request object). Defining this field will + // add one or more overloads providing flattened or simpler method signatures + // in some languages. + // + // The fields on the method signature are provided as a comma-separated + // string. + // + // For example, the proto RPC and annotation: + // + // rpc CreateSubscription(CreateSubscriptionRequest) + // returns (Subscription) { + // option (google.api.method_signature) = "name,topic"; + // } + // + // Would add the following Java overload (in addition to the method accepting + // the request object): + // + // public final Subscription createSubscription(String name, String topic) + // + // The following backwards-compatibility guidelines apply: + // + // * Adding this annotation to an unannotated method is backwards + // compatible. + // * Adding this annotation to a method which already has existing + // method signature annotations is backwards compatible if and only if + // the new method signature annotation is last in the sequence. + // * Modifying or removing an existing method signature annotation is + // a breaking change. + // * Re-ordering existing method signature annotations is a breaking + // change. + repeated string method_signature = 1051; +} + +extend google.protobuf.ServiceOptions { + // The hostname for this service. + // This should be specified with no prefix or protocol. + // + // Example: + // + // service Foo { + // option (google.api.default_host) = "foo.googleapi.com"; + // ... + // } + string default_host = 1049; + + // OAuth scopes needed for the client. + // + // Example: + // + // service Foo { + // option (google.api.oauth_scopes) = \ + // "https://www.googleapis.com/auth/cloud-platform"; + // ... + // } + // + // If there is more than one scope, use a comma-separated string: + // + // Example: + // + // service Foo { + // option (google.api.oauth_scopes) = \ + // "https://www.googleapis.com/auth/cloud-platform," + // "https://www.googleapis.com/auth/monitoring"; + // ... + // } + string oauth_scopes = 1050; + + // The API version of this service, which should be sent by version-aware + // clients to the service. This allows services to abide by the schema and + // behavior of the service at the time this API version was deployed. + // The format of the API version must be treated as opaque by clients. + // Services may use a format with an apparent structure, but clients must + // not rely on this to determine components within an API version, or attempt + // to construct other valid API versions. Note that this is for upcoming + // functionality and may not be implemented for all services. + // + // Example: + // + // service Foo { + // option (google.api.api_version) = "v1_20230821_preview"; + // } + string api_version = 525000001; +} + +// Required information for every language. +message CommonLanguageSettings { + // Link to automatically generated reference documentation. Example: + // https://cloud.google.com/nodejs/docs/reference/asset/latest + string reference_docs_uri = 1 [deprecated = true]; + + // The destination where API teams want this client library to be published. + repeated ClientLibraryDestination destinations = 2; + + // Configuration for which RPCs should be generated in the GAPIC client. + SelectiveGapicGeneration selective_gapic_generation = 3; +} + +// Details about how and where to publish client libraries. +message ClientLibrarySettings { + // Version of the API to apply these settings to. This is the full protobuf + // package for the API, ending in the version element. + // Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1". + string version = 1; + + // Launch stage of this version of the API. + LaunchStage launch_stage = 2; + + // When using transport=rest, the client request will encode enums as + // numbers rather than strings. + bool rest_numeric_enums = 3; + + // Settings for legacy Java features, supported in the Service YAML. + JavaSettings java_settings = 21; + + // Settings for C++ client libraries. + CppSettings cpp_settings = 22; + + // Settings for PHP client libraries. + PhpSettings php_settings = 23; + + // Settings for Python client libraries. + PythonSettings python_settings = 24; + + // Settings for Node client libraries. + NodeSettings node_settings = 25; + + // Settings for .NET client libraries. + DotnetSettings dotnet_settings = 26; + + // Settings for Ruby client libraries. + RubySettings ruby_settings = 27; + + // Settings for Go client libraries. + GoSettings go_settings = 28; +} + +// This message configures the settings for publishing [Google Cloud Client +// libraries](https://cloud.google.com/apis/docs/cloud-client-libraries) +// generated from the service config. +message Publishing { + // A list of API method settings, e.g. the behavior for methods that use the + // long-running operation pattern. + repeated MethodSettings method_settings = 2; + + // Link to a *public* URI where users can report issues. Example: + // https://issuetracker.google.com/issues/new?component=190865&template=1161103 + string new_issue_uri = 101; + + // Link to product home page. Example: + // https://cloud.google.com/asset-inventory/docs/overview + string documentation_uri = 102; + + // Used as a tracking tag when collecting data about the APIs developer + // relations artifacts like docs, packages delivered to package managers, + // etc. Example: "speech". + string api_short_name = 103; + + // GitHub label to apply to issues and pull requests opened for this API. + string github_label = 104; + + // GitHub teams to be added to CODEOWNERS in the directory in GitHub + // containing source code for the client libraries for this API. + repeated string codeowner_github_teams = 105; + + // A prefix used in sample code when demarking regions to be included in + // documentation. + string doc_tag_prefix = 106; + + // For whom the client library is being published. + ClientLibraryOrganization organization = 107; + + // Client library settings. If the same version string appears multiple + // times in this list, then the last one wins. Settings from earlier + // settings with the same version string are discarded. + repeated ClientLibrarySettings library_settings = 109; + + // Optional link to proto reference documentation. Example: + // https://cloud.google.com/pubsub/lite/docs/reference/rpc + string proto_reference_documentation_uri = 110; + + // Optional link to REST reference documentation. Example: + // https://cloud.google.com/pubsub/lite/docs/reference/rest + string rest_reference_documentation_uri = 111; +} + +// Settings for Java client libraries. +message JavaSettings { + // The package name to use in Java. Clobbers the java_package option + // set in the protobuf. This should be used **only** by APIs + // who have already set the language_settings.java.package_name" field + // in gapic.yaml. API teams should use the protobuf java_package option + // where possible. + // + // Example of a YAML configuration:: + // + // publishing: + // java_settings: + // library_package: com.google.cloud.pubsub.v1 + string library_package = 1; + + // Configure the Java class name to use instead of the service's for its + // corresponding generated GAPIC client. Keys are fully-qualified + // service names as they appear in the protobuf (including the full + // the language_settings.java.interface_names" field in gapic.yaml. API + // teams should otherwise use the service name as it appears in the + // protobuf. + // + // Example of a YAML configuration:: + // + // publishing: + // java_settings: + // service_class_names: + // - google.pubsub.v1.Publisher: TopicAdmin + // - google.pubsub.v1.Subscriber: SubscriptionAdmin + map service_class_names = 2; + + // Some settings. + CommonLanguageSettings common = 3; +} + +// Settings for C++ client libraries. +message CppSettings { + // Some settings. + CommonLanguageSettings common = 1; +} + +// Settings for Php client libraries. +message PhpSettings { + // Some settings. + CommonLanguageSettings common = 1; +} + +// Settings for Python client libraries. +message PythonSettings { + // Experimental features to be included during client library generation. + // These fields will be deprecated once the feature graduates and is enabled + // by default. + message ExperimentalFeatures { + // Enables generation of asynchronous REST clients if `rest` transport is + // enabled. By default, asynchronous REST clients will not be generated. + // This feature will be enabled by default 1 month after launching the + // feature in preview packages. + bool rest_async_io_enabled = 1; + + // Enables generation of protobuf code using new types that are more + // Pythonic which are included in `protobuf>=5.29.x`. This feature will be + // enabled by default 1 month after launching the feature in preview + // packages. + bool protobuf_pythonic_types_enabled = 2; + + // Disables generation of an unversioned Python package for this client + // library. This means that the module names will need to be versioned in + // import statements. For example `import google.cloud.library_v2` instead + // of `import google.cloud.library`. + bool unversioned_package_disabled = 3; + } + + // Some settings. + CommonLanguageSettings common = 1; + + // Experimental features to be included during client library generation. + ExperimentalFeatures experimental_features = 2; +} + +// Settings for Node client libraries. +message NodeSettings { + // Some settings. + CommonLanguageSettings common = 1; +} + +// Settings for Dotnet client libraries. +message DotnetSettings { + // Some settings. + CommonLanguageSettings common = 1; + + // Map from original service names to renamed versions. + // This is used when the default generated types + // would cause a naming conflict. (Neither name is + // fully-qualified.) + // Example: Subscriber to SubscriberServiceApi. + map renamed_services = 2; + + // Map from full resource types to the effective short name + // for the resource. This is used when otherwise resource + // named from different services would cause naming collisions. + // Example entry: + // "datalabeling.googleapis.com/Dataset": "DataLabelingDataset" + map renamed_resources = 3; + + // List of full resource types to ignore during generation. + // This is typically used for API-specific Location resources, + // which should be handled by the generator as if they were actually + // the common Location resources. + // Example entry: "documentai.googleapis.com/Location" + repeated string ignored_resources = 4; + + // Namespaces which must be aliased in snippets due to + // a known (but non-generator-predictable) naming collision + repeated string forced_namespace_aliases = 5; + + // Method signatures (in the form "service.method(signature)") + // which are provided separately, so shouldn't be generated. + // Snippets *calling* these methods are still generated, however. + repeated string handwritten_signatures = 6; +} + +// Settings for Ruby client libraries. +message RubySettings { + // Some settings. + CommonLanguageSettings common = 1; +} + +// Settings for Go client libraries. +message GoSettings { + // Some settings. + CommonLanguageSettings common = 1; + + // Map of service names to renamed services. Keys are the package relative + // service names and values are the name to be used for the service client + // and call options. + // + // publishing: + // go_settings: + // renamed_services: + // Publisher: TopicAdmin + map renamed_services = 2; +} + +// Describes the generator configuration for a method. +message MethodSettings { + // Describes settings to use when generating API methods that use the + // long-running operation pattern. + // All default values below are from those used in the client library + // generators (e.g. + // [Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)). + message LongRunning { + // Initial delay after which the first poll request will be made. + // Default value: 5 seconds. + google.protobuf.Duration initial_poll_delay = 1; + + // Multiplier to gradually increase delay between subsequent polls until it + // reaches max_poll_delay. + // Default value: 1.5. + float poll_delay_multiplier = 2; + + // Maximum time between two subsequent poll requests. + // Default value: 45 seconds. + google.protobuf.Duration max_poll_delay = 3; + + // Total polling timeout. + // Default value: 5 minutes. + google.protobuf.Duration total_poll_timeout = 4; + } + + // The fully qualified name of the method, for which the options below apply. + // This is used to find the method to apply the options. + // + // Example: + // + // publishing: + // method_settings: + // - selector: google.storage.control.v2.StorageControl.CreateFolder + // # method settings for CreateFolder... + string selector = 1; + + // Describes settings to use for long-running operations when generating + // API methods for RPCs. Complements RPCs that use the annotations in + // google/longrunning/operations.proto. + // + // Example of a YAML configuration:: + // + // publishing: + // method_settings: + // - selector: google.cloud.speech.v2.Speech.BatchRecognize + // long_running: + // initial_poll_delay: 60s # 1 minute + // poll_delay_multiplier: 1.5 + // max_poll_delay: 360s # 6 minutes + // total_poll_timeout: 54000s # 90 minutes + LongRunning long_running = 2; + + // List of top-level fields of the request message, that should be + // automatically populated by the client libraries based on their + // (google.api.field_info).format. Currently supported format: UUID4. + // + // Example of a YAML configuration: + // + // publishing: + // method_settings: + // - selector: google.example.v1.ExampleService.CreateExample + // auto_populated_fields: + // - request_id + repeated string auto_populated_fields = 3; +} + +// The organization for which the client libraries are being published. +// Affects the url where generated docs are published, etc. +enum ClientLibraryOrganization { + // Not useful. + CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0; + + // Google Cloud Platform Org. + CLOUD = 1; + + // Ads (Advertising) Org. + ADS = 2; + + // Photos Org. + PHOTOS = 3; + + // Street View Org. + STREET_VIEW = 4; + + // Shopping Org. + SHOPPING = 5; + + // Geo Org. + GEO = 6; + + // Generative AI - https://developers.generativeai.google + GENERATIVE_AI = 7; +} + +// To where should client libraries be published? +enum ClientLibraryDestination { + // Client libraries will neither be generated nor published to package + // managers. + CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0; + + // Generate the client library in a repo under github.com/googleapis, + // but don't publish it to package managers. + GITHUB = 10; + + // Publish the library to package managers like nuget.org and npmjs.com. + PACKAGE_MANAGER = 20; +} + +// This message is used to configure the generation of a subset of the RPCs in +// a service for client libraries. +message SelectiveGapicGeneration { + // An allowlist of the fully qualified names of RPCs that should be included + // on public client surfaces. + repeated string methods = 1; + + // Setting this to true indicates to the client generators that methods + // that would be excluded from the generation should instead be generated + // in a way that indicates these methods should not be consumed by + // end users. How this is expressed is up to individual language + // implementations to decide. Some examples may be: added annotations, + // obfuscated identifiers, or other language idiomatic patterns. + bool generate_omitted_as_internal = 2; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/client_pb2.py b/ocr/.venv/Lib/site-packages/google/api/client_pb2.py new file mode 100644 index 00000000..ee6f02e1 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/client_pb2.py @@ -0,0 +1,103 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/client.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import launch_stage_pb2 as google_dot_api_dot_launch__stage__pb2 +from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2 +from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x17google/api/client.proto\x12\ngoogle.api\x1a\x1dgoogle/api/launch_stage.proto\x1a google/protobuf/descriptor.proto\x1a\x1egoogle/protobuf/duration.proto"\xbe\x01\n\x16\x43ommonLanguageSettings\x12\x1e\n\x12reference_docs_uri\x18\x01 \x01(\tB\x02\x18\x01\x12:\n\x0c\x64\x65stinations\x18\x02 \x03(\x0e\x32$.google.api.ClientLibraryDestination\x12H\n\x1aselective_gapic_generation\x18\x03 \x01(\x0b\x32$.google.api.SelectiveGapicGeneration"\xfb\x03\n\x15\x43lientLibrarySettings\x12\x0f\n\x07version\x18\x01 \x01(\t\x12-\n\x0claunch_stage\x18\x02 \x01(\x0e\x32\x17.google.api.LaunchStage\x12\x1a\n\x12rest_numeric_enums\x18\x03 \x01(\x08\x12/\n\rjava_settings\x18\x15 \x01(\x0b\x32\x18.google.api.JavaSettings\x12-\n\x0c\x63pp_settings\x18\x16 \x01(\x0b\x32\x17.google.api.CppSettings\x12-\n\x0cphp_settings\x18\x17 \x01(\x0b\x32\x17.google.api.PhpSettings\x12\x33\n\x0fpython_settings\x18\x18 \x01(\x0b\x32\x1a.google.api.PythonSettings\x12/\n\rnode_settings\x18\x19 \x01(\x0b\x32\x18.google.api.NodeSettings\x12\x33\n\x0f\x64otnet_settings\x18\x1a \x01(\x0b\x32\x1a.google.api.DotnetSettings\x12/\n\rruby_settings\x18\x1b \x01(\x0b\x32\x18.google.api.RubySettings\x12+\n\x0bgo_settings\x18\x1c \x01(\x0b\x32\x16.google.api.GoSettings"\xa8\x03\n\nPublishing\x12\x33\n\x0fmethod_settings\x18\x02 \x03(\x0b\x32\x1a.google.api.MethodSettings\x12\x15\n\rnew_issue_uri\x18\x65 \x01(\t\x12\x19\n\x11\x64ocumentation_uri\x18\x66 \x01(\t\x12\x16\n\x0e\x61pi_short_name\x18g \x01(\t\x12\x14\n\x0cgithub_label\x18h \x01(\t\x12\x1e\n\x16\x63odeowner_github_teams\x18i \x03(\t\x12\x16\n\x0e\x64oc_tag_prefix\x18j \x01(\t\x12;\n\x0corganization\x18k \x01(\x0e\x32%.google.api.ClientLibraryOrganization\x12;\n\x10library_settings\x18m \x03(\x0b\x32!.google.api.ClientLibrarySettings\x12)\n!proto_reference_documentation_uri\x18n \x01(\t\x12(\n rest_reference_documentation_uri\x18o \x01(\t"\xe3\x01\n\x0cJavaSettings\x12\x17\n\x0flibrary_package\x18\x01 \x01(\t\x12L\n\x13service_class_names\x18\x02 \x03(\x0b\x32/.google.api.JavaSettings.ServiceClassNamesEntry\x12\x32\n\x06\x63ommon\x18\x03 \x01(\x0b\x32".google.api.CommonLanguageSettings\x1a\x38\n\x16ServiceClassNamesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01"A\n\x0b\x43ppSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings"A\n\x0bPhpSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings"\x9b\x02\n\x0ePythonSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings\x12N\n\x15\x65xperimental_features\x18\x02 \x01(\x0b\x32/.google.api.PythonSettings.ExperimentalFeatures\x1a\x84\x01\n\x14\x45xperimentalFeatures\x12\x1d\n\x15rest_async_io_enabled\x18\x01 \x01(\x08\x12\'\n\x1fprotobuf_pythonic_types_enabled\x18\x02 \x01(\x08\x12$\n\x1cunversioned_package_disabled\x18\x03 \x01(\x08"B\n\x0cNodeSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings"\xaa\x03\n\x0e\x44otnetSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings\x12I\n\x10renamed_services\x18\x02 \x03(\x0b\x32/.google.api.DotnetSettings.RenamedServicesEntry\x12K\n\x11renamed_resources\x18\x03 \x03(\x0b\x32\x30.google.api.DotnetSettings.RenamedResourcesEntry\x12\x19\n\x11ignored_resources\x18\x04 \x03(\t\x12 \n\x18\x66orced_namespace_aliases\x18\x05 \x03(\t\x12\x1e\n\x16handwritten_signatures\x18\x06 \x03(\t\x1a\x36\n\x14RenamedServicesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x37\n\x15RenamedResourcesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01"B\n\x0cRubySettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings"\xbf\x01\n\nGoSettings\x12\x32\n\x06\x63ommon\x18\x01 \x01(\x0b\x32".google.api.CommonLanguageSettings\x12\x45\n\x10renamed_services\x18\x02 \x03(\x0b\x32+.google.api.GoSettings.RenamedServicesEntry\x1a\x36\n\x14RenamedServicesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01"\xcf\x02\n\x0eMethodSettings\x12\x10\n\x08selector\x18\x01 \x01(\t\x12<\n\x0clong_running\x18\x02 \x01(\x0b\x32&.google.api.MethodSettings.LongRunning\x12\x1d\n\x15\x61uto_populated_fields\x18\x03 \x03(\t\x1a\xcd\x01\n\x0bLongRunning\x12\x35\n\x12initial_poll_delay\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1d\n\x15poll_delay_multiplier\x18\x02 \x01(\x02\x12\x31\n\x0emax_poll_delay\x18\x03 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x35\n\x12total_poll_timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration"Q\n\x18SelectiveGapicGeneration\x12\x0f\n\x07methods\x18\x01 \x03(\t\x12$\n\x1cgenerate_omitted_as_internal\x18\x02 \x01(\x08*\xa3\x01\n\x19\x43lientLibraryOrganization\x12+\n\'CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED\x10\x00\x12\t\n\x05\x43LOUD\x10\x01\x12\x07\n\x03\x41\x44S\x10\x02\x12\n\n\x06PHOTOS\x10\x03\x12\x0f\n\x0bSTREET_VIEW\x10\x04\x12\x0c\n\x08SHOPPING\x10\x05\x12\x07\n\x03GEO\x10\x06\x12\x11\n\rGENERATIVE_AI\x10\x07*g\n\x18\x43lientLibraryDestination\x12*\n&CLIENT_LIBRARY_DESTINATION_UNSPECIFIED\x10\x00\x12\n\n\x06GITHUB\x10\n\x12\x13\n\x0fPACKAGE_MANAGER\x10\x14:9\n\x10method_signature\x12\x1e.google.protobuf.MethodOptions\x18\x9b\x08 \x03(\t:6\n\x0c\x64\x65\x66\x61ult_host\x12\x1f.google.protobuf.ServiceOptions\x18\x99\x08 \x01(\t:6\n\x0coauth_scopes\x12\x1f.google.protobuf.ServiceOptions\x18\x9a\x08 \x01(\t:8\n\x0b\x61pi_version\x12\x1f.google.protobuf.ServiceOptions\x18\xc1\xba\xab\xfa\x01 \x01(\tBi\n\x0e\x63om.google.apiB\x0b\x43lientProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.client_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\013ClientProtoP\001ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\242\002\004GAPI" + _globals["_COMMONLANGUAGESETTINGS"].fields_by_name[ + "reference_docs_uri" + ]._options = None + _globals["_COMMONLANGUAGESETTINGS"].fields_by_name[ + "reference_docs_uri" + ]._serialized_options = b"\030\001" + _globals["_JAVASETTINGS_SERVICECLASSNAMESENTRY"]._options = None + _globals["_JAVASETTINGS_SERVICECLASSNAMESENTRY"]._serialized_options = b"8\001" + _globals["_DOTNETSETTINGS_RENAMEDSERVICESENTRY"]._options = None + _globals["_DOTNETSETTINGS_RENAMEDSERVICESENTRY"]._serialized_options = b"8\001" + _globals["_DOTNETSETTINGS_RENAMEDRESOURCESENTRY"]._options = None + _globals["_DOTNETSETTINGS_RENAMEDRESOURCESENTRY"]._serialized_options = b"8\001" + _globals["_GOSETTINGS_RENAMEDSERVICESENTRY"]._options = None + _globals["_GOSETTINGS_RENAMEDSERVICESENTRY"]._serialized_options = b"8\001" + _globals["_CLIENTLIBRARYORGANIZATION"]._serialized_start = 3097 + _globals["_CLIENTLIBRARYORGANIZATION"]._serialized_end = 3260 + _globals["_CLIENTLIBRARYDESTINATION"]._serialized_start = 3262 + _globals["_CLIENTLIBRARYDESTINATION"]._serialized_end = 3365 + _globals["_COMMONLANGUAGESETTINGS"]._serialized_start = 137 + _globals["_COMMONLANGUAGESETTINGS"]._serialized_end = 327 + _globals["_CLIENTLIBRARYSETTINGS"]._serialized_start = 330 + _globals["_CLIENTLIBRARYSETTINGS"]._serialized_end = 837 + _globals["_PUBLISHING"]._serialized_start = 840 + _globals["_PUBLISHING"]._serialized_end = 1264 + _globals["_JAVASETTINGS"]._serialized_start = 1267 + _globals["_JAVASETTINGS"]._serialized_end = 1494 + _globals["_JAVASETTINGS_SERVICECLASSNAMESENTRY"]._serialized_start = 1438 + _globals["_JAVASETTINGS_SERVICECLASSNAMESENTRY"]._serialized_end = 1494 + _globals["_CPPSETTINGS"]._serialized_start = 1496 + _globals["_CPPSETTINGS"]._serialized_end = 1561 + _globals["_PHPSETTINGS"]._serialized_start = 1563 + _globals["_PHPSETTINGS"]._serialized_end = 1628 + _globals["_PYTHONSETTINGS"]._serialized_start = 1631 + _globals["_PYTHONSETTINGS"]._serialized_end = 1914 + _globals["_PYTHONSETTINGS_EXPERIMENTALFEATURES"]._serialized_start = 1782 + _globals["_PYTHONSETTINGS_EXPERIMENTALFEATURES"]._serialized_end = 1914 + _globals["_NODESETTINGS"]._serialized_start = 1916 + _globals["_NODESETTINGS"]._serialized_end = 1982 + _globals["_DOTNETSETTINGS"]._serialized_start = 1985 + _globals["_DOTNETSETTINGS"]._serialized_end = 2411 + _globals["_DOTNETSETTINGS_RENAMEDSERVICESENTRY"]._serialized_start = 2300 + _globals["_DOTNETSETTINGS_RENAMEDSERVICESENTRY"]._serialized_end = 2354 + _globals["_DOTNETSETTINGS_RENAMEDRESOURCESENTRY"]._serialized_start = 2356 + _globals["_DOTNETSETTINGS_RENAMEDRESOURCESENTRY"]._serialized_end = 2411 + _globals["_RUBYSETTINGS"]._serialized_start = 2413 + _globals["_RUBYSETTINGS"]._serialized_end = 2479 + _globals["_GOSETTINGS"]._serialized_start = 2482 + _globals["_GOSETTINGS"]._serialized_end = 2673 + _globals["_GOSETTINGS_RENAMEDSERVICESENTRY"]._serialized_start = 2300 + _globals["_GOSETTINGS_RENAMEDSERVICESENTRY"]._serialized_end = 2354 + _globals["_METHODSETTINGS"]._serialized_start = 2676 + _globals["_METHODSETTINGS"]._serialized_end = 3011 + _globals["_METHODSETTINGS_LONGRUNNING"]._serialized_start = 2806 + _globals["_METHODSETTINGS_LONGRUNNING"]._serialized_end = 3011 + _globals["_SELECTIVEGAPICGENERATION"]._serialized_start = 3013 + _globals["_SELECTIVEGAPICGENERATION"]._serialized_end = 3094 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/client_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/client_pb2.pyi new file mode 100644 index 00000000..213ae4b2 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/client_pb2.pyi @@ -0,0 +1,404 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import launch_stage_pb2 as _launch_stage_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pb2 as _descriptor_pb2 +from google.protobuf import duration_pb2 as _duration_pb2 +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class ClientLibraryOrganization(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED: _ClassVar[ClientLibraryOrganization] + CLOUD: _ClassVar[ClientLibraryOrganization] + ADS: _ClassVar[ClientLibraryOrganization] + PHOTOS: _ClassVar[ClientLibraryOrganization] + STREET_VIEW: _ClassVar[ClientLibraryOrganization] + SHOPPING: _ClassVar[ClientLibraryOrganization] + GEO: _ClassVar[ClientLibraryOrganization] + GENERATIVE_AI: _ClassVar[ClientLibraryOrganization] + +class ClientLibraryDestination(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + CLIENT_LIBRARY_DESTINATION_UNSPECIFIED: _ClassVar[ClientLibraryDestination] + GITHUB: _ClassVar[ClientLibraryDestination] + PACKAGE_MANAGER: _ClassVar[ClientLibraryDestination] + +CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED: ClientLibraryOrganization +CLOUD: ClientLibraryOrganization +ADS: ClientLibraryOrganization +PHOTOS: ClientLibraryOrganization +STREET_VIEW: ClientLibraryOrganization +SHOPPING: ClientLibraryOrganization +GEO: ClientLibraryOrganization +GENERATIVE_AI: ClientLibraryOrganization +CLIENT_LIBRARY_DESTINATION_UNSPECIFIED: ClientLibraryDestination +GITHUB: ClientLibraryDestination +PACKAGE_MANAGER: ClientLibraryDestination +METHOD_SIGNATURE_FIELD_NUMBER: _ClassVar[int] +method_signature: _descriptor.FieldDescriptor +DEFAULT_HOST_FIELD_NUMBER: _ClassVar[int] +default_host: _descriptor.FieldDescriptor +OAUTH_SCOPES_FIELD_NUMBER: _ClassVar[int] +oauth_scopes: _descriptor.FieldDescriptor +API_VERSION_FIELD_NUMBER: _ClassVar[int] +api_version: _descriptor.FieldDescriptor + +class CommonLanguageSettings(_message.Message): + __slots__ = ("reference_docs_uri", "destinations", "selective_gapic_generation") + REFERENCE_DOCS_URI_FIELD_NUMBER: _ClassVar[int] + DESTINATIONS_FIELD_NUMBER: _ClassVar[int] + SELECTIVE_GAPIC_GENERATION_FIELD_NUMBER: _ClassVar[int] + reference_docs_uri: str + destinations: _containers.RepeatedScalarFieldContainer[ClientLibraryDestination] + selective_gapic_generation: SelectiveGapicGeneration + def __init__( + self, + reference_docs_uri: _Optional[str] = ..., + destinations: _Optional[_Iterable[_Union[ClientLibraryDestination, str]]] = ..., + selective_gapic_generation: _Optional[ + _Union[SelectiveGapicGeneration, _Mapping] + ] = ..., + ) -> None: ... + +class ClientLibrarySettings(_message.Message): + __slots__ = ( + "version", + "launch_stage", + "rest_numeric_enums", + "java_settings", + "cpp_settings", + "php_settings", + "python_settings", + "node_settings", + "dotnet_settings", + "ruby_settings", + "go_settings", + ) + VERSION_FIELD_NUMBER: _ClassVar[int] + LAUNCH_STAGE_FIELD_NUMBER: _ClassVar[int] + REST_NUMERIC_ENUMS_FIELD_NUMBER: _ClassVar[int] + JAVA_SETTINGS_FIELD_NUMBER: _ClassVar[int] + CPP_SETTINGS_FIELD_NUMBER: _ClassVar[int] + PHP_SETTINGS_FIELD_NUMBER: _ClassVar[int] + PYTHON_SETTINGS_FIELD_NUMBER: _ClassVar[int] + NODE_SETTINGS_FIELD_NUMBER: _ClassVar[int] + DOTNET_SETTINGS_FIELD_NUMBER: _ClassVar[int] + RUBY_SETTINGS_FIELD_NUMBER: _ClassVar[int] + GO_SETTINGS_FIELD_NUMBER: _ClassVar[int] + version: str + launch_stage: _launch_stage_pb2.LaunchStage + rest_numeric_enums: bool + java_settings: JavaSettings + cpp_settings: CppSettings + php_settings: PhpSettings + python_settings: PythonSettings + node_settings: NodeSettings + dotnet_settings: DotnetSettings + ruby_settings: RubySettings + go_settings: GoSettings + def __init__( + self, + version: _Optional[str] = ..., + launch_stage: _Optional[_Union[_launch_stage_pb2.LaunchStage, str]] = ..., + rest_numeric_enums: bool = ..., + java_settings: _Optional[_Union[JavaSettings, _Mapping]] = ..., + cpp_settings: _Optional[_Union[CppSettings, _Mapping]] = ..., + php_settings: _Optional[_Union[PhpSettings, _Mapping]] = ..., + python_settings: _Optional[_Union[PythonSettings, _Mapping]] = ..., + node_settings: _Optional[_Union[NodeSettings, _Mapping]] = ..., + dotnet_settings: _Optional[_Union[DotnetSettings, _Mapping]] = ..., + ruby_settings: _Optional[_Union[RubySettings, _Mapping]] = ..., + go_settings: _Optional[_Union[GoSettings, _Mapping]] = ..., + ) -> None: ... + +class Publishing(_message.Message): + __slots__ = ( + "method_settings", + "new_issue_uri", + "documentation_uri", + "api_short_name", + "github_label", + "codeowner_github_teams", + "doc_tag_prefix", + "organization", + "library_settings", + "proto_reference_documentation_uri", + "rest_reference_documentation_uri", + ) + METHOD_SETTINGS_FIELD_NUMBER: _ClassVar[int] + NEW_ISSUE_URI_FIELD_NUMBER: _ClassVar[int] + DOCUMENTATION_URI_FIELD_NUMBER: _ClassVar[int] + API_SHORT_NAME_FIELD_NUMBER: _ClassVar[int] + GITHUB_LABEL_FIELD_NUMBER: _ClassVar[int] + CODEOWNER_GITHUB_TEAMS_FIELD_NUMBER: _ClassVar[int] + DOC_TAG_PREFIX_FIELD_NUMBER: _ClassVar[int] + ORGANIZATION_FIELD_NUMBER: _ClassVar[int] + LIBRARY_SETTINGS_FIELD_NUMBER: _ClassVar[int] + PROTO_REFERENCE_DOCUMENTATION_URI_FIELD_NUMBER: _ClassVar[int] + REST_REFERENCE_DOCUMENTATION_URI_FIELD_NUMBER: _ClassVar[int] + method_settings: _containers.RepeatedCompositeFieldContainer[MethodSettings] + new_issue_uri: str + documentation_uri: str + api_short_name: str + github_label: str + codeowner_github_teams: _containers.RepeatedScalarFieldContainer[str] + doc_tag_prefix: str + organization: ClientLibraryOrganization + library_settings: _containers.RepeatedCompositeFieldContainer[ClientLibrarySettings] + proto_reference_documentation_uri: str + rest_reference_documentation_uri: str + def __init__( + self, + method_settings: _Optional[_Iterable[_Union[MethodSettings, _Mapping]]] = ..., + new_issue_uri: _Optional[str] = ..., + documentation_uri: _Optional[str] = ..., + api_short_name: _Optional[str] = ..., + github_label: _Optional[str] = ..., + codeowner_github_teams: _Optional[_Iterable[str]] = ..., + doc_tag_prefix: _Optional[str] = ..., + organization: _Optional[_Union[ClientLibraryOrganization, str]] = ..., + library_settings: _Optional[ + _Iterable[_Union[ClientLibrarySettings, _Mapping]] + ] = ..., + proto_reference_documentation_uri: _Optional[str] = ..., + rest_reference_documentation_uri: _Optional[str] = ..., + ) -> None: ... + +class JavaSettings(_message.Message): + __slots__ = ("library_package", "service_class_names", "common") + + class ServiceClassNamesEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + LIBRARY_PACKAGE_FIELD_NUMBER: _ClassVar[int] + SERVICE_CLASS_NAMES_FIELD_NUMBER: _ClassVar[int] + COMMON_FIELD_NUMBER: _ClassVar[int] + library_package: str + service_class_names: _containers.ScalarMap[str, str] + common: CommonLanguageSettings + def __init__( + self, + library_package: _Optional[str] = ..., + service_class_names: _Optional[_Mapping[str, str]] = ..., + common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ..., + ) -> None: ... + +class CppSettings(_message.Message): + __slots__ = ("common",) + COMMON_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + def __init__( + self, common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ... + ) -> None: ... + +class PhpSettings(_message.Message): + __slots__ = ("common",) + COMMON_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + def __init__( + self, common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ... + ) -> None: ... + +class PythonSettings(_message.Message): + __slots__ = ("common", "experimental_features") + + class ExperimentalFeatures(_message.Message): + __slots__ = ( + "rest_async_io_enabled", + "protobuf_pythonic_types_enabled", + "unversioned_package_disabled", + ) + REST_ASYNC_IO_ENABLED_FIELD_NUMBER: _ClassVar[int] + PROTOBUF_PYTHONIC_TYPES_ENABLED_FIELD_NUMBER: _ClassVar[int] + UNVERSIONED_PACKAGE_DISABLED_FIELD_NUMBER: _ClassVar[int] + rest_async_io_enabled: bool + protobuf_pythonic_types_enabled: bool + unversioned_package_disabled: bool + def __init__( + self, + rest_async_io_enabled: bool = ..., + protobuf_pythonic_types_enabled: bool = ..., + unversioned_package_disabled: bool = ..., + ) -> None: ... + COMMON_FIELD_NUMBER: _ClassVar[int] + EXPERIMENTAL_FEATURES_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + experimental_features: PythonSettings.ExperimentalFeatures + def __init__( + self, + common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ..., + experimental_features: _Optional[ + _Union[PythonSettings.ExperimentalFeatures, _Mapping] + ] = ..., + ) -> None: ... + +class NodeSettings(_message.Message): + __slots__ = ("common",) + COMMON_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + def __init__( + self, common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ... + ) -> None: ... + +class DotnetSettings(_message.Message): + __slots__ = ( + "common", + "renamed_services", + "renamed_resources", + "ignored_resources", + "forced_namespace_aliases", + "handwritten_signatures", + ) + + class RenamedServicesEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + + class RenamedResourcesEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + COMMON_FIELD_NUMBER: _ClassVar[int] + RENAMED_SERVICES_FIELD_NUMBER: _ClassVar[int] + RENAMED_RESOURCES_FIELD_NUMBER: _ClassVar[int] + IGNORED_RESOURCES_FIELD_NUMBER: _ClassVar[int] + FORCED_NAMESPACE_ALIASES_FIELD_NUMBER: _ClassVar[int] + HANDWRITTEN_SIGNATURES_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + renamed_services: _containers.ScalarMap[str, str] + renamed_resources: _containers.ScalarMap[str, str] + ignored_resources: _containers.RepeatedScalarFieldContainer[str] + forced_namespace_aliases: _containers.RepeatedScalarFieldContainer[str] + handwritten_signatures: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ..., + renamed_services: _Optional[_Mapping[str, str]] = ..., + renamed_resources: _Optional[_Mapping[str, str]] = ..., + ignored_resources: _Optional[_Iterable[str]] = ..., + forced_namespace_aliases: _Optional[_Iterable[str]] = ..., + handwritten_signatures: _Optional[_Iterable[str]] = ..., + ) -> None: ... + +class RubySettings(_message.Message): + __slots__ = ("common",) + COMMON_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + def __init__( + self, common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ... + ) -> None: ... + +class GoSettings(_message.Message): + __slots__ = ("common", "renamed_services") + + class RenamedServicesEntry(_message.Message): + __slots__ = ("key", "value") + KEY_FIELD_NUMBER: _ClassVar[int] + VALUE_FIELD_NUMBER: _ClassVar[int] + key: str + value: str + def __init__( + self, key: _Optional[str] = ..., value: _Optional[str] = ... + ) -> None: ... + COMMON_FIELD_NUMBER: _ClassVar[int] + RENAMED_SERVICES_FIELD_NUMBER: _ClassVar[int] + common: CommonLanguageSettings + renamed_services: _containers.ScalarMap[str, str] + def __init__( + self, + common: _Optional[_Union[CommonLanguageSettings, _Mapping]] = ..., + renamed_services: _Optional[_Mapping[str, str]] = ..., + ) -> None: ... + +class MethodSettings(_message.Message): + __slots__ = ("selector", "long_running", "auto_populated_fields") + + class LongRunning(_message.Message): + __slots__ = ( + "initial_poll_delay", + "poll_delay_multiplier", + "max_poll_delay", + "total_poll_timeout", + ) + INITIAL_POLL_DELAY_FIELD_NUMBER: _ClassVar[int] + POLL_DELAY_MULTIPLIER_FIELD_NUMBER: _ClassVar[int] + MAX_POLL_DELAY_FIELD_NUMBER: _ClassVar[int] + TOTAL_POLL_TIMEOUT_FIELD_NUMBER: _ClassVar[int] + initial_poll_delay: _duration_pb2.Duration + poll_delay_multiplier: float + max_poll_delay: _duration_pb2.Duration + total_poll_timeout: _duration_pb2.Duration + def __init__( + self, + initial_poll_delay: _Optional[ + _Union[_duration_pb2.Duration, _Mapping] + ] = ..., + poll_delay_multiplier: _Optional[float] = ..., + max_poll_delay: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., + total_poll_timeout: _Optional[ + _Union[_duration_pb2.Duration, _Mapping] + ] = ..., + ) -> None: ... + SELECTOR_FIELD_NUMBER: _ClassVar[int] + LONG_RUNNING_FIELD_NUMBER: _ClassVar[int] + AUTO_POPULATED_FIELDS_FIELD_NUMBER: _ClassVar[int] + selector: str + long_running: MethodSettings.LongRunning + auto_populated_fields: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + selector: _Optional[str] = ..., + long_running: _Optional[_Union[MethodSettings.LongRunning, _Mapping]] = ..., + auto_populated_fields: _Optional[_Iterable[str]] = ..., + ) -> None: ... + +class SelectiveGapicGeneration(_message.Message): + __slots__ = ("methods", "generate_omitted_as_internal") + METHODS_FIELD_NUMBER: _ClassVar[int] + GENERATE_OMITTED_AS_INTERNAL_FIELD_NUMBER: _ClassVar[int] + methods: _containers.RepeatedScalarFieldContainer[str] + generate_omitted_as_internal: bool + def __init__( + self, + methods: _Optional[_Iterable[str]] = ..., + generate_omitted_as_internal: bool = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/config_change.proto b/ocr/.venv/Lib/site-packages/google/api/config_change.proto new file mode 100644 index 00000000..c1cc0e8b --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/config_change.proto @@ -0,0 +1,84 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/configchange;configchange"; +option java_multiple_files = true; +option java_outer_classname = "ConfigChangeProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Output generated from semantically comparing two versions of a service +// configuration. +// +// Includes detailed information about a field that have changed with +// applicable advice about potential consequences for the change, such as +// backwards-incompatibility. +message ConfigChange { + // Object hierarchy path to the change, with levels separated by a '.' + // character. For repeated fields, an applicable unique identifier field is + // used for the index (usually selector, name, or id). For maps, the term + // 'key' is used. If the field has no unique identifier, the numeric index + // is used. + // Examples: + // - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction + // - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value + // - logging.producer_destinations[0] + string element = 1; + + // Value of the changed object in the old Service configuration, + // in JSON format. This field will not be populated if ChangeType == ADDED. + string old_value = 2; + + // Value of the changed object in the new Service configuration, + // in JSON format. This field will not be populated if ChangeType == REMOVED. + string new_value = 3; + + // The type for this change, either ADDED, REMOVED, or MODIFIED. + ChangeType change_type = 4; + + // Collection of advice provided for this change, useful for determining the + // possible impact of this change. + repeated Advice advices = 5; +} + +// Generated advice about this change, used for providing more +// information about how a change will affect the existing service. +message Advice { + // Useful description for why this advice was applied and what actions should + // be taken to mitigate any implied risks. + string description = 2; +} + +// Classifies set of possible modifications to an object in the service +// configuration. +enum ChangeType { + // No value was provided. + CHANGE_TYPE_UNSPECIFIED = 0; + + // The changed object exists in the 'new' service configuration, but not + // in the 'old' service configuration. + ADDED = 1; + + // The changed object exists in the 'old' service configuration, but not + // in the 'new' service configuration. + REMOVED = 2; + + // The changed object exists in both service configurations, but its value + // is different. + MODIFIED = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.py b/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.py new file mode 100644 index 00000000..25cce757 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/config_change.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1egoogle/api/config_change.proto\x12\ngoogle.api"\x97\x01\n\x0c\x43onfigChange\x12\x0f\n\x07\x65lement\x18\x01 \x01(\t\x12\x11\n\told_value\x18\x02 \x01(\t\x12\x11\n\tnew_value\x18\x03 \x01(\t\x12+\n\x0b\x63hange_type\x18\x04 \x01(\x0e\x32\x16.google.api.ChangeType\x12#\n\x07\x61\x64vices\x18\x05 \x03(\x0b\x32\x12.google.api.Advice"\x1d\n\x06\x41\x64vice\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t*O\n\nChangeType\x12\x1b\n\x17\x43HANGE_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44\x44\x45\x44\x10\x01\x12\x0b\n\x07REMOVED\x10\x02\x12\x0c\n\x08MODIFIED\x10\x03\x42q\n\x0e\x63om.google.apiB\x11\x43onfigChangeProtoP\x01ZCgoogle.golang.org/genproto/googleapis/api/configchange;configchange\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.config_change_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\021ConfigChangeProtoP\001ZCgoogle.golang.org/genproto/googleapis/api/configchange;configchange\242\002\004GAPI" + _globals["_CHANGETYPE"]._serialized_start = 231 + _globals["_CHANGETYPE"]._serialized_end = 310 + _globals["_CONFIGCHANGE"]._serialized_start = 47 + _globals["_CONFIGCHANGE"]._serialized_end = 198 + _globals["_ADVICE"]._serialized_start = 200 + _globals["_ADVICE"]._serialized_end = 229 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.pyi new file mode 100644 index 00000000..b6c1c454 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/config_change_pb2.pyi @@ -0,0 +1,65 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class ChangeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + CHANGE_TYPE_UNSPECIFIED: _ClassVar[ChangeType] + ADDED: _ClassVar[ChangeType] + REMOVED: _ClassVar[ChangeType] + MODIFIED: _ClassVar[ChangeType] + +CHANGE_TYPE_UNSPECIFIED: ChangeType +ADDED: ChangeType +REMOVED: ChangeType +MODIFIED: ChangeType + +class ConfigChange(_message.Message): + __slots__ = ("element", "old_value", "new_value", "change_type", "advices") + ELEMENT_FIELD_NUMBER: _ClassVar[int] + OLD_VALUE_FIELD_NUMBER: _ClassVar[int] + NEW_VALUE_FIELD_NUMBER: _ClassVar[int] + CHANGE_TYPE_FIELD_NUMBER: _ClassVar[int] + ADVICES_FIELD_NUMBER: _ClassVar[int] + element: str + old_value: str + new_value: str + change_type: ChangeType + advices: _containers.RepeatedCompositeFieldContainer[Advice] + def __init__( + self, + element: _Optional[str] = ..., + old_value: _Optional[str] = ..., + new_value: _Optional[str] = ..., + change_type: _Optional[_Union[ChangeType, str]] = ..., + advices: _Optional[_Iterable[_Union[Advice, _Mapping]]] = ..., + ) -> None: ... + +class Advice(_message.Message): + __slots__ = ("description",) + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + description: str + def __init__(self, description: _Optional[str] = ...) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/consumer.proto b/ocr/.venv/Lib/site-packages/google/api/consumer.proto new file mode 100644 index 00000000..30360490 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/consumer.proto @@ -0,0 +1,82 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "ConsumerProto"; +option java_package = "com.google.api"; + +// A descriptor for defining project properties for a service. One service may +// have many consumer projects, and the service may want to behave differently +// depending on some properties on the project. For example, a project may be +// associated with a school, or a business, or a government agency, a business +// type property on the project may affect how a service responds to the client. +// This descriptor defines which properties are allowed to be set on a project. +// +// Example: +// +// project_properties: +// properties: +// - name: NO_WATERMARK +// type: BOOL +// description: Allows usage of the API without watermarks. +// - name: EXTENDED_TILE_CACHE_PERIOD +// type: INT64 +message ProjectProperties { + // List of per consumer project-specific properties. + repeated Property properties = 1; +} + +// Defines project properties. +// +// API services can define properties that can be assigned to consumer projects +// so that backends can perform response customization without having to make +// additional calls or maintain additional storage. For example, Maps API +// defines properties that controls map tile cache period, or whether to embed a +// watermark in a result. +// +// These values can be set via API producer console. Only API providers can +// define and set these properties. +message Property { + // Supported data type of the property values + enum PropertyType { + // The type is unspecified, and will result in an error. + UNSPECIFIED = 0; + + // The type is `int64`. + INT64 = 1; + + // The type is `bool`. + BOOL = 2; + + // The type is `string`. + STRING = 3; + + // The type is 'double'. + DOUBLE = 4; + } + + // The name of the property (a.k.a key). + string name = 1; + + // The type of this property. + PropertyType type = 2; + + // The description of the property + string description = 3; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.py b/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.py new file mode 100644 index 00000000..7de4f16d --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/consumer.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x19google/api/consumer.proto\x12\ngoogle.api"=\n\x11ProjectProperties\x12(\n\nproperties\x18\x01 \x03(\x0b\x32\x14.google.api.Property"\xac\x01\n\x08Property\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\x04type\x18\x02 \x01(\x0e\x32!.google.api.Property.PropertyType\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t"L\n\x0cPropertyType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\t\n\x05INT64\x10\x01\x12\x08\n\x04\x42OOL\x10\x02\x12\n\n\x06STRING\x10\x03\x12\n\n\x06\x44OUBLE\x10\x04\x42h\n\x0e\x63om.google.apiB\rConsumerProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfigb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.consumer_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\rConsumerProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig" + _globals["_PROJECTPROPERTIES"]._serialized_start = 41 + _globals["_PROJECTPROPERTIES"]._serialized_end = 102 + _globals["_PROPERTY"]._serialized_start = 105 + _globals["_PROPERTY"]._serialized_end = 277 + _globals["_PROPERTY_PROPERTYTYPE"]._serialized_start = 201 + _globals["_PROPERTY_PROPERTYTYPE"]._serialized_end = 277 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.pyi new file mode 100644 index 00000000..d352d07e --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/consumer_pb2.pyi @@ -0,0 +1,62 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers +from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper + +DESCRIPTOR: _descriptor.FileDescriptor + +class ProjectProperties(_message.Message): + __slots__ = ("properties",) + PROPERTIES_FIELD_NUMBER: _ClassVar[int] + properties: _containers.RepeatedCompositeFieldContainer[Property] + def __init__( + self, properties: _Optional[_Iterable[_Union[Property, _Mapping]]] = ... + ) -> None: ... + +class Property(_message.Message): + __slots__ = ("name", "type", "description") + + class PropertyType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper): + __slots__ = () + UNSPECIFIED: _ClassVar[Property.PropertyType] + INT64: _ClassVar[Property.PropertyType] + BOOL: _ClassVar[Property.PropertyType] + STRING: _ClassVar[Property.PropertyType] + DOUBLE: _ClassVar[Property.PropertyType] + UNSPECIFIED: Property.PropertyType + INT64: Property.PropertyType + BOOL: Property.PropertyType + STRING: Property.PropertyType + DOUBLE: Property.PropertyType + NAME_FIELD_NUMBER: _ClassVar[int] + TYPE_FIELD_NUMBER: _ClassVar[int] + DESCRIPTION_FIELD_NUMBER: _ClassVar[int] + name: str + type: Property.PropertyType + description: str + def __init__( + self, + name: _Optional[str] = ..., + type: _Optional[_Union[Property.PropertyType, str]] = ..., + description: _Optional[str] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/context.proto b/ocr/.venv/Lib/site-packages/google/api/context.proto new file mode 100644 index 00000000..5b137f5f --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/context.proto @@ -0,0 +1,92 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "ContextProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Context` defines which contexts an API requests. +// +// Example: +// +// context: +// rules: +// - selector: "*" +// requested: +// - google.rpc.context.ProjectContext +// - google.rpc.context.OriginContext +// +// The above specifies that all methods in the API request +// `google.rpc.context.ProjectContext` and +// `google.rpc.context.OriginContext`. +// +// Available context types are defined in package +// `google.rpc.context`. +// +// This also provides mechanism to allowlist any protobuf message extension that +// can be sent in grpc metadata using “x-goog-ext--bin” and +// “x-goog-ext--jspb” format. For example, list any service +// specific protobuf types that can appear in grpc metadata as follows in your +// yaml file: +// +// Example: +// +// context: +// rules: +// - selector: "google.example.library.v1.LibraryService.CreateBook" +// allowed_request_extensions: +// - google.foo.v1.NewExtension +// allowed_response_extensions: +// - google.foo.v1.NewExtension +// +// You can also specify extension ID instead of fully qualified extension name +// here. +message Context { + // A list of RPC context rules that apply to individual API methods. + // + // **NOTE:** All service configuration rules follow "last one wins" order. + repeated ContextRule rules = 1; +} + +// A context rule provides information about the context for an individual API +// element. +message ContextRule { + // Selects the methods to which this rule applies. + // + // Refer to [selector][google.api.DocumentationRule.selector] for syntax + // details. + string selector = 1; + + // A list of full type names of requested contexts, only the requested context + // will be made available to the backend. + repeated string requested = 2; + + // A list of full type names of provided contexts. It is used to support + // propagating HTTP headers and ETags from the response extension. + repeated string provided = 3; + + // A list of full type names or extension IDs of extensions allowed in grpc + // side channel from client to backend. + repeated string allowed_request_extensions = 4; + + // A list of full type names or extension IDs of extensions allowed in grpc + // side channel from backend to client. + repeated string allowed_response_extensions = 5; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/context_pb2.py b/ocr/.venv/Lib/site-packages/google/api/context_pb2.py new file mode 100644 index 00000000..852b9f6a --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/context_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/context.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/context.proto\x12\ngoogle.api"1\n\x07\x43ontext\x12&\n\x05rules\x18\x01 \x03(\x0b\x32\x17.google.api.ContextRule"\x8d\x01\n\x0b\x43ontextRule\x12\x10\n\x08selector\x18\x01 \x01(\t\x12\x11\n\trequested\x18\x02 \x03(\t\x12\x10\n\x08provided\x18\x03 \x03(\t\x12"\n\x1a\x61llowed_request_extensions\x18\x04 \x03(\t\x12#\n\x1b\x61llowed_response_extensions\x18\x05 \x03(\tBn\n\x0e\x63om.google.apiB\x0c\x43ontextProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.context_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014ContextProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_CONTEXT"]._serialized_start = 40 + _globals["_CONTEXT"]._serialized_end = 89 + _globals["_CONTEXTRULE"]._serialized_start = 92 + _globals["_CONTEXTRULE"]._serialized_end = 233 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/context_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/context_pb2.pyi new file mode 100644 index 00000000..6f761adf --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/context_pb2.pyi @@ -0,0 +1,60 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Context(_message.Message): + __slots__ = ("rules",) + RULES_FIELD_NUMBER: _ClassVar[int] + rules: _containers.RepeatedCompositeFieldContainer[ContextRule] + def __init__( + self, rules: _Optional[_Iterable[_Union[ContextRule, _Mapping]]] = ... + ) -> None: ... + +class ContextRule(_message.Message): + __slots__ = ( + "selector", + "requested", + "provided", + "allowed_request_extensions", + "allowed_response_extensions", + ) + SELECTOR_FIELD_NUMBER: _ClassVar[int] + REQUESTED_FIELD_NUMBER: _ClassVar[int] + PROVIDED_FIELD_NUMBER: _ClassVar[int] + ALLOWED_REQUEST_EXTENSIONS_FIELD_NUMBER: _ClassVar[int] + ALLOWED_RESPONSE_EXTENSIONS_FIELD_NUMBER: _ClassVar[int] + selector: str + requested: _containers.RepeatedScalarFieldContainer[str] + provided: _containers.RepeatedScalarFieldContainer[str] + allowed_request_extensions: _containers.RepeatedScalarFieldContainer[str] + allowed_response_extensions: _containers.RepeatedScalarFieldContainer[str] + def __init__( + self, + selector: _Optional[str] = ..., + requested: _Optional[_Iterable[str]] = ..., + provided: _Optional[_Iterable[str]] = ..., + allowed_request_extensions: _Optional[_Iterable[str]] = ..., + allowed_response_extensions: _Optional[_Iterable[str]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/control.proto b/ocr/.venv/Lib/site-packages/google/api/control.proto new file mode 100644 index 00000000..ce3f2871 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/control.proto @@ -0,0 +1,41 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/api/policy.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "ControlProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// Selects and configures the service controller used by the service. +// +// Example: +// +// control: +// environment: servicecontrol.googleapis.com +message Control { + // The service controller environment to use. If empty, no control plane + // feature (like quota and billing) will be enabled. The recommended value for + // most services is servicecontrol.googleapis.com + string environment = 1; + + // Defines policies applying to the API methods of the service. + repeated MethodPolicy method_policies = 4; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/control_pb2.py b/ocr/.venv/Lib/site-packages/google/api/control_pb2.py new file mode 100644 index 00000000..f9420bd2 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/control_pb2.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/control.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.api import policy_pb2 as google_dot_api_dot_policy__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x18google/api/control.proto\x12\ngoogle.api\x1a\x17google/api/policy.proto"Q\n\x07\x43ontrol\x12\x13\n\x0b\x65nvironment\x18\x01 \x01(\t\x12\x31\n\x0fmethod_policies\x18\x04 \x03(\x0b\x32\x18.google.api.MethodPolicyBn\n\x0e\x63om.google.apiB\x0c\x43ontrolProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "google.api.control_pb2", _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\014ControlProtoP\001ZEgoogle.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig\242\002\004GAPI" + _globals["_CONTROL"]._serialized_start = 65 + _globals["_CONTROL"]._serialized_end = 146 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/control_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/control_pb2.pyi new file mode 100644 index 00000000..94af7c78 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/control_pb2.pyi @@ -0,0 +1,42 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.api import policy_pb2 as _policy_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Control(_message.Message): + __slots__ = ("environment", "method_policies") + ENVIRONMENT_FIELD_NUMBER: _ClassVar[int] + METHOD_POLICIES_FIELD_NUMBER: _ClassVar[int] + environment: str + method_policies: _containers.RepeatedCompositeFieldContainer[ + _policy_pb2.MethodPolicy + ] + def __init__( + self, + environment: _Optional[str] = ..., + method_policies: _Optional[ + _Iterable[_Union[_policy_pb2.MethodPolicy, _Mapping]] + ] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/distribution.proto b/ocr/.venv/Lib/site-packages/google/api/distribution.proto new file mode 100644 index 00000000..215be7d3 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/distribution.proto @@ -0,0 +1,213 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +import "google/protobuf/any.proto"; +import "google/protobuf/timestamp.proto"; + +option go_package = "google.golang.org/genproto/googleapis/api/distribution;distribution"; +option java_multiple_files = true; +option java_outer_classname = "DistributionProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Distribution` contains summary statistics for a population of values. It +// optionally contains a histogram representing the distribution of those values +// across a set of buckets. +// +// The summary statistics are the count, mean, sum of the squared deviation from +// the mean, the minimum, and the maximum of the set of population of values. +// The histogram is based on a sequence of buckets and gives a count of values +// that fall into each bucket. The boundaries of the buckets are given either +// explicitly or by formulas for buckets of fixed or exponentially increasing +// widths. +// +// Although it is not forbidden, it is generally a bad idea to include +// non-finite values (infinities or NaNs) in the population of values, as this +// will render the `mean` and `sum_of_squared_deviation` fields meaningless. +message Distribution { + // The range of the population values. + message Range { + // The minimum of the population values. + double min = 1; + + // The maximum of the population values. + double max = 2; + } + + // `BucketOptions` describes the bucket boundaries used to create a histogram + // for the distribution. The buckets can be in a linear sequence, an + // exponential sequence, or each bucket can be specified explicitly. + // `BucketOptions` does not include the number of values in each bucket. + // + // A bucket has an inclusive lower bound and exclusive upper bound for the + // values that are counted for that bucket. The upper bound of a bucket must + // be strictly greater than the lower bound. The sequence of N buckets for a + // distribution consists of an underflow bucket (number 0), zero or more + // finite buckets (number 1 through N - 2) and an overflow bucket (number N - + // 1). The buckets are contiguous: the lower bound of bucket i (i > 0) is the + // same as the upper bound of bucket i - 1. The buckets span the whole range + // of finite values: lower bound of the underflow bucket is -infinity and the + // upper bound of the overflow bucket is +infinity. The finite buckets are + // so-called because both bounds are finite. + message BucketOptions { + // Specifies a linear sequence of buckets that all have the same width + // (except overflow and underflow). Each bucket represents a constant + // absolute uncertainty on the specific value in the bucket. + // + // There are `num_finite_buckets + 2` (= N) buckets. Bucket `i` has the + // following boundaries: + // + // Upper bound (0 <= i < N-1): offset + (width * i). + // + // Lower bound (1 <= i < N): offset + (width * (i - 1)). + message Linear { + // Must be greater than 0. + int32 num_finite_buckets = 1; + + // Must be greater than 0. + double width = 2; + + // Lower bound of the first bucket. + double offset = 3; + } + + // Specifies an exponential sequence of buckets that have a width that is + // proportional to the value of the lower bound. Each bucket represents a + // constant relative uncertainty on a specific value in the bucket. + // + // There are `num_finite_buckets + 2` (= N) buckets. Bucket `i` has the + // following boundaries: + // + // Upper bound (0 <= i < N-1): scale * (growth_factor ^ i). + // + // Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)). + message Exponential { + // Must be greater than 0. + int32 num_finite_buckets = 1; + + // Must be greater than 1. + double growth_factor = 2; + + // Must be greater than 0. + double scale = 3; + } + + // Specifies a set of buckets with arbitrary widths. + // + // There are `size(bounds) + 1` (= N) buckets. Bucket `i` has the following + // boundaries: + // + // Upper bound (0 <= i < N-1): bounds[i] + // Lower bound (1 <= i < N); bounds[i - 1] + // + // The `bounds` field must contain at least one element. If `bounds` has + // only one element, then there are no finite buckets, and that single + // element is the common boundary of the overflow and underflow buckets. + message Explicit { + // The values must be monotonically increasing. + repeated double bounds = 1; + } + + // Exactly one of these three fields must be set. + oneof options { + // The linear bucket. + Linear linear_buckets = 1; + + // The exponential buckets. + Exponential exponential_buckets = 2; + + // The explicit buckets. + Explicit explicit_buckets = 3; + } + } + + // Exemplars are example points that may be used to annotate aggregated + // distribution values. They are metadata that gives information about a + // particular value added to a Distribution bucket, such as a trace ID that + // was active when a value was added. They may contain further information, + // such as a example values and timestamps, origin, etc. + message Exemplar { + // Value of the exemplar point. This value determines to which bucket the + // exemplar belongs. + double value = 1; + + // The observation (sampling) time of the above value. + google.protobuf.Timestamp timestamp = 2; + + // Contextual information about the example value. Examples are: + // + // Trace: type.googleapis.com/google.monitoring.v3.SpanContext + // + // Literal string: type.googleapis.com/google.protobuf.StringValue + // + // Labels dropped during aggregation: + // type.googleapis.com/google.monitoring.v3.DroppedLabels + // + // There may be only a single attachment of any given message type in a + // single exemplar, and this is enforced by the system. + repeated google.protobuf.Any attachments = 3; + } + + // The number of values in the population. Must be non-negative. This value + // must equal the sum of the values in `bucket_counts` if a histogram is + // provided. + int64 count = 1; + + // The arithmetic mean of the values in the population. If `count` is zero + // then this field must be zero. + double mean = 2; + + // The sum of squared deviations from the mean of the values in the + // population. For values x_i this is: + // + // Sum[i=1..n]((x_i - mean)^2) + // + // Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition + // describes Welford's method for accumulating this sum in one pass. + // + // If `count` is zero then this field must be zero. + double sum_of_squared_deviation = 3; + + // If specified, contains the range of the population values. The field + // must not be present if the `count` is zero. + Range range = 4; + + // Defines the histogram bucket boundaries. If the distribution does not + // contain a histogram, then omit this field. + BucketOptions bucket_options = 6; + + // The number of values in each bucket of the histogram, as described in + // `bucket_options`. If the distribution does not have a histogram, then omit + // this field. If there is a histogram, then the sum of the values in + // `bucket_counts` must equal the value in the `count` field of the + // distribution. + // + // If present, `bucket_counts` should contain N values, where N is the number + // of buckets specified in `bucket_options`. If you supply fewer than N + // values, the remaining values are assumed to be 0. + // + // The order of the values in `bucket_counts` follows the bucket numbering + // schemes described for the three bucket types. The first value must be the + // count for the underflow bucket (number 0). The next N-2 values are the + // counts for the finite buckets (number 1 through N-2). The N'th value in + // `bucket_counts` is the count for the overflow bucket (number N-1). + repeated int64 bucket_counts = 7; + + // Must be in increasing order of `value` field. + repeated Exemplar exemplars = 10; +} diff --git a/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.py b/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.py new file mode 100644 index 00000000..7266e9f7 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- + +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: google/api/distribution.proto +# Protobuf Python Version: 4.25.3 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder + +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2 +from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile( + b'\n\x1dgoogle/api/distribution.proto\x12\ngoogle.api\x1a\x19google/protobuf/any.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\xd9\x06\n\x0c\x44istribution\x12\r\n\x05\x63ount\x18\x01 \x01(\x03\x12\x0c\n\x04mean\x18\x02 \x01(\x01\x12 \n\x18sum_of_squared_deviation\x18\x03 \x01(\x01\x12-\n\x05range\x18\x04 \x01(\x0b\x32\x1e.google.api.Distribution.Range\x12>\n\x0e\x62ucket_options\x18\x06 \x01(\x0b\x32&.google.api.Distribution.BucketOptions\x12\x15\n\rbucket_counts\x18\x07 \x03(\x03\x12\x34\n\texemplars\x18\n \x03(\x0b\x32!.google.api.Distribution.Exemplar\x1a!\n\x05Range\x12\x0b\n\x03min\x18\x01 \x01(\x01\x12\x0b\n\x03max\x18\x02 \x01(\x01\x1a\xb5\x03\n\rBucketOptions\x12G\n\x0elinear_buckets\x18\x01 \x01(\x0b\x32-.google.api.Distribution.BucketOptions.LinearH\x00\x12Q\n\x13\x65xponential_buckets\x18\x02 \x01(\x0b\x32\x32.google.api.Distribution.BucketOptions.ExponentialH\x00\x12K\n\x10\x65xplicit_buckets\x18\x03 \x01(\x0b\x32/.google.api.Distribution.BucketOptions.ExplicitH\x00\x1a\x43\n\x06Linear\x12\x1a\n\x12num_finite_buckets\x18\x01 \x01(\x05\x12\r\n\x05width\x18\x02 \x01(\x01\x12\x0e\n\x06offset\x18\x03 \x01(\x01\x1aO\n\x0b\x45xponential\x12\x1a\n\x12num_finite_buckets\x18\x01 \x01(\x05\x12\x15\n\rgrowth_factor\x18\x02 \x01(\x01\x12\r\n\x05scale\x18\x03 \x01(\x01\x1a\x1a\n\x08\x45xplicit\x12\x0e\n\x06\x62ounds\x18\x01 \x03(\x01\x42\t\n\x07options\x1as\n\x08\x45xemplar\x12\r\n\x05value\x18\x01 \x01(\x01\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12)\n\x0b\x61ttachments\x18\x03 \x03(\x0b\x32\x14.google.protobuf.AnyBq\n\x0e\x63om.google.apiB\x11\x44istributionProtoP\x01ZCgoogle.golang.org/genproto/googleapis/api/distribution;distribution\xa2\x02\x04GAPIb\x06proto3' +) + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages( + DESCRIPTOR, "google.api.distribution_pb2", _globals +) +if _descriptor._USE_C_DESCRIPTORS == False: + _globals["DESCRIPTOR"]._options = None + _globals[ + "DESCRIPTOR" + ]._serialized_options = b"\n\016com.google.apiB\021DistributionProtoP\001ZCgoogle.golang.org/genproto/googleapis/api/distribution;distribution\242\002\004GAPI" + _globals["_DISTRIBUTION"]._serialized_start = 106 + _globals["_DISTRIBUTION"]._serialized_end = 963 + _globals["_DISTRIBUTION_RANGE"]._serialized_start = 373 + _globals["_DISTRIBUTION_RANGE"]._serialized_end = 406 + _globals["_DISTRIBUTION_BUCKETOPTIONS"]._serialized_start = 409 + _globals["_DISTRIBUTION_BUCKETOPTIONS"]._serialized_end = 846 + _globals["_DISTRIBUTION_BUCKETOPTIONS_LINEAR"]._serialized_start = 659 + _globals["_DISTRIBUTION_BUCKETOPTIONS_LINEAR"]._serialized_end = 726 + _globals["_DISTRIBUTION_BUCKETOPTIONS_EXPONENTIAL"]._serialized_start = 728 + _globals["_DISTRIBUTION_BUCKETOPTIONS_EXPONENTIAL"]._serialized_end = 807 + _globals["_DISTRIBUTION_BUCKETOPTIONS_EXPLICIT"]._serialized_start = 809 + _globals["_DISTRIBUTION_BUCKETOPTIONS_EXPLICIT"]._serialized_end = 835 + _globals["_DISTRIBUTION_EXEMPLAR"]._serialized_start = 848 + _globals["_DISTRIBUTION_EXEMPLAR"]._serialized_end = 963 +# @@protoc_insertion_point(module_scope) diff --git a/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.pyi b/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.pyi new file mode 100644 index 00000000..eac613b8 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/distribution_pb2.pyi @@ -0,0 +1,144 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from typing import ClassVar as _ClassVar +from typing import Iterable as _Iterable +from typing import Mapping as _Mapping +from typing import Optional as _Optional +from typing import Union as _Union + +from google.protobuf import any_pb2 as _any_pb2 +from google.protobuf import descriptor as _descriptor +from google.protobuf import message as _message +from google.protobuf import timestamp_pb2 as _timestamp_pb2 +from google.protobuf.internal import containers as _containers + +DESCRIPTOR: _descriptor.FileDescriptor + +class Distribution(_message.Message): + __slots__ = ( + "count", + "mean", + "sum_of_squared_deviation", + "range", + "bucket_options", + "bucket_counts", + "exemplars", + ) + + class Range(_message.Message): + __slots__ = ("min", "max") + MIN_FIELD_NUMBER: _ClassVar[int] + MAX_FIELD_NUMBER: _ClassVar[int] + min: float + max: float + def __init__( + self, min: _Optional[float] = ..., max: _Optional[float] = ... + ) -> None: ... + + class BucketOptions(_message.Message): + __slots__ = ("linear_buckets", "exponential_buckets", "explicit_buckets") + + class Linear(_message.Message): + __slots__ = ("num_finite_buckets", "width", "offset") + NUM_FINITE_BUCKETS_FIELD_NUMBER: _ClassVar[int] + WIDTH_FIELD_NUMBER: _ClassVar[int] + OFFSET_FIELD_NUMBER: _ClassVar[int] + num_finite_buckets: int + width: float + offset: float + def __init__( + self, + num_finite_buckets: _Optional[int] = ..., + width: _Optional[float] = ..., + offset: _Optional[float] = ..., + ) -> None: ... + + class Exponential(_message.Message): + __slots__ = ("num_finite_buckets", "growth_factor", "scale") + NUM_FINITE_BUCKETS_FIELD_NUMBER: _ClassVar[int] + GROWTH_FACTOR_FIELD_NUMBER: _ClassVar[int] + SCALE_FIELD_NUMBER: _ClassVar[int] + num_finite_buckets: int + growth_factor: float + scale: float + def __init__( + self, + num_finite_buckets: _Optional[int] = ..., + growth_factor: _Optional[float] = ..., + scale: _Optional[float] = ..., + ) -> None: ... + + class Explicit(_message.Message): + __slots__ = ("bounds",) + BOUNDS_FIELD_NUMBER: _ClassVar[int] + bounds: _containers.RepeatedScalarFieldContainer[float] + def __init__(self, bounds: _Optional[_Iterable[float]] = ...) -> None: ... + LINEAR_BUCKETS_FIELD_NUMBER: _ClassVar[int] + EXPONENTIAL_BUCKETS_FIELD_NUMBER: _ClassVar[int] + EXPLICIT_BUCKETS_FIELD_NUMBER: _ClassVar[int] + linear_buckets: Distribution.BucketOptions.Linear + exponential_buckets: Distribution.BucketOptions.Exponential + explicit_buckets: Distribution.BucketOptions.Explicit + def __init__( + self, + linear_buckets: _Optional[ + _Union[Distribution.BucketOptions.Linear, _Mapping] + ] = ..., + exponential_buckets: _Optional[ + _Union[Distribution.BucketOptions.Exponential, _Mapping] + ] = ..., + explicit_buckets: _Optional[ + _Union[Distribution.BucketOptions.Explicit, _Mapping] + ] = ..., + ) -> None: ... + + class Exemplar(_message.Message): + __slots__ = ("value", "timestamp", "attachments") + VALUE_FIELD_NUMBER: _ClassVar[int] + TIMESTAMP_FIELD_NUMBER: _ClassVar[int] + ATTACHMENTS_FIELD_NUMBER: _ClassVar[int] + value: float + timestamp: _timestamp_pb2.Timestamp + attachments: _containers.RepeatedCompositeFieldContainer[_any_pb2.Any] + def __init__( + self, + value: _Optional[float] = ..., + timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., + attachments: _Optional[_Iterable[_Union[_any_pb2.Any, _Mapping]]] = ..., + ) -> None: ... + COUNT_FIELD_NUMBER: _ClassVar[int] + MEAN_FIELD_NUMBER: _ClassVar[int] + SUM_OF_SQUARED_DEVIATION_FIELD_NUMBER: _ClassVar[int] + RANGE_FIELD_NUMBER: _ClassVar[int] + BUCKET_OPTIONS_FIELD_NUMBER: _ClassVar[int] + BUCKET_COUNTS_FIELD_NUMBER: _ClassVar[int] + EXEMPLARS_FIELD_NUMBER: _ClassVar[int] + count: int + mean: float + sum_of_squared_deviation: float + range: Distribution.Range + bucket_options: Distribution.BucketOptions + bucket_counts: _containers.RepeatedScalarFieldContainer[int] + exemplars: _containers.RepeatedCompositeFieldContainer[Distribution.Exemplar] + def __init__( + self, + count: _Optional[int] = ..., + mean: _Optional[float] = ..., + sum_of_squared_deviation: _Optional[float] = ..., + range: _Optional[_Union[Distribution.Range, _Mapping]] = ..., + bucket_options: _Optional[_Union[Distribution.BucketOptions, _Mapping]] = ..., + bucket_counts: _Optional[_Iterable[int]] = ..., + exemplars: _Optional[_Iterable[_Union[Distribution.Exemplar, _Mapping]]] = ..., + ) -> None: ... diff --git a/ocr/.venv/Lib/site-packages/google/api/documentation.proto b/ocr/.venv/Lib/site-packages/google/api/documentation.proto new file mode 100644 index 00000000..b94a06d4 --- /dev/null +++ b/ocr/.venv/Lib/site-packages/google/api/documentation.proto @@ -0,0 +1,168 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.api; + +option go_package = "google.golang.org/genproto/googleapis/api/serviceconfig;serviceconfig"; +option java_multiple_files = true; +option java_outer_classname = "DocumentationProto"; +option java_package = "com.google.api"; +option objc_class_prefix = "GAPI"; + +// `Documentation` provides the information for describing a service. +// +// Example: +//

+ FastAPI +