From ab392fcb309b89d5c7e58e65bb5c1ca602aa2ec5 Mon Sep 17 00:00:00 2001 From: JasonFraser Date: Sat, 6 Jan 2024 22:10:13 -0400 Subject: [PATCH] second commit --- client/.eslintrc.json | 3 + client/.gitignore | 36 + client/README.md | 40 + client/next.config.js | 6 + client/package-lock.json | 4757 +++++++++ client/package.json | 27 + client/pages/_app.tsx | 6 + client/pages/_document.tsx | 13 + client/pages/api/hello.ts | 13 + client/pages/index.tsx | 47 + client/postcss.config.js | 6 + client/public/favicon.ico | Bin 0 -> 25931 bytes client/public/next.svg | 1 + client/public/vercel.svg | 1 + client/styles/globals.css | 4 + client/tailwind.config.ts | 20 + client/tsconfig.json | 22 + server/server.py | 16 + server/venv/bin/Activate.ps1 | 247 + server/venv/bin/activate | 69 + server/venv/bin/activate.csh | 26 + server/venv/bin/activate.fish | 69 + server/venv/bin/flask | 8 + server/venv/bin/pip | 8 + server/venv/bin/pip3 | 8 + server/venv/bin/pip3.10 | 8 + server/venv/bin/python | 1 + server/venv/bin/python3 | 1 + server/venv/bin/python3.10 | 1 + .../Flask_Cors-4.0.0.dist-info/INSTALLER | 1 + .../Flask_Cors-4.0.0.dist-info/LICENSE | 7 + .../Flask_Cors-4.0.0.dist-info/METADATA | 147 + .../Flask_Cors-4.0.0.dist-info/RECORD | 17 + .../Flask_Cors-4.0.0.dist-info/REQUESTED | 0 .../Flask_Cors-4.0.0.dist-info/WHEEL | 6 + .../Flask_Cors-4.0.0.dist-info/top_level.txt | 1 + .../Jinja2-3.1.2.dist-info/INSTALLER | 1 + .../Jinja2-3.1.2.dist-info/LICENSE.rst | 28 + .../Jinja2-3.1.2.dist-info/METADATA | 113 + .../Jinja2-3.1.2.dist-info/RECORD | 58 + .../Jinja2-3.1.2.dist-info/WHEEL | 5 + .../Jinja2-3.1.2.dist-info/entry_points.txt | 2 + .../Jinja2-3.1.2.dist-info/top_level.txt | 1 + .../MarkupSafe-2.1.3.dist-info/INSTALLER | 1 + .../MarkupSafe-2.1.3.dist-info/LICENSE.rst | 28 + .../MarkupSafe-2.1.3.dist-info/METADATA | 93 + .../MarkupSafe-2.1.3.dist-info/RECORD | 14 + .../MarkupSafe-2.1.3.dist-info/WHEEL | 6 + .../MarkupSafe-2.1.3.dist-info/top_level.txt | 1 + .../site-packages/_distutils_hack/__init__.py | 132 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5121 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 246 bytes .../site-packages/_distutils_hack/override.py | 1 + .../blinker-1.7.0.dist-info/INSTALLER | 1 + .../blinker-1.7.0.dist-info/LICENSE.rst | 20 + .../blinker-1.7.0.dist-info/METADATA | 62 + .../blinker-1.7.0.dist-info/RECORD | 14 + .../blinker-1.7.0.dist-info/WHEEL | 4 + .../site-packages/blinker/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 510 bytes .../__pycache__/_saferef.cpython-310.pyc | Bin 0 -> 7197 bytes .../__pycache__/_utilities.cpython-310.pyc | Bin 0 -> 3536 bytes .../blinker/__pycache__/base.cpython-310.pyc | Bin 0 -> 17510 bytes .../site-packages/blinker/_saferef.py | 230 + .../site-packages/blinker/_utilities.py | 105 + .../python3.10/site-packages/blinker/base.py | 558 ++ .../python3.10/site-packages/blinker/py.typed | 0 .../click-8.1.7.dist-info/INSTALLER | 1 + .../click-8.1.7.dist-info/LICENSE.rst | 28 + .../click-8.1.7.dist-info/METADATA | 103 + .../click-8.1.7.dist-info/RECORD | 39 + .../site-packages/click-8.1.7.dist-info/WHEEL | 5 + .../click-8.1.7.dist-info/top_level.txt | 1 + .../site-packages/click/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2629 bytes .../click/__pycache__/_compat.cpython-310.pyc | Bin 0 -> 15687 bytes .../__pycache__/_termui_impl.cpython-310.pyc | Bin 0 -> 16327 bytes .../__pycache__/_textwrap.cpython-310.pyc | Bin 0 -> 1563 bytes .../__pycache__/_winconsole.cpython-310.pyc | Bin 0 -> 7679 bytes .../click/__pycache__/core.cpython-310.pyc | Bin 0 -> 91157 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 17227 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 10271 bytes .../__pycache__/formatting.cpython-310.pyc | Bin 0 -> 9476 bytes .../click/__pycache__/globals.cpython-310.pyc | Bin 0 -> 2448 bytes .../click/__pycache__/parser.cpython-310.pyc | Bin 0 -> 13689 bytes .../shell_completion.cpython-310.pyc | Bin 0 -> 16864 bytes .../click/__pycache__/termui.cpython-310.pyc | Bin 0 -> 26149 bytes .../click/__pycache__/testing.cpython-310.pyc | Bin 0 -> 15222 bytes .../click/__pycache__/types.cpython-310.pyc | Bin 0 -> 33706 bytes .../click/__pycache__/utils.cpython-310.pyc | Bin 0 -> 18862 bytes .../python3.10/site-packages/click/_compat.py | 623 ++ .../site-packages/click/_termui_impl.py | 739 ++ .../site-packages/click/_textwrap.py | 49 + .../site-packages/click/_winconsole.py | 279 + .../python3.10/site-packages/click/core.py | 3042 ++++++ .../site-packages/click/decorators.py | 561 ++ .../site-packages/click/exceptions.py | 288 + .../site-packages/click/formatting.py | 301 + .../python3.10/site-packages/click/globals.py | 68 + .../python3.10/site-packages/click/parser.py | 529 + .../python3.10/site-packages/click/py.typed | 0 .../site-packages/click/shell_completion.py | 596 ++ .../python3.10/site-packages/click/termui.py | 784 ++ .../python3.10/site-packages/click/testing.py | 479 + .../python3.10/site-packages/click/types.py | 1089 +++ .../python3.10/site-packages/click/utils.py | 624 ++ .../site-packages/distutils-precedence.pth | 1 + .../flask-3.0.0.dist-info/INSTALLER | 1 + .../flask-3.0.0.dist-info/LICENSE.rst | 28 + .../flask-3.0.0.dist-info/METADATA | 116 + .../flask-3.0.0.dist-info/RECORD | 58 + .../flask-3.0.0.dist-info/REQUESTED | 0 .../site-packages/flask-3.0.0.dist-info/WHEEL | 4 + .../flask-3.0.0.dist-info/entry_points.txt | 3 + .../site-packages/flask/__init__.py | 60 + .../site-packages/flask/__main__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2300 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 225 bytes .../flask/__pycache__/app.cpython-310.pyc | Bin 0 -> 49696 bytes .../__pycache__/blueprints.cpython-310.pyc | Bin 0 -> 3436 bytes .../flask/__pycache__/cli.cpython-310.pyc | Bin 0 -> 27037 bytes .../flask/__pycache__/config.cpython-310.pyc | Bin 0 -> 12882 bytes .../flask/__pycache__/ctx.cpython-310.pyc | Bin 0 -> 14692 bytes .../__pycache__/debughelpers.cpython-310.pyc | Bin 0 -> 6023 bytes .../flask/__pycache__/globals.cpython-310.pyc | Bin 0 -> 1593 bytes .../flask/__pycache__/helpers.cpython-310.pyc | Bin 0 -> 21589 bytes .../flask/__pycache__/logging.cpython-310.pyc | Bin 0 -> 2556 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 13269 bytes .../flask/__pycache__/signals.cpython-310.pyc | Bin 0 -> 823 bytes .../__pycache__/templating.cpython-310.pyc | Bin 0 -> 7100 bytes .../flask/__pycache__/testing.cpython-310.pyc | Bin 0 -> 9709 bytes .../flask/__pycache__/typing.cpython-310.pyc | Bin 0 -> 1825 bytes .../flask/__pycache__/views.cpython-310.pyc | Bin 0 -> 5479 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 5211 bytes .../lib/python3.10/site-packages/flask/app.py | 1478 +++ .../site-packages/flask/blueprints.py | 91 + .../lib/python3.10/site-packages/flask/cli.py | 1068 +++ .../python3.10/site-packages/flask/config.py | 347 + .../lib/python3.10/site-packages/flask/ctx.py | 440 + .../site-packages/flask/debughelpers.py | 160 + .../python3.10/site-packages/flask/globals.py | 51 + .../python3.10/site-packages/flask/helpers.py | 623 ++ .../site-packages/flask/json/__init__.py | 170 + .../json/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6007 bytes .../json/__pycache__/provider.cpython-310.pyc | Bin 0 -> 7687 bytes .../json/__pycache__/tag.cpython-310.pyc | Bin 0 -> 11114 bytes .../site-packages/flask/json/provider.py | 216 + .../site-packages/flask/json/tag.py | 314 + .../python3.10/site-packages/flask/logging.py | 76 + .../python3.10/site-packages/flask/py.typed | 0 .../site-packages/flask/sansio/README.md | 6 + .../sansio/__pycache__/app.cpython-310.pyc | Bin 0 -> 28550 bytes .../__pycache__/blueprints.cpython-310.pyc | Bin 0 -> 22772 bytes .../__pycache__/scaffold.cpython-310.pyc | Bin 0 -> 23942 bytes .../site-packages/flask/sansio/app.py | 964 ++ .../site-packages/flask/sansio/blueprints.py | 626 ++ .../site-packages/flask/sansio/scaffold.py | 802 ++ .../site-packages/flask/sessions.py | 367 + .../python3.10/site-packages/flask/signals.py | 17 + .../site-packages/flask/templating.py | 221 + .../python3.10/site-packages/flask/testing.py | 295 + .../python3.10/site-packages/flask/typing.py | 88 + .../python3.10/site-packages/flask/views.py | 190 + .../site-packages/flask/wrappers.py | 173 + .../site-packages/flask_cors/__init__.py | 27 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 811 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 10527 bytes .../__pycache__/decorator.cpython-310.pyc | Bin 0 -> 4772 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7475 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 210 bytes .../site-packages/flask_cors/core.py | 382 + .../site-packages/flask_cors/decorator.py | 137 + .../site-packages/flask_cors/extension.py | 201 + .../site-packages/flask_cors/version.py | 1 + .../itsdangerous-2.1.2.dist-info/INSTALLER | 1 + .../itsdangerous-2.1.2.dist-info/LICENSE.rst | 28 + .../itsdangerous-2.1.2.dist-info/METADATA | 97 + .../itsdangerous-2.1.2.dist-info/RECORD | 23 + .../itsdangerous-2.1.2.dist-info/WHEEL | 5 + .../top_level.txt | 1 + .../site-packages/itsdangerous/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 878 bytes .../__pycache__/_json.cpython-310.pyc | Bin 0 -> 933 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1882 bytes .../__pycache__/exc.cpython-310.pyc | Bin 0 -> 3421 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 9705 bytes .../__pycache__/signer.cpython-310.pyc | Bin 0 -> 8473 bytes .../__pycache__/timed.cpython-310.pyc | Bin 0 -> 6487 bytes .../__pycache__/url_safe.cpython-310.pyc | Bin 0 -> 2706 bytes .../site-packages/itsdangerous/_json.py | 16 + .../site-packages/itsdangerous/encoding.py | 54 + .../site-packages/itsdangerous/exc.py | 107 + .../site-packages/itsdangerous/py.typed | 0 .../site-packages/itsdangerous/serializer.py | 295 + .../site-packages/itsdangerous/signer.py | 257 + .../site-packages/itsdangerous/timed.py | 234 + .../site-packages/itsdangerous/url_safe.py | 80 + .../site-packages/jinja2/__init__.py | 37 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1614 bytes .../__pycache__/_identifier.cpython-310.pyc | Bin 0 -> 2089 bytes .../__pycache__/async_utils.cpython-310.pyc | Bin 0 -> 2726 bytes .../__pycache__/bccache.cpython-310.pyc | Bin 0 -> 13960 bytes .../__pycache__/compiler.cpython-310.pyc | Bin 0 -> 54563 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 1550 bytes .../jinja2/__pycache__/debug.cpython-310.pyc | Bin 0 -> 4006 bytes .../__pycache__/defaults.cpython-310.pyc | Bin 0 -> 1350 bytes .../__pycache__/environment.cpython-310.pyc | Bin 0 -> 53400 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5549 bytes .../jinja2/__pycache__/ext.cpython-310.pyc | Bin 0 -> 25711 bytes .../__pycache__/filters.cpython-310.pyc | Bin 0 -> 51199 bytes .../__pycache__/idtracking.cpython-310.pyc | Bin 0 -> 11101 bytes .../jinja2/__pycache__/lexer.cpython-310.pyc | Bin 0 -> 20451 bytes .../__pycache__/loaders.cpython-310.pyc | Bin 0 -> 20534 bytes .../jinja2/__pycache__/meta.cpython-310.pyc | Bin 0 -> 3830 bytes .../__pycache__/nativetypes.cpython-310.pyc | Bin 0 -> 5025 bytes .../jinja2/__pycache__/nodes.cpython-310.pyc | Bin 0 -> 40316 bytes .../__pycache__/optimizer.cpython-310.pyc | Bin 0 -> 1970 bytes .../jinja2/__pycache__/parser.cpython-310.pyc | Bin 0 -> 27697 bytes .../__pycache__/runtime.cpython-310.pyc | Bin 0 -> 32163 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 11982 bytes .../jinja2/__pycache__/tests.cpython-310.pyc | Bin 0 -> 6704 bytes .../jinja2/__pycache__/utils.cpython-310.pyc | Bin 0 -> 24523 bytes .../__pycache__/visitor.cpython-310.pyc | Bin 0 -> 3989 bytes .../site-packages/jinja2/_identifier.py | 6 + .../site-packages/jinja2/async_utils.py | 84 + .../site-packages/jinja2/bccache.py | 406 + .../site-packages/jinja2/compiler.py | 1957 ++++ .../site-packages/jinja2/constants.py | 20 + .../python3.10/site-packages/jinja2/debug.py | 191 + .../site-packages/jinja2/defaults.py | 48 + .../site-packages/jinja2/environment.py | 1667 ++++ .../site-packages/jinja2/exceptions.py | 166 + .../python3.10/site-packages/jinja2/ext.py | 859 ++ .../site-packages/jinja2/filters.py | 1840 ++++ .../site-packages/jinja2/idtracking.py | 318 + .../python3.10/site-packages/jinja2/lexer.py | 866 ++ .../site-packages/jinja2/loaders.py | 661 ++ .../python3.10/site-packages/jinja2/meta.py | 111 + .../site-packages/jinja2/nativetypes.py | 130 + .../python3.10/site-packages/jinja2/nodes.py | 1204 +++ .../site-packages/jinja2/optimizer.py | 47 + .../python3.10/site-packages/jinja2/parser.py | 1032 ++ .../python3.10/site-packages/jinja2/py.typed | 0 .../site-packages/jinja2/runtime.py | 1053 ++ .../site-packages/jinja2/sandbox.py | 428 + .../python3.10/site-packages/jinja2/tests.py | 255 + .../python3.10/site-packages/jinja2/utils.py | 755 ++ .../site-packages/jinja2/visitor.py | 92 + .../site-packages/markupsafe/__init__.py | 304 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 11266 bytes .../__pycache__/_native.cpython-310.pyc | Bin 0 -> 2014 bytes .../site-packages/markupsafe/_native.py | 63 + .../site-packages/markupsafe/_speedups.c | 320 + .../_speedups.cpython-310-x86_64-linux-gnu.so | Bin 0 -> 44240 bytes .../site-packages/markupsafe/_speedups.pyi | 9 + .../site-packages/markupsafe/py.typed | 0 .../pip-22.0.2.dist-info/INSTALLER | 1 + .../pip-22.0.2.dist-info/LICENSE.txt | 20 + .../pip-22.0.2.dist-info/METADATA | 92 + .../site-packages/pip-22.0.2.dist-info/RECORD | 1037 ++ .../pip-22.0.2.dist-info/REQUESTED | 0 .../site-packages/pip-22.0.2.dist-info/WHEEL | 5 + .../pip-22.0.2.dist-info/entry_points.txt | 5 + .../pip-22.0.2.dist-info/top_level.txt | 1 + .../python3.10/site-packages/pip/__init__.py | 13 + .../python3.10/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 639 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 601 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 760 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9604 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 8387 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11133 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 23130 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 625 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3544 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 4584 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9146 bytes .../site-packages/pip/_internal/build_env.py | 296 + .../site-packages/pip/_internal/cache.py | 264 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 280 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5313 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6256 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 22555 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1314 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1378 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2164 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9951 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 9240 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13541 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4954 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 359 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 220 + .../pip/_internal/cli/cmdoptions.py | 1018 ++ .../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 | 292 + .../pip/_internal/cli/progress_bars.py | 321 + .../pip/_internal/cli/req_command.py | 506 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 127 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3143 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6184 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1577 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 3144 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8326 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6681 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 3991 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2657 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2156 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1317 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4640 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17799 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10366 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5370 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6123 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3114 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4846 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 96 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 202 + .../pip/_internal/commands/download.py | 140 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 771 ++ .../pip/_internal/commands/list.py | 363 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 178 + .../pip/_internal/commands/uninstall.py | 105 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 366 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 807 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1864 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1241 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4453 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1608 bytes .../pip/_internal/distributions/base.py | 36 + .../pip/_internal/distributions/installed.py | 20 + .../pip/_internal/distributions/sdist.py | 127 + .../pip/_internal/distributions/wheel.py | 31 + .../site-packages/pip/_internal/exceptions.py | 658 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 234 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 19313 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 28122 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7127 bytes .../pip/_internal/index/collector.py | 648 ++ .../pip/_internal/index/package_finder.py | 1004 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 520 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 12394 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4662 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6245 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1544 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 62 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2300 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 20854 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 9870 bytes .../pip/_internal/metadata/base.py | 546 ++ .../pip/_internal/metadata/pkg_resources.py | 256 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 268 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1420 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7293 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2745 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1237 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10169 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1036 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3491 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1698 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3449 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4365 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../pip/_internal/models/link.py | 288 + .../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 | 89 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 256 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7524 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2937 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5503 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8411 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 10732 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1452 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2069 bytes .../pip/_internal/network/auth.py | 323 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 185 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 454 + .../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 -> 204 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 4017 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6202 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14900 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1437 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1471 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2382 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1227 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1451 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2767 bytes .../_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 -> 268 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1555 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3339 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21097 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 738 ++ .../pip/_internal/operations/prepare.py | 642 ++ .../site-packages/pip/_internal/pyproject.py | 168 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2604 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12167 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13495 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 22184 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 5844 bytes .../__pycache__/req_tracker.cpython-310.pyc | Bin 0 -> 4312 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 18950 bytes .../pip/_internal/req/constructors.py | 490 + .../pip/_internal/req/req_file.py | 536 ++ .../pip/_internal/req/req_install.py | 858 ++ .../pip/_internal/req/req_set.py | 189 + .../pip/_internal/req/req_tracker.py | 124 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1056 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 211 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 12298 bytes .../_internal/resolution/legacy/resolver.py | 467 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 215 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6458 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18365 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19223 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4875 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7717 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3184 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7473 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8110 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 547 ++ .../resolution/resolvelib/factory.py | 739 ++ .../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 | 292 + .../pip/_internal/self_outdated_check.py | 189 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1527 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1625 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1515 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4084 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 522 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3320 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2090 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1106 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2155 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1312 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 1309 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 5167 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 949 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1678 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5201 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 994 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9638 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 19404 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1995 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2087 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4602 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5781 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7304 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6659 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1592 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3295 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4420 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 | 42 + .../pip/_internal/utils/egg_link.py | 75 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../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 | 343 + .../site-packages/pip/_internal/utils/misc.py | 653 ++ .../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 | 258 + .../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 -> 522 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3349 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12552 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5068 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8456 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21151 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 | 377 + .../site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2922 bytes .../__pycache__/distro.cpython-310.pyc | Bin 0 -> 38240 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27589 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66585 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 650 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1588 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3164 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 1854 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 764 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8218 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2800 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4724 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4259 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 695 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 43 + .../_vendor/cachecontrol/caches/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 301 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 3375 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1581 bytes .../_vendor/cachecontrol/caches/file_cache.py | 150 + .../cachecontrol/caches/redis_cache.py | 37 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 415 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 186 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 283 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 462 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1521 bytes .../pip/_vendor/certifi/cacert.pem | 4362 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1907 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27186 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1137 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 5747 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2236 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3490 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2909 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 408 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1144 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2591 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2638 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8385 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2440 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12070 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1145 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27190 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1145 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19114 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1153 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3026 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22142 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37649 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47930 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46120 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44569 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47890 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61023 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44745 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44586 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4436 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2255 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1140 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 18767 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3086 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1709 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2478 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 5832 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 1989 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 446 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2702 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 7970 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 451 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3012 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 7910 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1698 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 3958 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4575 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../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 -> 1070 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31416 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 42871 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17325 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38384 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10238 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 5042 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26570 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11044 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11260 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 51703 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20157 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 27317 bytes .../pip/_vendor/distlib/compat.py | 1116 +++ .../pip/_vendor/distlib/database.py | 1345 +++ .../pip/_vendor/distlib/index.py | 509 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 152 + .../pip/_vendor/distlib/metadata.py | 1058 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 429 + .../site-packages/pip/_vendor/distlib/util.py | 1932 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../pip/_vendor/distlib/wheel.py | 1053 ++ .../site-packages/pip/_vendor/distro.py | 1386 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1310 bytes .../__pycache__/_ihatexml.cpython-310.pyc | Bin 0 -> 13865 bytes .../__pycache__/_inputstream.cpython-310.pyc | Bin 0 -> 21682 bytes .../__pycache__/_tokenizer.cpython-310.pyc | Bin 0 -> 37328 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 4804 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 161269 bytes .../__pycache__/html5parser.cpython-310.pyc | Bin 0 -> 88479 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 10745 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 360 bytes .../_trie/__pycache__/_base.cpython-310.pyc | Bin 0 -> 1612 bytes .../_trie/__pycache__/py.cpython-310.pyc | Bin 0 -> 2275 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../alphabeticalattributes.cpython-310.pyc | Bin 0 -> 1338 bytes .../filters/__pycache__/base.cpython-310.pyc | Bin 0 -> 878 bytes .../inject_meta_charset.cpython-310.pyc | Bin 0 -> 1876 bytes .../filters/__pycache__/lint.cpython-310.pyc | Bin 0 -> 2584 bytes .../__pycache__/optionaltags.cpython-310.pyc | Bin 0 -> 2735 bytes .../__pycache__/sanitizer.cpython-310.pyc | Bin 0 -> 20032 bytes .../__pycache__/whitespace.cpython-310.pyc | Bin 0 -> 1382 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 949 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1561 bytes .../__pycache__/sax.cpython-310.pyc | Bin 0 -> 1468 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3340 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11331 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 9418 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 11720 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 13035 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3990 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6951 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 1722 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 3480 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 6567 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1928 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 855 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2826 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 755 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9570 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38233 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1992 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 219 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 150954 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 | 54 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1435 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 226 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1816 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6324 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25453 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1012 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 598 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 454 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7308 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4620 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2713 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9295 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3983 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21535 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12198 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3583 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12933 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 -> 321 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3604 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4568 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 2972 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1545 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1363 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4386 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 2968 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12314 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 -> 929 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 10076 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 -> 99884 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 668 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 331 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10484 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1244 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4276 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5210 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3198 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6899 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 303 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6442 bytes .../pip/_vendor/platformdirs/android.py | 119 + .../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/progress/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5738 bytes .../progress/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2703 bytes .../__pycache__/colors.cpython-310.pyc | Bin 0 -> 1496 bytes .../__pycache__/counter.cpython-310.pyc | Bin 0 -> 1567 bytes .../__pycache__/spinner.cpython-310.pyc | Bin 0 -> 1397 bytes .../site-packages/pip/_vendor/progress/bar.py | 93 + .../pip/_vendor/progress/colors.py | 79 + .../pip/_vendor/progress/counter.py | 47 + .../pip/_vendor/progress/spinner.py | 45 + .../pip/_vendor/pygments/__init__.py | 83 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3000 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 596 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15459 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1891 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2662 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 3018 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24372 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1200 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2052 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2964 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3565 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4550 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4587 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4659 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31213 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9170 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 -> 29521 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 153 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4676 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 5543 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3093 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4366 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29077 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17505 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4596 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13502 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4812 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2112 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4142 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6340 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 4007 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9257 bytes .../_vendor/pygments/formatters/_mapping.py | 84 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 168 + .../pip/_vendor/pygments/formatters/html.py | 983 ++ .../pip/_vendor/pygments/formatters/img.py | 641 ++ .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 511 + .../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 | 879 ++ .../pip/_vendor/pygments/lexers/__init__.py | 341 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9192 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 58130 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29391 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 580 ++ .../pip/_vendor/pygments/lexers/python.py | 1188 +++ .../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 -> 3228 bytes .../pip/_vendor/pygments/token.py | 212 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 328 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7133 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7190 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10113 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 175243 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9080 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 34775 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24787 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12108 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9822 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8613 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5789 +++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 593 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 15653 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1069 +++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 332 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4046 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 563 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1315 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 17051 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6662 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8105 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 647 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1682 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18695 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5256 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2915 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 1002 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24321 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 516 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19629 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4679 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4461 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24404 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 159 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 77 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 133 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 973 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 771 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1060 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 614 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6665 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2585 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15138 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7171 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 385 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 | 172 + .../pip/_vendor/rich/__main__.py | 280 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5899 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7333 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7822 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360062 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1202 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 503 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 6620 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2648 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1300 bytes .../__pycache__/_lru_cache.cpython-310.pyc | Bin 0 -> 1583 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5105 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 648 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5165 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 15221 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 846 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 695 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1886 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1524 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1322 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7976 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 6025 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2991 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 7765 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3507 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 16763 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1445 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6205 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 70450 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1762 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6494 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 6837 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6037 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 363 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3275 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1535 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2272 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2624 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 5351 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4755 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3834 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14686 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11576 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3410 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9302 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5921 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5066 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4490 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1503 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3716 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 6399 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 25111 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 33339 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6715 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11307 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1379 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 535 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4048 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 3745 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2996 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1887 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20577 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4407 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4601 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20530 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1771 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 19044 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 26982 bytes .../rich/__pycache__/tabulate.cpython-310.pyc | Bin 0 -> 1764 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 1728 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 39292 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4708 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 301 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19545 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7325 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/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 210 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_lru_cache.py | 34 + .../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 | 848 ++ .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_windows.py | 72 + .../site-packages/pip/_vendor/rich/_wrap.py | 55 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 312 + .../site-packages/pip/_vendor/rich/ansi.py | 228 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 483 + .../site-packages/pip/_vendor/rich/cells.py | 147 + .../site-packages/pip/_vendor/rich/color.py | 581 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2211 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 175 + .../pip/_vendor/rich/default_styles.py | 183 + .../pip/_vendor/rich/diagnose.py | 6 + .../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 | 147 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 92 + .../site-packages/pip/_vendor/rich/layout.py | 444 + .../site-packages/pip/_vendor/rich/live.py | 365 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 268 + .../site-packages/pip/_vendor/rich/markup.py | 244 + .../site-packages/pip/_vendor/rich/measure.py | 149 + .../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 | 250 + .../site-packages/pip/_vendor/rich/pretty.py | 903 ++ .../pip/_vendor/rich/progress.py | 1036 ++ .../pip/_vendor/rich/progress_bar.py | 216 + .../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 | 151 + .../site-packages/pip/_vendor/rich/rule.py | 115 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 720 ++ .../site-packages/pip/_vendor/rich/spinner.py | 134 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 785 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 735 ++ .../site-packages/pip/_vendor/rich/table.py | 968 ++ .../pip/_vendor/rich/tabulate.py | 51 + .../pip/_vendor/rich/terminal_theme.py | 55 + .../site-packages/pip/_vendor/rich/text.py | 1282 +++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 678 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16382 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2622 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1235 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1239 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1117 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1419 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1207 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8437 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4025 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1772 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 7969 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 | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 387 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 16341 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2431 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/typing_extensions.py | 2296 +++++ .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2197 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 11362 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 221 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13644 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25486 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11002 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8191 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2758 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15306 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5634 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 20925 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 569 ++ .../pip/_vendor/urllib3/connectionpool.py | 1113 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1387 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8203 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3642 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15544 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21949 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5609 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 224 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10720 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9107 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 | 511 + .../urllib3/contrib/securetransport.py | 922 ++ .../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 -> 208 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27662 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 218 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1318 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../pip/_vendor/urllib3/poolmanager.py | 539 ++ .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1117 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3445 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1350 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1072 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3480 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2365 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16160 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11317 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3289 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7407 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8941 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10686 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3101 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 | 143 + .../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 | 161 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 432 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../site-packages/pip/_vendor/vendor.txt | 25 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9754 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5244 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1949 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5051 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2600 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 + .../lib/python3.10/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3303 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100609 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20262 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198754 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 26 + .../_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 608 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 464 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7318 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4630 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2988 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9314 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4002 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 22206 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12232 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3593 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12943 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 67 + .../_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 828 ++ .../pkg_resources/_vendor/packaging/tags.py | 484 + .../pkg_resources/_vendor/packaging/utils.py | 136 + .../_vendor/packaging/version.py | 504 + .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2909 bytes .../__pycache__/setup.cpython-310.pyc | Bin 0 -> 329 bytes .../data/my-test-package-source/setup.py | 6 + .../setuptools-59.6.0.dist-info/INSTALLER | 1 + .../setuptools-59.6.0.dist-info/LICENSE | 19 + .../setuptools-59.6.0.dist-info/METADATA | 124 + .../setuptools-59.6.0.dist-info/RECORD | 298 + .../setuptools-59.6.0.dist-info/REQUESTED | 0 .../setuptools-59.6.0.dist-info/WHEEL | 5 + .../entry_points.txt | 56 + .../setuptools-59.6.0.dist-info/top_level.txt | 4 + .../site-packages/setuptools/__init__.py | 242 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8605 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 562 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2088 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 5858 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9472 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 20941 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 869 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5308 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 36349 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 1514 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 1958 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3747 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2993 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 919 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4647 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42651 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3630 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32743 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 494 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15770 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1124 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 336 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7362 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1037 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 570 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13847 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6575 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6562 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33319 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13962 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3601 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 7102 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 9009 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 264 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2785 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5896 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34061 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 5006 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7020 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10644 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 5990 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10836 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2321 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17576 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14795 bytes .../__pycache__/py35compat.cpython-310.pyc | Bin 0 -> 640 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 437 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2907 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12888 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8483 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 6815 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 14756 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7857 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5350 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1123 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 543 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3677 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3656 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 19732 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12300 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8643 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3905 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4882 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16230 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9901 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4024 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 5021 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2160 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10342 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 15280 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2359 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3324 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1782 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5184 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2211 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1052 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8695 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14511 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5387 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 755 ++ .../setuptools/_distutils/command/build_py.py | 392 + .../_distutils/command/build_scripts.py | 152 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 721 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 84 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 249 + .../setuptools/_distutils/cygwinccompiler.py | 425 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 355 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 106 + .../setuptools/_distutils/sysconfig.py | 601 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 325 + .../setuptools/_distutils/util.py | 548 ++ .../setuptools/_distutils/version.py | 363 + .../setuptools/_distutils/versionpredicate.py | 169 + .../site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16334 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198751 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 279 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 109997 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 17979 bytes .../setuptools/_vendor/more_itertools/more.py | 3825 ++++++++ .../_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 -> 605 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 461 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7315 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4627 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2985 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9308 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3996 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 22203 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12229 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3590 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12940 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 67 + .../setuptools/_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 828 ++ .../setuptools/_vendor/packaging/tags.py | 484 + .../setuptools/_vendor/packaging/utils.py | 136 + .../setuptools/_vendor/packaging/version.py | 504 + .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 290 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli-arm64.exe | Bin 0 -> 137216 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 387 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2389 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13115 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1602 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2476 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9905 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 8278 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6165 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 1407 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 65184 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22763 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4213 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2938 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5153 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2442 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4549 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 853 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2520 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 939 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6968 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4701 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8145 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 826 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6195 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 40 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 242 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2354 +++++ .../setuptools/command/egg_info.py | 755 ++ .../setuptools/command/install.py | 132 + .../setuptools/command/install_egg_info.py | 82 + .../setuptools/command/install_lib.py | 148 + .../setuptools/command/install_scripts.py | 69 + .../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 | 252 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../site-packages/setuptools/config.py | 751 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 176 + .../site-packages/setuptools/dist.py | 1156 +++ .../site-packages/setuptools/errors.py | 40 + .../site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2948 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui-arm64.exe | Bin 0 -> 137728 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 104 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/monkey.py | 177 + .../site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1127 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + .../werkzeug-3.0.1.dist-info/INSTALLER | 1 + .../werkzeug-3.0.1.dist-info/LICENSE.rst | 28 + .../werkzeug-3.0.1.dist-info/METADATA | 118 + .../werkzeug-3.0.1.dist-info/RECORD | 125 + .../werkzeug-3.0.1.dist-info/WHEEL | 4 + .../site-packages/werkzeug/__init__.py | 25 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 946 bytes .../__pycache__/_internal.cpython-310.pyc | Bin 0 -> 7068 bytes .../__pycache__/_reloader.cpython-310.pyc | Bin 0 -> 12638 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 27338 bytes .../__pycache__/formparser.cpython-310.pyc | Bin 0 -> 12660 bytes .../werkzeug/__pycache__/http.cpython-310.pyc | Bin 0 -> 38903 bytes .../__pycache__/local.cpython-310.pyc | Bin 0 -> 20934 bytes .../__pycache__/security.cpython-310.pyc | Bin 0 -> 5365 bytes .../__pycache__/serving.cpython-310.pyc | Bin 0 -> 30461 bytes .../werkzeug/__pycache__/test.cpython-310.pyc | Bin 0 -> 42903 bytes .../__pycache__/testapp.cpython-310.pyc | Bin 0 -> 6407 bytes .../werkzeug/__pycache__/urls.cpython-310.pyc | Bin 0 -> 6459 bytes .../__pycache__/user_agent.cpython-310.pyc | Bin 0 -> 1874 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 22292 bytes .../werkzeug/__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 19966 bytes .../site-packages/werkzeug/_internal.py | 214 + .../site-packages/werkzeug/_reloader.py | 458 + .../werkzeug/datastructures/__init__.py | 34 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1568 bytes .../__pycache__/accept.cpython-310.pyc | Bin 0 -> 10660 bytes .../__pycache__/auth.cpython-310.pyc | Bin 0 -> 10483 bytes .../__pycache__/cache_control.cpython-310.pyc | Bin 0 -> 6627 bytes .../__pycache__/csp.cpython-310.pyc | Bin 0 -> 4163 bytes .../__pycache__/etag.cpython-310.pyc | Bin 0 -> 3927 bytes .../__pycache__/file_storage.cpython-310.pyc | Bin 0 -> 6076 bytes .../__pycache__/headers.cpython-310.pyc | Bin 0 -> 17768 bytes .../__pycache__/mixins.cpython-310.pyc | Bin 0 -> 9063 bytes .../__pycache__/range.cpython-310.pyc | Bin 0 -> 6030 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 35947 bytes .../werkzeug/datastructures/accept.py | 326 + .../werkzeug/datastructures/accept.pyi | 54 + .../werkzeug/datastructures/auth.py | 318 + .../werkzeug/datastructures/cache_control.py | 175 + .../werkzeug/datastructures/cache_control.pyi | 109 + .../werkzeug/datastructures/csp.py | 94 + .../werkzeug/datastructures/csp.pyi | 169 + .../werkzeug/datastructures/etag.py | 95 + .../werkzeug/datastructures/etag.pyi | 30 + .../werkzeug/datastructures/file_storage.py | 196 + .../werkzeug/datastructures/file_storage.pyi | 47 + .../werkzeug/datastructures/headers.py | 515 + .../werkzeug/datastructures/headers.pyi | 109 + .../werkzeug/datastructures/mixins.py | 242 + .../werkzeug/datastructures/mixins.pyi | 97 + .../werkzeug/datastructures/range.py | 180 + .../werkzeug/datastructures/range.pyi | 57 + .../werkzeug/datastructures/structures.py | 1006 ++ .../werkzeug/datastructures/structures.pyi | 208 + .../site-packages/werkzeug/debug/__init__.py | 534 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 14378 bytes .../debug/__pycache__/console.cpython-310.pyc | Bin 0 -> 8332 bytes .../debug/__pycache__/repr.cpython-310.pyc | Bin 0 -> 9083 bytes .../debug/__pycache__/tbtools.cpython-310.pyc | Bin 0 -> 11814 bytes .../site-packages/werkzeug/debug/console.py | 219 + .../site-packages/werkzeug/debug/repr.py | 283 + .../werkzeug/debug/shared/ICON_LICENSE.md | 6 + .../werkzeug/debug/shared/console.png | Bin 0 -> 507 bytes .../werkzeug/debug/shared/debugger.js | 360 + .../werkzeug/debug/shared/less.png | Bin 0 -> 191 bytes .../werkzeug/debug/shared/more.png | Bin 0 -> 200 bytes .../werkzeug/debug/shared/style.css | 150 + .../site-packages/werkzeug/debug/tbtools.py | 437 + .../site-packages/werkzeug/exceptions.py | 879 ++ .../site-packages/werkzeug/formparser.py | 421 + .../python3.10/site-packages/werkzeug/http.py | 1372 +++ .../site-packages/werkzeug/local.py | 643 ++ .../werkzeug/middleware/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/dispatcher.cpython-310.pyc | Bin 0 -> 2848 bytes .../__pycache__/http_proxy.cpython-310.pyc | Bin 0 -> 6941 bytes .../__pycache__/lint.cpython-310.pyc | Bin 0 -> 13002 bytes .../__pycache__/profiler.cpython-310.pyc | Bin 0 -> 5640 bytes .../__pycache__/proxy_fix.cpython-310.pyc | Bin 0 -> 6041 bytes .../__pycache__/shared_data.cpython-310.pyc | Bin 0 -> 9293 bytes .../werkzeug/middleware/dispatcher.py | 80 + .../werkzeug/middleware/http_proxy.py | 235 + .../site-packages/werkzeug/middleware/lint.py | 420 + .../werkzeug/middleware/profiler.py | 154 + .../werkzeug/middleware/proxy_fix.py | 182 + .../werkzeug/middleware/shared_data.py | 282 + .../site-packages/werkzeug/py.typed | 0 .../werkzeug/routing/__init__.py | 133 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4637 bytes .../__pycache__/converters.cpython-310.pyc | Bin 0 -> 9164 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5649 bytes .../routing/__pycache__/map.cpython-310.pyc | Bin 0 -> 30939 bytes .../__pycache__/matcher.cpython-310.pyc | Bin 0 -> 5142 bytes .../routing/__pycache__/rules.cpython-310.pyc | Bin 0 -> 27672 bytes .../werkzeug/routing/converters.py | 261 + .../werkzeug/routing/exceptions.py | 148 + .../site-packages/werkzeug/routing/map.py | 946 ++ .../site-packages/werkzeug/routing/matcher.py | 202 + .../site-packages/werkzeug/routing/rules.py | 909 ++ .../site-packages/werkzeug/sansio/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../sansio/__pycache__/http.cpython-310.pyc | Bin 0 -> 4145 bytes .../__pycache__/multipart.cpython-310.pyc | Bin 0 -> 7505 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 17310 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 24529 bytes .../sansio/__pycache__/utils.cpython-310.pyc | Bin 0 -> 4634 bytes .../site-packages/werkzeug/sansio/http.py | 171 + .../werkzeug/sansio/multipart.py | 321 + .../site-packages/werkzeug/sansio/request.py | 536 ++ .../site-packages/werkzeug/sansio/response.py | 751 ++ .../site-packages/werkzeug/sansio/utils.py | 159 + .../site-packages/werkzeug/security.py | 157 + .../site-packages/werkzeug/serving.py | 1109 +++ .../python3.10/site-packages/werkzeug/test.py | 1462 +++ .../site-packages/werkzeug/testapp.py | 181 + .../python3.10/site-packages/werkzeug/urls.py | 216 + .../site-packages/werkzeug/user_agent.py | 47 + .../site-packages/werkzeug/utils.py | 690 ++ .../werkzeug/wrappers/__init__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 314 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 21662 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 28432 bytes .../werkzeug/wrappers/request.py | 650 ++ .../werkzeug/wrappers/response.py | 835 ++ .../python3.10/site-packages/werkzeug/wsgi.py | 595 ++ server/venv/lib64 | 1 + server/venv/pyvenv.cfg | 3 + 1709 files changed, 311768 insertions(+) create mode 100644 client/.eslintrc.json create mode 100644 client/.gitignore create mode 100644 client/README.md create mode 100644 client/next.config.js create mode 100644 client/package-lock.json create mode 100644 client/package.json create mode 100644 client/pages/_app.tsx create mode 100644 client/pages/_document.tsx create mode 100644 client/pages/api/hello.ts create mode 100644 client/pages/index.tsx create mode 100644 client/postcss.config.js create mode 100644 client/public/favicon.ico create mode 100644 client/public/next.svg create mode 100644 client/public/vercel.svg create mode 100644 client/styles/globals.css create mode 100644 client/tailwind.config.ts create mode 100644 client/tsconfig.json create mode 100644 server/server.py create mode 100644 server/venv/bin/Activate.ps1 create mode 100644 server/venv/bin/activate create mode 100644 server/venv/bin/activate.csh create mode 100644 server/venv/bin/activate.fish create mode 100755 server/venv/bin/flask create mode 100755 server/venv/bin/pip create mode 100755 server/venv/bin/pip3 create mode 100755 server/venv/bin/pip3.10 create mode 120000 server/venv/bin/python create mode 120000 server/venv/bin/python3 create mode 120000 server/venv/bin/python3.10 create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/LICENSE create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/REQUESTED create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/entry_points.txt create mode 100644 server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/_distutils_hack/override.py create mode 100644 server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/blinker/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/blinker/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/blinker/__pycache__/_saferef.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/blinker/__pycache__/_utilities.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/blinker/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/blinker/_saferef.py create mode 100644 server/venv/lib/python3.10/site-packages/blinker/_utilities.py create mode 100644 server/venv/lib/python3.10/site-packages/blinker/base.py create mode 100644 server/venv/lib/python3.10/site-packages/blinker/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/click/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/_winconsole.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/click/_compat.py create mode 100644 server/venv/lib/python3.10/site-packages/click/_termui_impl.py create mode 100644 server/venv/lib/python3.10/site-packages/click/_textwrap.py create mode 100644 server/venv/lib/python3.10/site-packages/click/_winconsole.py create mode 100644 server/venv/lib/python3.10/site-packages/click/core.py create mode 100644 server/venv/lib/python3.10/site-packages/click/decorators.py create mode 100644 server/venv/lib/python3.10/site-packages/click/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/click/formatting.py create mode 100644 server/venv/lib/python3.10/site-packages/click/globals.py create mode 100644 server/venv/lib/python3.10/site-packages/click/parser.py create mode 100644 server/venv/lib/python3.10/site-packages/click/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/click/shell_completion.py create mode 100644 server/venv/lib/python3.10/site-packages/click/termui.py create mode 100644 server/venv/lib/python3.10/site-packages/click/testing.py create mode 100644 server/venv/lib/python3.10/site-packages/click/types.py create mode 100644 server/venv/lib/python3.10/site-packages/click/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/distutils-precedence.pth create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/REQUESTED create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/entry_points.txt create mode 100644 server/venv/lib/python3.10/site-packages/flask/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/app.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/blueprints.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/cli.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/config.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/ctx.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/debughelpers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/globals.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/helpers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/logging.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/sessions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/signals.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/templating.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/testing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/typing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/views.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/__pycache__/wrappers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/app.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/blueprints.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/cli.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/config.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/ctx.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/debughelpers.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/globals.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/helpers.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/__pycache__/provider.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/__pycache__/tag.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/provider.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/json/tag.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/logging.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/README.md create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/app.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/blueprints.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/scaffold.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/app.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/blueprints.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/sansio/scaffold.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/sessions.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/signals.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/templating.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/testing.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/typing.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/views.py create mode 100644 server/venv/lib/python3.10/site-packages/flask/wrappers.py create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/decorator.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/extension.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/core.py create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/decorator.py create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/extension.py create mode 100644 server/venv/lib/python3.10/site-packages/flask_cors/version.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/_json.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/encoding.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/exc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/serializer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/signer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/timed.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/url_safe.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/_json.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/encoding.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/exc.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/serializer.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/signer.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/timed.py create mode 100644 server/venv/lib/python3.10/site-packages/itsdangerous/url_safe.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/meta.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/_identifier.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/async_utils.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/bccache.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/compiler.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/constants.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/debug.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/defaults.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/environment.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/ext.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/filters.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/idtracking.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/lexer.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/loaders.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/meta.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/nativetypes.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/nodes.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/optimizer.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/parser.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/runtime.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/sandbox.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/tests.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/jinja2/visitor.py create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/__pycache__/_native.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/_native.py create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/_speedups.c create mode 100755 server/venv/lib/python3.10/site-packages/markupsafe/_speedups.cpython-310-x86_64-linux-gnu.so create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/_speedups.pyi create mode 100644 server/venv/lib/python3.10/site-packages/markupsafe/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt create mode 100644 server/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/pip/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/build_env.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/main.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/check.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/completion.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/download.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/help.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/index.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/install.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/list.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/search.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/show.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/configuration.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/collector.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/index/sources.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/locations/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/main.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/format_control.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/index.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/link.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/target_python.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/auth.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/download.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/session.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/check.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/pyproject.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/models.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/distro.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/colors.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/six.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 server/venv/lib/python3.10/site-packages/pip/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/LICENSE create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/entry_points.txt create mode 100644 server/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/config.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/config.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/core.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/extension.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/log.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/version.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_imp.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/archive_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/build_meta.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/cli-32.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/cli-64.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/cli.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/alias.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/build_clib.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/build_ext.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/build_py.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/develop.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/dist_info.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/easy_install.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/egg_info.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/install.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/install_lib.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/install_scripts.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/py36compat.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/register.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/rotate.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/saveopts.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/sdist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/setopt.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/test.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/upload.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/command/upload_docs.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/config.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/dep_util.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/depends.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/dist.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/errors.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/extension.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/extern/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/glob.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/gui-32.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/gui-64.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/gui.exe create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/installer.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/launch.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/monkey.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/msvc.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/namespaces.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/package_index.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/py34compat.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/sandbox.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/script (dev).tmpl create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/script.tmpl create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/unicode_utils.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/version.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/wheel.py create mode 100644 server/venv/lib/python3.10/site-packages/setuptools/windows_support.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug-3.0.1.dist-info/INSTALLER create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug-3.0.1.dist-info/LICENSE.rst create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug-3.0.1.dist-info/METADATA create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug-3.0.1.dist-info/RECORD create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug-3.0.1.dist-info/WHEEL create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/_internal.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/_reloader.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/formparser.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/http.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/local.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/security.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/serving.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/test.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/testapp.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/urls.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/user_agent.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/__pycache__/wsgi.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/_internal.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/_reloader.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/accept.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/auth.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/cache_control.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/csp.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/etag.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/file_storage.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/headers.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/mixins.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/range.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/__pycache__/structures.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/accept.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/accept.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/auth.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/cache_control.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/cache_control.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/csp.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/csp.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/etag.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/etag.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/file_storage.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/file_storage.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/headers.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/headers.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/mixins.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/mixins.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/range.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/range.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/structures.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/datastructures/structures.pyi create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/__pycache__/console.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/__pycache__/repr.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/__pycache__/tbtools.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/console.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/repr.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/ICON_LICENSE.md create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/console.png create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/debugger.js create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/less.png create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/more.png create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/shared/style.css create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/debug/tbtools.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/formparser.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/http.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/local.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/dispatcher.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/http_proxy.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/lint.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/profiler.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/proxy_fix.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/__pycache__/shared_data.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/dispatcher.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/http_proxy.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/lint.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/profiler.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/proxy_fix.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/middleware/shared_data.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/py.typed create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/converters.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/exceptions.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/map.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/matcher.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/__pycache__/rules.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/converters.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/exceptions.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/map.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/matcher.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/routing/rules.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/http.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/multipart.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/request.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/response.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/__pycache__/utils.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/http.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/multipart.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/request.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/response.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/sansio/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/security.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/serving.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/test.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/testapp.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/urls.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/user_agent.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/utils.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/__init__.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/__pycache__/request.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/__pycache__/response.cpython-310.pyc create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/request.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wrappers/response.py create mode 100644 server/venv/lib/python3.10/site-packages/werkzeug/wsgi.py create mode 120000 server/venv/lib64 create mode 100644 server/venv/pyvenv.cfg diff --git a/client/.eslintrc.json b/client/.eslintrc.json new file mode 100644 index 0000000..bffb357 --- /dev/null +++ b/client/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/client/.gitignore b/client/.gitignore new file mode 100644 index 0000000..fd3dbb5 --- /dev/null +++ b/client/.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js +.yarn/install-state.gz + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/client/README.md b/client/README.md new file mode 100644 index 0000000..a75ac52 --- /dev/null +++ b/client/README.md @@ -0,0 +1,40 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. + +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. + +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/client/next.config.js b/client/next.config.js new file mode 100644 index 0000000..a843cbe --- /dev/null +++ b/client/next.config.js @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, +} + +module.exports = nextConfig diff --git a/client/package-lock.json b/client/package-lock.json new file mode 100644 index 0000000..381aea4 --- /dev/null +++ b/client/package-lock.json @@ -0,0 +1,4757 @@ +{ + "name": "client", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "client", + "version": "0.1.0", + "dependencies": { + "next": "14.0.4", + "react": "^18", + "react-dom": "^18" + }, + "devDependencies": { + "@types/node": "^20", + "@types/react": "^18", + "@types/react-dom": "^18", + "autoprefixer": "^10.0.1", + "eslint": "^8", + "eslint-config-next": "14.0.4", + "postcss": "^8", + "tailwindcss": "^3.3.0", + "typescript": "^5" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.7.tgz", + "integrity": "sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "dev": true + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@next/env": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.4.tgz", + "integrity": "sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.0.4.tgz", + "integrity": "sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==", + "dev": true, + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.4.tgz", + "integrity": "sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.4.tgz", + "integrity": "sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.4.tgz", + "integrity": "sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.4.tgz", + "integrity": "sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.4.tgz", + "integrity": "sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.4.tgz", + "integrity": "sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.4.tgz", + "integrity": "sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.4.tgz", + "integrity": "sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.4.tgz", + "integrity": "sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.6.1.tgz", + "integrity": "sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==", + "dev": true + }, + "node_modules/@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.10.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.6.tgz", + "integrity": "sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.47", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.47.tgz", + "integrity": "sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", + "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "dev": true + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.18.0.tgz", + "integrity": "sha512-v6uR68SFvqhNQT41frCMCQpsP+5vySy6IdgjlzUWoo7ALCnpaWYcz/Ij2k4L8cEsL0wkvOviCMpjmtRtHNOKzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.18.0", + "@typescript-eslint/types": "6.18.0", + "@typescript-eslint/typescript-estree": "6.18.0", + "@typescript-eslint/visitor-keys": "6.18.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.18.0.tgz", + "integrity": "sha512-o/UoDT2NgOJ2VfHpfr+KBY2ErWvCySNUIX/X7O9g8Zzt/tXdpfEU43qbNk8LVuWUT2E0ptzTWXh79i74PP0twA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.0", + "@typescript-eslint/visitor-keys": "6.18.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.18.0.tgz", + "integrity": "sha512-/RFVIccwkwSdW/1zeMx3hADShWbgBxBnV/qSrex6607isYjj05t36P6LyONgqdUrNLl5TYU8NIKdHUYpFvExkA==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.18.0.tgz", + "integrity": "sha512-klNvl+Ql4NsBNGB4W9TZ2Od03lm7aGvTbs0wYaFYsplVPhr+oeXjlPZCDI4U9jgJIDK38W1FKhacCFzCC+nbIg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.0", + "@typescript-eslint/visitor-keys": "6.18.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.18.0.tgz", + "integrity": "sha512-1wetAlSZpewRDb2h9p/Q8kRjdGuqdTAQbkJIOUMLug2LBLG+QOjiWoSj6/3B/hA9/tVTFFdtiKvAYoYnSRW/RA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001574", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001574.tgz", + "integrity": "sha512-BtYEK4r/iHt/txm81KBudCUcTy7t+s9emrIaHqjYurQ10x71zJ5VQ9x1dYPcz/b+pKSp4y/v1xSI67A+LzpNyg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.623", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.623.tgz", + "integrity": "sha512-lKoz10iCYlP1WtRYdh5MvocQPWVRoI7ysp6qf18bmeBgR8abE6+I2CsfyNKztRDZvhdWc+krKT6wS7Neg8sw3A==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dev": true, + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.0.4.tgz", + "integrity": "sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==", + "dev": true, + "dependencies": { + "@next/eslint-plugin-next": "14.0.4", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/next/-/next-14.0.4.tgz", + "integrity": "sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==", + "dependencies": { + "@next/env": "14.0.4", + "@swc/helpers": "0.5.2", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "graceful-fs": "^4.2.11", + "postcss": "8.4.31", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=18.17.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "14.0.4", + "@next/swc-darwin-x64": "14.0.4", + "@next/swc-linux-arm64-gnu": "14.0.4", + "@next/swc-linux-arm64-musl": "14.0.4", + "@next/swc-linux-x64-gnu": "14.0.4", + "@next/swc-linux-x64-musl": "14.0.4", + "@next/swc-win32-arm64-msvc": "14.0.4", + "@next/swc-win32-ia32-msvc": "14.0.4", + "@next/swc-win32-x64-msvc": "14.0.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/client/package.json b/client/package.json new file mode 100644 index 0000000..b3191fd --- /dev/null +++ b/client/package.json @@ -0,0 +1,27 @@ +{ + "name": "client", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "react": "^18", + "react-dom": "^18", + "next": "14.0.4" + }, + "devDependencies": { + "typescript": "^5", + "@types/node": "^20", + "@types/react": "^18", + "@types/react-dom": "^18", + "autoprefixer": "^10.0.1", + "postcss": "^8", + "tailwindcss": "^3.3.0", + "eslint": "^8", + "eslint-config-next": "14.0.4" + } +} diff --git a/client/pages/_app.tsx b/client/pages/_app.tsx new file mode 100644 index 0000000..021681f --- /dev/null +++ b/client/pages/_app.tsx @@ -0,0 +1,6 @@ +import '@/styles/globals.css' +import type { AppProps } from 'next/app' + +export default function App({ Component, pageProps }: AppProps) { + return +} diff --git a/client/pages/_document.tsx b/client/pages/_document.tsx new file mode 100644 index 0000000..54e8bf3 --- /dev/null +++ b/client/pages/_document.tsx @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from 'next/document' + +export default function Document() { + return ( + + + +
+ + + + ) +} diff --git a/client/pages/api/hello.ts b/client/pages/api/hello.ts new file mode 100644 index 0000000..f8bcc7e --- /dev/null +++ b/client/pages/api/hello.ts @@ -0,0 +1,13 @@ +// Next.js API route support: https://nextjs.org/docs/api-routes/introduction +import type { NextApiRequest, NextApiResponse } from 'next' + +type Data = { + name: string +} + +export default function handler( + req: NextApiRequest, + res: NextApiResponse +) { + res.status(200).json({ name: 'John Doe' }) +} diff --git a/client/pages/index.tsx b/client/pages/index.tsx new file mode 100644 index 0000000..646ad0f --- /dev/null +++ b/client/pages/index.tsx @@ -0,0 +1,47 @@ +import React, { useEffect, useState }from 'react' + +function index() { + + //creating a state variable in order to display the data to the ui + //the state variable will display the word loading before the data is fetched + const [mesage, setMessage] = useState("Loading"); + const [people, setPeople] = useState([]); + + + //useEffect to fetch the data from the api end point + //Emoty array is used at the end of the function so that its only called once + useEffect(() => { + fetch("http://localhost:8080/api/home").then( + response => response.json() + ).then ( + data => { + + setMessage(data.msg); + setPeople(data.people); + + } + ); + + }, []) + + + + return ( +
+ +
{mesage}
+ + {people.map((person, index) => ( + +
+ {person} +
+ + ))} + +
+ + ); +} + +export default index \ No newline at end of file diff --git a/client/postcss.config.js b/client/postcss.config.js new file mode 100644 index 0000000..33ad091 --- /dev/null +++ b/client/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/client/public/favicon.ico b/client/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 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 LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/client/public/next.svg b/client/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/client/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/public/vercel.svg b/client/public/vercel.svg new file mode 100644 index 0000000..d2f8422 --- /dev/null +++ b/client/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/styles/globals.css b/client/styles/globals.css new file mode 100644 index 0000000..a90f074 --- /dev/null +++ b/client/styles/globals.css @@ -0,0 +1,4 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + diff --git a/client/tailwind.config.ts b/client/tailwind.config.ts new file mode 100644 index 0000000..c7ead80 --- /dev/null +++ b/client/tailwind.config.ts @@ -0,0 +1,20 @@ +import type { Config } from 'tailwindcss' + +const config: Config = { + content: [ + './pages/**/*.{js,ts,jsx,tsx,mdx}', + './components/**/*.{js,ts,jsx,tsx,mdx}', + './app/**/*.{js,ts,jsx,tsx,mdx}', + ], + theme: { + extend: { + backgroundImage: { + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', + 'gradient-conic': + 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + }, + }, + }, + plugins: [], +} +export default config diff --git a/client/tsconfig.json b/client/tsconfig.json new file mode 100644 index 0000000..670224f --- /dev/null +++ b/client/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "paths": { + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] +} diff --git a/server/server.py b/server/server.py new file mode 100644 index 0000000..2ba24e2 --- /dev/null +++ b/server/server.py @@ -0,0 +1,16 @@ +from flask import Flask, jsonify +from flask_cors import CORS + +app = Flask(__name__) +CORS(app) + +#app routes start here +@app.route("/api/home", methods=['GET']) +def return_home(): + return jsonify({ + 'msg': "Hello Jamel Fraser", + "people": ['Jack', 'Harry', 'Berry', 'Jamel'] + }) + +if __name__ == "__main__": + app.run(debug=True, port=8080) \ No newline at end of file diff --git a/server/venv/bin/Activate.ps1 b/server/venv/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/server/venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/server/venv/bin/activate b/server/venv/bin/activate new file mode 100644 index 0000000..0b7e884 --- /dev/null +++ b/server/venv/bin/activate @@ -0,0 +1,69 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null + fi + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/home/jason/Software/flask-nextjs/server/venv" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(venv) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(venv) " + export VIRTUAL_ENV_PROMPT +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null +fi diff --git a/server/venv/bin/activate.csh b/server/venv/bin/activate.csh new file mode 100644 index 0000000..357d093 --- /dev/null +++ b/server/venv/bin/activate.csh @@ -0,0 +1,26 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/jason/Software/flask-nextjs/server/venv" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(venv) $prompt" + setenv VIRTUAL_ENV_PROMPT "(venv) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/server/venv/bin/activate.fish b/server/venv/bin/activate.fish new file mode 100644 index 0000000..374d0b9 --- /dev/null +++ b/server/venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/); you cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/jason/Software/flask-nextjs/server/venv" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(venv) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(venv) " +end diff --git a/server/venv/bin/flask b/server/venv/bin/flask new file mode 100755 index 0000000..c443807 --- /dev/null +++ b/server/venv/bin/flask @@ -0,0 +1,8 @@ +#!/home/jason/Software/flask-nextjs/server/venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from flask.cli import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/server/venv/bin/pip b/server/venv/bin/pip new file mode 100755 index 0000000..6b3fb56 --- /dev/null +++ b/server/venv/bin/pip @@ -0,0 +1,8 @@ +#!/home/jason/Software/flask-nextjs/server/venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/server/venv/bin/pip3 b/server/venv/bin/pip3 new file mode 100755 index 0000000..6b3fb56 --- /dev/null +++ b/server/venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/jason/Software/flask-nextjs/server/venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/server/venv/bin/pip3.10 b/server/venv/bin/pip3.10 new file mode 100755 index 0000000..6b3fb56 --- /dev/null +++ b/server/venv/bin/pip3.10 @@ -0,0 +1,8 @@ +#!/home/jason/Software/flask-nextjs/server/venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/server/venv/bin/python b/server/venv/bin/python new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/server/venv/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/server/venv/bin/python3 b/server/venv/bin/python3 new file mode 120000 index 0000000..ae65fda --- /dev/null +++ b/server/venv/bin/python3 @@ -0,0 +1 @@ +/usr/bin/python3 \ No newline at end of file diff --git a/server/venv/bin/python3.10 b/server/venv/bin/python3.10 new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/server/venv/bin/python3.10 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/LICENSE b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/LICENSE new file mode 100644 index 0000000..46d932f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/LICENSE @@ -0,0 +1,7 @@ +Copyright (C) 2016 Cory Dolphin, Olin College + +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. \ No newline at end of file diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/METADATA new file mode 100644 index 0000000..bd0c55a --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/METADATA @@ -0,0 +1,147 @@ +Metadata-Version: 2.1 +Name: Flask-Cors +Version: 4.0.0 +Summary: A Flask extension adding a decorator for CORS support +Home-page: https://github.com/corydolphin/flask-cors +Author: Cory Dolphin +Author-email: corydolphin@gmail.com +License: MIT +Platform: any +Classifier: Environment :: Web 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.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Software Development :: Libraries :: Python Modules +License-File: LICENSE +Requires-Dist: Flask (>=0.9) + +Flask-CORS +========== + +|Build Status| |Latest Version| |Supported Python versions| +|License| + +A Flask extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible. + +This package has a simple philosophy: when you want to enable CORS, you wish to enable it for all use cases on a domain. +This means no mucking around with different allowed headers, methods, etc. + +By default, submission of cookies across domains is disabled due to the security implications. +Please see the documentation for how to enable credential'ed requests, and please make sure you add some sort of `CSRF `__ protection before doing so! + +Installation +------------ + +Install the extension with using pip, or easy\_install. + +.. code:: bash + + $ pip install -U flask-cors + +Usage +----- + +This package exposes a Flask extension which by default enables CORS support on all routes, for all origins and methods. +It allows parameterization of all CORS headers on a per-resource level. +The package also contains a decorator, for those who prefer this approach. + +Simple Usage +~~~~~~~~~~~~ + +In the simplest case, initialize the Flask-Cors extension with default arguments in order to allow CORS for all domains on all routes. +See the full list of options in the `documentation `__. + +.. code:: python + + + from flask import Flask + from flask_cors import CORS + + app = Flask(__name__) + CORS(app) + + @app.route("/") + def helloWorld(): + return "Hello, cross-origin-world!" + +Resource specific CORS +^^^^^^^^^^^^^^^^^^^^^^ + +Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the `resources` option, mapping paths to a set of options. +See the full list of options in the `documentation `__. + +.. code:: python + + app = Flask(__name__) + cors = CORS(app, resources={r"/api/*": {"origins": "*"}}) + + @app.route("/api/v1/users") + def list_users(): + return "user example" + +Route specific CORS via decorator +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +This extension also exposes a simple decorator to decorate flask routes with. +Simply add ``@cross_origin()`` below a call to Flask's ``@app.route(..)`` to allow CORS on a given route. +See the full list of options in the `decorator documentation `__. + +.. code:: python + + @app.route("/") + @cross_origin() + def helloWorld(): + return "Hello, cross-origin-world!" + +Documentation +------------- + +For a full list of options, please see the full `documentation `__ + +Troubleshooting +--------------- + +If things aren't working as you expect, enable logging to help understand what is going on under the hood, and why. + +.. code:: python + + logging.getLogger('flask_cors').level = logging.DEBUG + + +Tests +----- + +A simple set of tests is included in ``test/``. +To run, install nose, and simply invoke ``nosetests`` or ``python setup.py test`` to exercise the tests. + +If nosetests does not work for you, due to it no longer working with newer python versions. +You can use pytest to run the tests instead. + +Contributing +------------ + +Questions, comments or improvements? +Please create an issue on `Github `__, tweet at `@corydolphin `__ or send me an email. +I do my best to include every contribution proposed in any way that I can. + +Credits +------- + +This Flask extension is based upon the `Decorator for the HTTP Access Control `__ written by Armin Ronacher. + +.. |Build Status| image:: https://api.travis-ci.org/corydolphin/flask-cors.svg?branch=master + :target: https://travis-ci.org/corydolphin/flask-cors +.. |Latest Version| image:: https://img.shields.io/pypi/v/Flask-Cors.svg + :target: https://pypi.python.org/pypi/Flask-Cors/ +.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/Flask-Cors.svg + :target: https://img.shields.io/pypi/pyversions/Flask-Cors.svg +.. |License| image:: http://img.shields.io/:license-mit-blue.svg + :target: https://pypi.python.org/pypi/Flask-Cors/ diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/RECORD new file mode 100644 index 0000000..cf9f714 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/RECORD @@ -0,0 +1,17 @@ +Flask_Cors-4.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +Flask_Cors-4.0.0.dist-info/LICENSE,sha256=bhob3FSDTB4HQMvOXV9vLK4chG_Sp_SCsRZJWU-vvV0,1069 +Flask_Cors-4.0.0.dist-info/METADATA,sha256=iien2vLs6EIqceJgaNEJ6FPinwfjzFWSNl7XOkuyc10,5419 +Flask_Cors-4.0.0.dist-info/RECORD,, +Flask_Cors-4.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +Flask_Cors-4.0.0.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110 +Flask_Cors-4.0.0.dist-info/top_level.txt,sha256=aWye_0QNZPp_QtPF4ZluLHqnyVLT9CPJsfiGhwqkWuo,11 +flask_cors/__init__.py,sha256=wZDCvPTHspA2g1VV7KyKN7R-uCdBnirTlsCzgPDcQtI,792 +flask_cors/__pycache__/__init__.cpython-310.pyc,, +flask_cors/__pycache__/core.cpython-310.pyc,, +flask_cors/__pycache__/decorator.cpython-310.pyc,, +flask_cors/__pycache__/extension.cpython-310.pyc,, +flask_cors/__pycache__/version.cpython-310.pyc,, +flask_cors/core.py,sha256=e1u_o5SOcS_gMWGjcQrkyk91uPICnzZ3AXZvy5jQ_FE,14063 +flask_cors/decorator.py,sha256=BeJsyX1wYhVKWN04FAhb6z8YqffiRr7wKqwzHPap4bw,5009 +flask_cors/extension.py,sha256=nP4Zq_BhgDVWwPdIl_f-uucNxD38pXUo-dkL-voXc58,7832 +flask_cors/version.py,sha256=61rJjfThnbRdElpSP2tm31hPmFnHJmcwoPhtqA0Bi_Q,22 diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/REQUESTED b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/WHEEL new file mode 100644 index 0000000..f771c29 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.40.0) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/top_level.txt b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/top_level.txt new file mode 100644 index 0000000..27af988 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Flask_Cors-4.0.0.dist-info/top_level.txt @@ -0,0 +1 @@ +flask_cors diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/LICENSE.rst new file mode 100644 index 0000000..c37cae4 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/LICENSE.rst @@ -0,0 +1,28 @@ +Copyright 2007 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/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/METADATA new file mode 100644 index 0000000..f54bb5c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/METADATA @@ -0,0 +1,113 @@ +Metadata-Version: 2.1 +Name: Jinja2 +Version: 3.1.2 +Summary: A very fast and expressive template engine. +Home-page: https://palletsprojects.com/p/jinja/ +Author: Armin Ronacher +Author-email: armin.ronacher@active-4.com +Maintainer: Pallets +Maintainer-email: contact@palletsprojects.com +License: BSD-3-Clause +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Documentation, https://jinja.palletsprojects.com/ +Project-URL: Changes, https://jinja.palletsprojects.com/changes/ +Project-URL: Source Code, https://github.com/pallets/jinja/ +Project-URL: Issue Tracker, https://github.com/pallets/jinja/issues/ +Project-URL: Twitter, https://twitter.com/PalletsTeam +Project-URL: Chat, https://discord.gg/pallets +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Text Processing :: Markup :: HTML +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.rst +Requires-Dist: MarkupSafe (>=2.0) +Provides-Extra: i18n +Requires-Dist: Babel (>=2.7) ; extra == 'i18n' + +Jinja +===== + +Jinja is a fast, expressive, extensible templating engine. Special +placeholders in the template allow writing code similar to Python +syntax. Then the template is passed data to render the final document. + +It includes: + +- Template inheritance and inclusion. +- Define and import macros within templates. +- HTML templates can use autoescaping to prevent XSS from untrusted + user input. +- A sandboxed environment can safely render untrusted templates. +- AsyncIO support for generating templates and calling async + functions. +- I18N support with Babel. +- Templates are compiled to optimized Python code just-in-time and + cached, or can be compiled ahead-of-time. +- Exceptions point to the correct line in templates to make debugging + easier. +- Extensible filters, tests, functions, and even syntax. + +Jinja's philosophy is that while application logic belongs in Python if +possible, it shouldn't make the template designer's job difficult by +restricting functionality too much. + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + $ pip install -U Jinja2 + +.. _pip: https://pip.pypa.io/en/stable/getting-started/ + + +In A Nutshell +------------- + +.. code-block:: jinja + + {% extends "base.html" %} + {% block title %}Members{% endblock %} + {% block content %} + + {% endblock %} + + +Donate +------ + +The Pallets organization develops and supports Jinja 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 + + +Links +----- + +- Documentation: https://jinja.palletsprojects.com/ +- Changes: https://jinja.palletsprojects.com/changes/ +- PyPI Releases: https://pypi.org/project/Jinja2/ +- Source Code: https://github.com/pallets/jinja/ +- Issue Tracker: https://github.com/pallets/jinja/issues/ +- Website: https://palletsprojects.com/p/jinja/ +- Twitter: https://twitter.com/PalletsTeam +- Chat: https://discord.gg/pallets + + diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/RECORD new file mode 100644 index 0000000..b821b4f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/RECORD @@ -0,0 +1,58 @@ +Jinja2-3.1.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +Jinja2-3.1.2.dist-info/LICENSE.rst,sha256=O0nc7kEF6ze6wQ-vG-JgQI_oXSUrjp3y4JefweCUQ3s,1475 +Jinja2-3.1.2.dist-info/METADATA,sha256=PZ6v2SIidMNixR7MRUX9f7ZWsPwtXanknqiZUmRbh4U,3539 +Jinja2-3.1.2.dist-info/RECORD,, +Jinja2-3.1.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 +Jinja2-3.1.2.dist-info/entry_points.txt,sha256=zRd62fbqIyfUpsRtU7EVIFyiu1tPwfgO7EvPErnxgTE,59 +Jinja2-3.1.2.dist-info/top_level.txt,sha256=PkeVWtLb3-CqjWi1fO29OCbj55EhX_chhKrCdrVe_zs,7 +jinja2/__init__.py,sha256=8vGduD8ytwgD6GDSqpYc2m3aU-T7PKOAddvVXgGr_Fs,1927 +jinja2/__pycache__/__init__.cpython-310.pyc,, +jinja2/__pycache__/_identifier.cpython-310.pyc,, +jinja2/__pycache__/async_utils.cpython-310.pyc,, +jinja2/__pycache__/bccache.cpython-310.pyc,, +jinja2/__pycache__/compiler.cpython-310.pyc,, +jinja2/__pycache__/constants.cpython-310.pyc,, +jinja2/__pycache__/debug.cpython-310.pyc,, +jinja2/__pycache__/defaults.cpython-310.pyc,, +jinja2/__pycache__/environment.cpython-310.pyc,, +jinja2/__pycache__/exceptions.cpython-310.pyc,, +jinja2/__pycache__/ext.cpython-310.pyc,, +jinja2/__pycache__/filters.cpython-310.pyc,, +jinja2/__pycache__/idtracking.cpython-310.pyc,, +jinja2/__pycache__/lexer.cpython-310.pyc,, +jinja2/__pycache__/loaders.cpython-310.pyc,, +jinja2/__pycache__/meta.cpython-310.pyc,, +jinja2/__pycache__/nativetypes.cpython-310.pyc,, +jinja2/__pycache__/nodes.cpython-310.pyc,, +jinja2/__pycache__/optimizer.cpython-310.pyc,, +jinja2/__pycache__/parser.cpython-310.pyc,, +jinja2/__pycache__/runtime.cpython-310.pyc,, +jinja2/__pycache__/sandbox.cpython-310.pyc,, +jinja2/__pycache__/tests.cpython-310.pyc,, +jinja2/__pycache__/utils.cpython-310.pyc,, +jinja2/__pycache__/visitor.cpython-310.pyc,, +jinja2/_identifier.py,sha256=_zYctNKzRqlk_murTNlzrju1FFJL7Va_Ijqqd7ii2lU,1958 +jinja2/async_utils.py,sha256=dHlbTeaxFPtAOQEYOGYh_PHcDT0rsDaUJAFDl_0XtTg,2472 +jinja2/bccache.py,sha256=mhz5xtLxCcHRAa56azOhphIAe19u1we0ojifNMClDio,14061 +jinja2/compiler.py,sha256=Gs-N8ThJ7OWK4-reKoO8Wh1ZXz95MVphBKNVf75qBr8,72172 +jinja2/constants.py,sha256=GMoFydBF_kdpaRKPoM5cl5MviquVRLVyZtfp5-16jg0,1433 +jinja2/debug.py,sha256=iWJ432RadxJNnaMOPrjIDInz50UEgni3_HKuFXi2vuQ,6299 +jinja2/defaults.py,sha256=boBcSw78h-lp20YbaXSJsqkAI2uN_mD_TtCydpeq5wU,1267 +jinja2/environment.py,sha256=6uHIcc7ZblqOMdx_uYNKqRnnwAF0_nzbyeMP9FFtuh4,61349 +jinja2/exceptions.py,sha256=ioHeHrWwCWNaXX1inHmHVblvc4haO7AXsjCp3GfWvx0,5071 +jinja2/ext.py,sha256=ivr3P7LKbddiXDVez20EflcO3q2aHQwz9P_PgWGHVqE,31502 +jinja2/filters.py,sha256=9js1V-h2RlyW90IhLiBGLM2U-k6SCy2F4BUUMgB3K9Q,53509 +jinja2/idtracking.py,sha256=GfNmadir4oDALVxzn3DL9YInhJDr69ebXeA2ygfuCGA,10704 +jinja2/lexer.py,sha256=DW2nX9zk-6MWp65YR2bqqj0xqCvLtD-u9NWT8AnFRxQ,29726 +jinja2/loaders.py,sha256=BfptfvTVpClUd-leMkHczdyPNYFzp_n7PKOJ98iyHOg,23207 +jinja2/meta.py,sha256=GNPEvifmSaU3CMxlbheBOZjeZ277HThOPUTf1RkppKQ,4396 +jinja2/nativetypes.py,sha256=DXgORDPRmVWgy034H0xL8eF7qYoK3DrMxs-935d0Fzk,4226 +jinja2/nodes.py,sha256=i34GPRAZexXMT6bwuf5SEyvdmS-bRCy9KMjwN5O6pjk,34550 +jinja2/optimizer.py,sha256=tHkMwXxfZkbfA1KmLcqmBMSaz7RLIvvItrJcPoXTyD8,1650 +jinja2/parser.py,sha256=nHd-DFHbiygvfaPtm9rcQXJChZG7DPsWfiEsqfwKerY,39595 +jinja2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +jinja2/runtime.py,sha256=5CmD5BjbEJxSiDNTFBeKCaq8qU4aYD2v6q2EluyExms,33476 +jinja2/sandbox.py,sha256=Y0xZeXQnH6EX5VjaV2YixESxoepnRbW_3UeQosaBU3M,14584 +jinja2/tests.py,sha256=Am5Z6Lmfr2XaH_npIfJJ8MdXtWsbLjMULZJulTAj30E,5905 +jinja2/utils.py,sha256=u9jXESxGn8ATZNVolwmkjUVu4SA-tLgV0W7PcSfPfdQ,23965 +jinja2/visitor.py,sha256=MH14C6yq24G_KVtWzjwaI7Wg14PCJIYlWW1kpkxYak0,3568 diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/WHEEL new file mode 100644 index 0000000..becc9a6 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/entry_points.txt b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/entry_points.txt new file mode 100644 index 0000000..7b9666c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[babel.extractors] +jinja2 = jinja2.ext:babel_extract[i18n] diff --git a/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/top_level.txt b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/top_level.txt new file mode 100644 index 0000000..7f7afbf --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/Jinja2-3.1.2.dist-info/top_level.txt @@ -0,0 +1 @@ +jinja2 diff --git a/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/LICENSE.rst new file mode 100644 index 0000000..9d227a0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/LICENSE.rst @@ -0,0 +1,28 @@ +Copyright 2010 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/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/METADATA new file mode 100644 index 0000000..bced165 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/METADATA @@ -0,0 +1,93 @@ +Metadata-Version: 2.1 +Name: MarkupSafe +Version: 2.1.3 +Summary: Safely add untrusted strings to HTML/XML markup. +Home-page: https://palletsprojects.com/p/markupsafe/ +Maintainer: Pallets +Maintainer-email: contact@palletsprojects.com +License: BSD-3-Clause +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Documentation, https://markupsafe.palletsprojects.com/ +Project-URL: Changes, https://markupsafe.palletsprojects.com/changes/ +Project-URL: Source Code, https://github.com/pallets/markupsafe/ +Project-URL: Issue Tracker, https://github.com/pallets/markupsafe/issues/ +Project-URL: Chat, https://discord.gg/pallets +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Text Processing :: Markup :: HTML +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.rst + +MarkupSafe +========== + +MarkupSafe implements a text object that escapes characters so it is +safe to use in HTML and XML. Characters that have special meanings are +replaced so that they display as the actual characters. This mitigates +injection attacks, meaning untrusted user input can safely be displayed +on a page. + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + pip install -U MarkupSafe + +.. _pip: https://pip.pypa.io/en/stable/getting-started/ + + +Examples +-------- + +.. code-block:: pycon + + >>> from markupsafe import Markup, escape + + >>> # escape replaces special characters and wraps in Markup + >>> escape("") + Markup('<script>alert(document.cookie);</script>') + + >>> # wrap in Markup to mark text "safe" and prevent escaping + >>> Markup("Hello") + Markup('hello') + + >>> escape(Markup("Hello")) + Markup('hello') + + >>> # Markup is a str subclass + >>> # methods and operators escape their arguments + >>> template = Markup("Hello {name}") + >>> template.format(name='"World"') + Markup('Hello "World"') + + +Donate +------ + +The Pallets organization develops and supports MarkupSafe 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 + + +Links +----- + +- Documentation: https://markupsafe.palletsprojects.com/ +- Changes: https://markupsafe.palletsprojects.com/changes/ +- PyPI Releases: https://pypi.org/project/MarkupSafe/ +- Source Code: https://github.com/pallets/markupsafe/ +- Issue Tracker: https://github.com/pallets/markupsafe/issues/ +- Chat: https://discord.gg/pallets diff --git a/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/RECORD new file mode 100644 index 0000000..3c4f00f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/RECORD @@ -0,0 +1,14 @@ +MarkupSafe-2.1.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +MarkupSafe-2.1.3.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 +MarkupSafe-2.1.3.dist-info/METADATA,sha256=Wvvh4Tz-YtW24YagYdqrrrBdm9m-DjTdqJWhxlbU6-0,3003 +MarkupSafe-2.1.3.dist-info/RECORD,, +MarkupSafe-2.1.3.dist-info/WHEEL,sha256=iZaXX0Td62Nww8bojl0E84uJHjT41csHPKZmbUBbJPs,152 +MarkupSafe-2.1.3.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11 +markupsafe/__init__.py,sha256=xIItqrn1Bwi7FxPJO9rCVQBG0Evewue1Tl4BV0l9xEs,10338 +markupsafe/__pycache__/__init__.cpython-310.pyc,, +markupsafe/__pycache__/_native.cpython-310.pyc,, +markupsafe/_native.py,sha256=GR86Qvo_GcgKmKreA1WmYN9ud17OFwkww8E-fiW-57s,1713 +markupsafe/_speedups.c,sha256=X2XvQVtIdcK4Usz70BvkzoOfjTCmQlDkkjYSn-swE0g,7083 +markupsafe/_speedups.cpython-310-x86_64-linux-gnu.so,sha256=huh9xBZy3L1q1ar3y-f44Ozfa25Rg6xiomsq8MThk_Y,44240 +markupsafe/_speedups.pyi,sha256=vfMCsOgbAXRNLUXkyuyonG8uEWKYU4PDqNuMaDELAYw,229 +markupsafe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/WHEEL new file mode 100644 index 0000000..2d1b4b8 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.40.0) +Root-Is-Purelib: false +Tag: cp310-cp310-manylinux_2_17_x86_64 +Tag: cp310-cp310-manylinux2014_x86_64 + diff --git a/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/top_level.txt b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/top_level.txt new file mode 100644 index 0000000..75bf729 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/MarkupSafe-2.1.3.dist-info/top_level.txt @@ -0,0 +1 @@ +markupsafe diff --git a/server/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py b/server/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..f707416 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,132 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + r'.+ distutils\b.+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + + # With the DistutilsMetaFinder in place, + # perform an import to cause distutils to be + # loaded from setuptools._distutils. Ref #2906. + add_shim() + importlib.import_module('distutils') + remove_shim() + + # check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/server/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4940950d7cb9ff4ab113f9d03e938c18d8c8f856 GIT binary patch literal 5121 zcmbtY&vV|fNGKT7Ca!Kwd@Mliu+wvk`?1~+|c!!lQU!!}oE!x5HbTcsVg z;Y#QJg0O`ny+fNbQ4;Pwwow)f!o#&9%A$hnqF5A5xGsrhQN?xnJtj_xm3vIA99SDw zSv_DIr^FLt74KHWY4IekPYAxwYEL}?D%Q-rAQmwgfGbeKl5 z{Ts z&b{%&SSP-cgE(wU?WbMo-znC+in}9d2>&kvfG(N62j9K|$ur=o}~WeGu7D7e0B95z*J!0pDk1w#Ghl_YL*O{2g}p zj3IZasT|BQdVa=KGHlMqBZR28!S>=H94^jvocdWbn^@tq3eA5XQDe*xEoF`QU#z

zkvfCtM{GiRAthd=59lpv{k|nQEMbx6g}qH$a7OP|d>p@s<75|}6vMwjPCx0)xm{}y z{$Hm*RKU@@2}swee3-j>zS)l0aj)u zql=oISqVI1GF4`8%CyF_(r!0ucaIB>QM81p5q=V+>UdoJ2sbChJVL#c9Wc&PZdwb( z<3zmFDf%GdK7=2eRH2{y6;!cRI^cfmp%$mAAO%qNG8xPo{lnPq+FTT+P-#~7+sR<>C;{Mo2nrp< zY=l(^r2O2n^@^EhT}r>3rUU)6Mq@KdyTcZ=)ble@=nMZ;XR3iXI+ZCMs);L%xQaF$$O=S1$2R@GT~s$nf@W z{A<4Nq}G^?QPKbbJFxdlD8WW?$u3{uO(V{fTuDEnxsp*k7_OYs-cqIPRzvbH)fUhZI4P ztw`G^Oh7Z!p?x${Qkgk1>pc&>9KcDq$9P^zP%p7q%8te$5nLjK7hDpj(^lHa+N` z08mabTKbaRhiHdXzFN)EQ!}ru&jL-2tLHJkW~uYIz*?~LH(dP~o!kz_1j}tDQO{07 z+;3?CTCKuI9~6jYPEh|I64Z~(d_tZnrxoP{_0uV;DO@*?xyKo^C_jh0-W)E5fLH8S-r7RIi{JUHne<5Wcw*F%O}Lp3mS#Fx{~QVyGZe z&>BXuFja@Tj;Z0NQ&~(0l<_}cjFMn$7^L>=|$fE2SD)tfSK0?8B7Z3r>Ry1_v znW%>yPZKqFxf5*0Ned-<=E=U$yQo_*a1{fyQb$n^a^k3eqDU)W+LYLQ4b)|WfijTw zg~ME{`l#|~bmehM{#KLDFEv%Go_ z&w4l~28V}Q-ow$k?}fz#)S9O*(fsdFLpwS31~o)F^-DC_5@4iJdy<@K-8n2XPk0G0 zZs0U!tB2g+d0y43RJo!zM~H_0Y@+d($uHAerEFaU4ahim+$`$obfT0+7l?D;iQ8|YLFr2fGO)2GIJF$0~gI=6{ zVxH{g>8Mu9_jfn(Vdmzgzq&=8%12>5l-KB&$76w=#h@>6npAD^RlWqDwH_&YUR%v) zrIKFJo;**;w13Q=Bp*tn{xsoG2GXibud3KaYuC~&H}V4u4BSO25D|hW&>{f_(MC~TK*Ix83+v16ad$qgmjh~EK?fxdqPdn|q>3+6 zq$neKtg&Q|hx+}V5{w=foJfDR;x9TPKBRakgvzP2zUrIO%IUQlcbb85p5s3HoK0%C zyOqp(#`vP55RGYG9T}=I1n=;!!i!w_p|1o|DiAWuRKl8)c(4H>$t~}uB_3nOz!+o` wYAkEW{RXO2OsQPX7IR=9aaxI={X~X;KftfytU5K_w}RY0$9LVPXyXjkH+)b>>Hq)$ literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/_distutils_hack/override.py b/server/venv/lib/python3.10/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/LICENSE.rst new file mode 100644 index 0000000..79c9825 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/LICENSE.rst @@ -0,0 +1,20 @@ +Copyright 2010 Jason Kirtland + +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/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/METADATA new file mode 100644 index 0000000..f96613c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/METADATA @@ -0,0 +1,62 @@ +Metadata-Version: 2.1 +Name: blinker +Version: 1.7.0 +Summary: Fast, simple object-to-object and broadcast signaling +Keywords: signal,emit,events,broadcast +Author-email: Jason Kirtland +Maintainer-email: Pallets Ecosystem +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Software Development :: Libraries +Project-URL: Chat, https://discord.gg/pallets +Project-URL: Documentation, https://blinker.readthedocs.io +Project-URL: Homepage, https://blinker.readthedocs.io +Project-URL: Issue Tracker, https://github.com/pallets-eco/blinker/issues/ +Project-URL: Source Code, https://github.com/pallets-eco/blinker/ + +Blinker +======= + +Blinker provides a fast dispatching system that allows any number of +interested parties to subscribe to events, or "signals". + +Signal receivers can subscribe to specific senders or receive signals +sent by any sender. + +.. code-block:: pycon + + >>> from blinker import signal + >>> started = signal('round-started') + >>> def each(round): + ... print(f"Round {round}") + ... + >>> started.connect(each) + + >>> def round_two(round): + ... print("This is round two.") + ... + >>> started.connect(round_two, sender=2) + + >>> for round in range(1, 4): + ... started.send(round) + ... + Round 1! + Round 2! + This is round two. + Round 3! + + +Links +----- + +- Documentation: https://blinker.readthedocs.io/ +- Changes: https://blinker.readthedocs.io/#changes +- PyPI Releases: https://pypi.org/project/blinker/ +- Source Code: https://github.com/pallets-eco/blinker/ +- Issue Tracker: https://github.com/pallets-eco/blinker/issues/ + diff --git a/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/RECORD new file mode 100644 index 0000000..51a7d03 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/RECORD @@ -0,0 +1,14 @@ +blinker-1.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +blinker-1.7.0.dist-info/LICENSE.rst,sha256=nrc6HzhZekqhcCXSrhvjg5Ykx5XphdTw6Xac4p-spGc,1054 +blinker-1.7.0.dist-info/METADATA,sha256=kDgzPgrw4he78pEX88bSAqwYMVWrfUMk8QmNjekjg_U,1918 +blinker-1.7.0.dist-info/RECORD,, +blinker-1.7.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81 +blinker/__init__.py,sha256=s75XaRDHwSDzZ21BZUOEkQDQIcQEyT8hT7vk3EhYFQU,408 +blinker/__pycache__/__init__.cpython-310.pyc,, +blinker/__pycache__/_saferef.cpython-310.pyc,, +blinker/__pycache__/_utilities.cpython-310.pyc,, +blinker/__pycache__/base.cpython-310.pyc,, +blinker/_saferef.py,sha256=kWOTIWnCY3kOb8lZP74Rbx7bR_BLVg4TjwzNCRLhKHs,9096 +blinker/_utilities.py,sha256=S2njKDmlBpK_yCK4RT8hq98hEj30I0TQCC5mNhtY22I,2856 +blinker/base.py,sha256=FqZmAI5YzuRrvRmye1Jb-utyVOjXtF5vUVP3-1u-HtU,20544 +blinker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/WHEEL new file mode 100644 index 0000000..3b5e64b --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker-1.7.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.9.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/server/venv/lib/python3.10/site-packages/blinker/__init__.py b/server/venv/lib/python3.10/site-packages/blinker/__init__.py new file mode 100644 index 0000000..d014caa --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker/__init__.py @@ -0,0 +1,19 @@ +from blinker.base import ANY +from blinker.base import NamedSignal +from blinker.base import Namespace +from blinker.base import receiver_connected +from blinker.base import Signal +from blinker.base import signal +from blinker.base import WeakNamespace + +__all__ = [ + "ANY", + "NamedSignal", + "Namespace", + "Signal", + "WeakNamespace", + "receiver_connected", + "signal", +] + +__version__ = "1.7.0" diff --git a/server/venv/lib/python3.10/site-packages/blinker/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/blinker/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff4b30fd4ed75fcb874c0244be9eb0525ce1c0a0 GIT binary patch literal 510 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/blinker/__pycache__/_utilities.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/blinker/__pycache__/_utilities.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5908a74f9d29d9ef653d52d670394b0a16fe0292 GIT binary patch literal 3536 zcmaJ@Pj4H?72lcN~i~uKfVL*~b7q_N(+V*Pi+ndP#q8mZT^v=q`3==FOX#_ul;8pKNut=HU6q zzy2=wR~+ZxG+2H-3_6a(@_(Wu9KjN2z`Bf4pC`QQqIDB*;CFpX^ODk_+$}Rlx~CO< zRauj@KHqiZ3R-v9>DC`P!WX40N0cskcU6?-YPbekMU+7+gSIZ-5vyYD%Ih|yFUx)2 zy@UC6(ZDjZDXIif(&;kcbh%)HUpcUV zD?GGbp;gxxWt>_ul-Pg?w`VAq3QF)YCx} zr1Bz2qk$Abv0Lk~$xS5;i57;&qZSk|mq}lhvEg@)s-pStH|>*bAls)=o~7+)Szlj7 zO1Aq+l%IW&%D?K-(nrswS>K5h@kutEB9>!T0bd939J!>D%_y_9+TIEm9U zaE2otC$WxY-WrZcia3pR7}jxKPMS6Nq%qUFHJ|J;Ow1qZ6Qfn1mT4${%KEI2oBEEC zZlyxcLKmhgV6qAoKLV?%g`tvS)Pn)Yg!bq# z;#3YK&dd6NK9Rxa2ag^X^kpJ76m1pad?AN2(r~0+lqC7mPJ47c zQ1&8D60A+IqaLZ$3Yudoh^?`Da<PGI7!j(3~!?cB8^rUg)R2vt88L?s)Tub(`QRxnLJ&BIt_wh_|ff;<%v5uk3fnzINTGmt4I;IJp;-^Zr9=yp{t%A#z}dlPaa422EOn-cdc(VDe+r3D z$S@sr2n&}?)##4lMf{bU`kK%CQ~uh0G_n2k;D ze^I!1lm;_75fjK}6sKBE-&80-kWtOXyoUtPmr4Q#Rz~9^Jq~hstVBHlM3fXcMX~Z2 zSyOQudbF!?&*a$n=TS0}OQx`psV=sC1pb^75#l|o@rH$p`WS>8_MmMSp7SRR7M|09 z-=H2DG1VySA>6+qr`mZBo)KUkK*D@*W8N!lM+sum`G1yqe-0zW)!>*)rfVDxZ1I%0 z6k*pUaUH3bQk!a)hC(6?OZ8Js0Wm*8W7!nxVX4-nO>Rx7+C;rZ44Fy2kKYkK8`ZV| zlr6-y8ng6Uenckf5L^Ou=6+Ook>mW3`JnI~ zq?s&D#(|_OvXMU?ixl;ct3JUh)uJDHVbd#0F&p`|iAvG!t(&4Of@?=A!JNIV3L;*OHSnL@eOqkH zc{>$ZvlO+`Z*LxPorZpci5GN6Q6|~&;VGg*PAek$qxup3s4^;a;st@COmmy+wEhT* z9(7vbt|dJl0^EjaQ=Y|8MK(2!S^e7z^N7Mg-(uJJU#19`#y=Vj6RF;#V}4FQdmu%v zB0N&vW<$QIK1V#DY?xcfTlcmgwvsQ|a-pcHd|K3!52$d>DLK_03YB$!kFU9<`kGtY QsjM_yUa5ayTivMs4?`ju>Hq)$ literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/blinker/__pycache__/base.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/blinker/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e234801bf65afe7ae99282df50dd8031ef59bf46 GIT binary patch literal 17510 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 z 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 +# OWNER 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. +# +"""Refactored 'safe reference from dispatcher.py""" +import operator +import sys +import traceback +import weakref + + +get_self = operator.attrgetter("__self__") +get_func = operator.attrgetter("__func__") + + +def safe_ref(target, on_delete=None): + """Return a *safe* weak reference to a callable target. + + - ``target``: The object to be weakly referenced, if it's a bound + method reference, will create a BoundMethodWeakref, otherwise + creates a simple weakref. + + - ``on_delete``: If provided, will have a hard reference stored to + the callable to be called after the safe reference goes out of + scope with the reference object, (either a weakref or a + BoundMethodWeakref) as argument. + """ + try: + im_self = get_self(target) + except AttributeError: + if callable(on_delete): + return weakref.ref(target, on_delete) + else: + return weakref.ref(target) + else: + if im_self is not None: + # Turn a bound method into a BoundMethodWeakref instance. + # Keep track of these instances for lookup by disconnect(). + assert hasattr(target, "im_func") or hasattr(target, "__func__"), ( + f"safe_ref target {target!r} has im_self, but no im_func, " + "don't know how to create reference" + ) + reference = BoundMethodWeakref(target=target, on_delete=on_delete) + return reference + + +class BoundMethodWeakref: + """'Safe' and reusable weak references to instance methods. + + BoundMethodWeakref objects provide a mechanism for referencing a + bound method without requiring that the method object itself + (which is normally a transient object) is kept alive. Instead, + the BoundMethodWeakref object keeps weak references to both the + object and the function which together define the instance method. + + Attributes: + + - ``key``: The identity key for the reference, calculated by the + class's calculate_key method applied to the target instance method. + + - ``deletion_methods``: Sequence of callable objects taking single + argument, a reference to this object which will be called when + *either* the target object or target function is garbage + collected (i.e. when this object becomes invalid). These are + specified as the on_delete parameters of safe_ref calls. + + - ``weak_self``: Weak reference to the target object. + + - ``weak_func``: Weak reference to the target function. + + Class Attributes: + + - ``_all_instances``: Class attribute pointing to all live + BoundMethodWeakref objects indexed by the class's + calculate_key(target) method applied to the target objects. + This weak value dictionary is used to short-circuit creation so + that multiple references to the same (object, function) pair + produce the same BoundMethodWeakref instance. + """ + + _all_instances = weakref.WeakValueDictionary() # type: ignore[var-annotated] + + def __new__(cls, target, on_delete=None, *arguments, **named): + """Create new instance or return current instance. + + Basically this method of construction allows us to + short-circuit creation of references to already-referenced + instance methods. The key corresponding to the target is + calculated, and if there is already an existing reference, + that is returned, with its deletion_methods attribute updated. + Otherwise the new instance is created and registered in the + table of already-referenced methods. + """ + key = cls.calculate_key(target) + current = cls._all_instances.get(key) + if current is not None: + current.deletion_methods.append(on_delete) + return current + else: + base = super().__new__(cls) + cls._all_instances[key] = base + base.__init__(target, on_delete, *arguments, **named) + return base + + def __init__(self, target, on_delete=None): + """Return a weak-reference-like instance for a bound method. + + - ``target``: The instance-method target for the weak reference, + must have im_self and im_func attributes and be + reconstructable via the following, which is true of built-in + instance methods:: + + target.im_func.__get__( target.im_self ) + + - ``on_delete``: Optional callback which will be called when + this weak reference ceases to be valid (i.e. either the + object or the function is garbage collected). Should take a + single argument, which will be passed a pointer to this + object. + """ + + def remove(weak, self=self): + """Set self.isDead to True when method or instance is destroyed.""" + methods = self.deletion_methods[:] + del self.deletion_methods[:] + try: + del self.__class__._all_instances[self.key] + except KeyError: + pass + for function in methods: + try: + if callable(function): + function(self) + except Exception: + try: + traceback.print_exc() + except AttributeError: + e = sys.exc_info()[1] + print( + f"Exception during saferef {self} " + f"cleanup function {function}: {e}" + ) + + self.deletion_methods = [on_delete] + self.key = self.calculate_key(target) + im_self = get_self(target) + im_func = get_func(target) + self.weak_self = weakref.ref(im_self, remove) + self.weak_func = weakref.ref(im_func, remove) + self.self_name = str(im_self) + self.func_name = str(im_func.__name__) + + @classmethod + def calculate_key(cls, target): + """Calculate the reference key for this reference. + + Currently this is a two-tuple of the id()'s of the target + object and the target function respectively. + """ + return (id(get_self(target)), id(get_func(target))) + + def __str__(self): + """Give a friendly representation of the object.""" + return "{}({}.{})".format( + self.__class__.__name__, + self.self_name, + self.func_name, + ) + + __repr__ = __str__ + + def __hash__(self): + return hash((self.self_name, self.key)) + + def __nonzero__(self): + """Whether we are still a valid reference.""" + return self() is not None + + def __eq__(self, other): + """Compare with another reference.""" + if not isinstance(other, self.__class__): + return operator.eq(self.__class__, type(other)) + return operator.eq(self.key, other.key) + + def __call__(self): + """Return a strong reference to the bound method. + + If the target cannot be retrieved, then will return None, + otherwise returns a bound instance method for our object and + function. + + Note: You may call this method any number of times, as it does + not invalidate the reference. + """ + target = self.weak_self() + if target is not None: + function = self.weak_func() + if function is not None: + return function.__get__(target) + return None diff --git a/server/venv/lib/python3.10/site-packages/blinker/_utilities.py b/server/venv/lib/python3.10/site-packages/blinker/_utilities.py new file mode 100644 index 0000000..4b711c6 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker/_utilities.py @@ -0,0 +1,105 @@ +from __future__ import annotations + +import typing as t +from weakref import ref + +from blinker._saferef import BoundMethodWeakref + +IdentityType = t.Union[t.Tuple[int, int], str, int] + + +class _symbol: + def __init__(self, name): + """Construct a new named symbol.""" + self.__name__ = self.name = name + + def __reduce__(self): + return symbol, (self.name,) + + def __repr__(self): + return self.name + + +_symbol.__name__ = "symbol" + + +class symbol: + """A constant symbol. + + >>> symbol('foo') is symbol('foo') + True + >>> symbol('foo') + foo + + A slight refinement of the MAGICCOOKIE=object() pattern. The primary + advantage of symbol() is its repr(). They are also singletons. + + Repeated calls of symbol('name') will all return the same instance. + + """ + + symbols = {} # type: ignore[var-annotated] + + def __new__(cls, name): + try: + return cls.symbols[name] + except KeyError: + return cls.symbols.setdefault(name, _symbol(name)) + + +def hashable_identity(obj: object) -> IdentityType: + if hasattr(obj, "__func__"): + return (id(obj.__func__), id(obj.__self__)) # type: ignore[attr-defined] + elif hasattr(obj, "im_func"): + return (id(obj.im_func), id(obj.im_self)) # type: ignore[attr-defined] + elif isinstance(obj, (int, str)): + return obj + else: + return id(obj) + + +WeakTypes = (ref, BoundMethodWeakref) + + +class annotatable_weakref(ref): + """A weakref.ref that supports custom instance attributes.""" + + receiver_id: t.Optional[IdentityType] + sender_id: t.Optional[IdentityType] + + +def reference( # type: ignore[no-untyped-def] + object, callback=None, **annotations +) -> annotatable_weakref: + """Return an annotated weak ref.""" + if callable(object): + weak = callable_reference(object, callback) + else: + weak = annotatable_weakref(object, callback) + for key, value in annotations.items(): + setattr(weak, key, value) + return weak # type: ignore[no-any-return] + + +def callable_reference(object, callback=None): + """Return an annotated weak ref, supporting bound instance methods.""" + if hasattr(object, "im_self") and object.im_self is not None: + return BoundMethodWeakref(target=object, on_delete=callback) + elif hasattr(object, "__self__") and object.__self__ is not None: + return BoundMethodWeakref(target=object, on_delete=callback) + return annotatable_weakref(object, callback) + + +class lazy_property: + """A @property that is only evaluated once.""" + + def __init__(self, deferred): + self._deferred = deferred + self.__doc__ = deferred.__doc__ + + def __get__(self, obj, cls): + if obj is None: + return self + value = self._deferred(obj) + setattr(obj, self._deferred.__name__, value) + return value diff --git a/server/venv/lib/python3.10/site-packages/blinker/base.py b/server/venv/lib/python3.10/site-packages/blinker/base.py new file mode 100644 index 0000000..b9d7035 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/blinker/base.py @@ -0,0 +1,558 @@ +"""Signals and events. + +A small implementation of signals, inspired by a snippet of Django signal +API client code seen in a blog post. Signals are first-class objects and +each manages its own receivers and message emission. + +The :func:`signal` function provides singleton behavior for named signals. + +""" +from __future__ import annotations + +import typing as t +from collections import defaultdict +from contextlib import contextmanager +from inspect import iscoroutinefunction +from warnings import warn +from weakref import WeakValueDictionary + +from blinker._utilities import annotatable_weakref +from blinker._utilities import hashable_identity +from blinker._utilities import IdentityType +from blinker._utilities import lazy_property +from blinker._utilities import reference +from blinker._utilities import symbol +from blinker._utilities import WeakTypes + +if t.TYPE_CHECKING: + import typing_extensions as te + + T_callable = t.TypeVar("T_callable", bound=t.Callable[..., t.Any]) + + T = t.TypeVar("T") + P = te.ParamSpec("P") + + AsyncWrapperType = t.Callable[[t.Callable[P, t.Awaitable[T]]], t.Callable[P, T]] + SyncWrapperType = t.Callable[[t.Callable[P, T]], t.Callable[P, t.Awaitable[T]]] + +ANY = symbol("ANY") +ANY.__doc__ = 'Token for "any sender".' +ANY_ID = 0 + +# NOTE: We need a reference to cast for use in weakref callbacks otherwise +# t.cast may have already been set to None during finalization. +cast = t.cast + + +class Signal: + """A notification emitter.""" + + #: An :obj:`ANY` convenience synonym, allows ``Signal.ANY`` + #: without an additional import. + ANY = ANY + + set_class: type[set] = set + + @lazy_property + def receiver_connected(self) -> Signal: + """Emitted after each :meth:`connect`. + + The signal sender is the signal instance, and the :meth:`connect` + arguments are passed through: *receiver*, *sender*, and *weak*. + + .. versionadded:: 1.2 + + """ + return Signal(doc="Emitted after a receiver connects.") + + @lazy_property + def receiver_disconnected(self) -> Signal: + """Emitted after :meth:`disconnect`. + + The sender is the signal instance, and the :meth:`disconnect` arguments + are passed through: *receiver* and *sender*. + + Note, this signal is emitted **only** when :meth:`disconnect` is + called explicitly. + + The disconnect signal can not be emitted by an automatic disconnect + (due to a weakly referenced receiver or sender going out of scope), + as the receiver and/or sender instances are no longer available for + use at the time this signal would be emitted. + + An alternative approach is available by subscribing to + :attr:`receiver_connected` and setting up a custom weakref cleanup + callback on weak receivers and senders. + + .. versionadded:: 1.2 + + """ + return Signal(doc="Emitted after a receiver disconnects.") + + def __init__(self, doc: str | None = None) -> None: + """ + :param doc: optional. If provided, will be assigned to the signal's + __doc__ attribute. + + """ + if doc: + self.__doc__ = doc + #: A mapping of connected receivers. + #: + #: The values of this mapping are not meaningful outside of the + #: internal :class:`Signal` implementation, however the boolean value + #: of the mapping is useful as an extremely efficient check to see if + #: any receivers are connected to the signal. + self.receivers: dict[IdentityType, t.Callable | annotatable_weakref] = {} + self.is_muted = False + self._by_receiver: dict[IdentityType, set[IdentityType]] = defaultdict( + self.set_class + ) + self._by_sender: dict[IdentityType, set[IdentityType]] = defaultdict( + self.set_class + ) + self._weak_senders: dict[IdentityType, annotatable_weakref] = {} + + def connect( + self, receiver: T_callable, sender: t.Any = ANY, weak: bool = True + ) -> T_callable: + """Connect *receiver* to signal events sent by *sender*. + + :param receiver: A callable. Will be invoked by :meth:`send` with + `sender=` as a single positional argument and any ``kwargs`` that + were provided to a call to :meth:`send`. + + :param sender: Any object or :obj:`ANY`, defaults to ``ANY``. + Restricts notifications delivered to *receiver* to only those + :meth:`send` emissions sent by *sender*. If ``ANY``, the receiver + will always be notified. A *receiver* may be connected to + multiple *sender* values on the same Signal through multiple calls + to :meth:`connect`. + + :param weak: If true, the Signal will hold a weakref to *receiver* + and automatically disconnect when *receiver* goes out of scope or + is garbage collected. Defaults to True. + + """ + receiver_id = hashable_identity(receiver) + receiver_ref: T_callable | annotatable_weakref + + if weak: + receiver_ref = reference(receiver, self._cleanup_receiver) + receiver_ref.receiver_id = receiver_id + else: + receiver_ref = receiver + sender_id: IdentityType + if sender is ANY: + sender_id = ANY_ID + else: + sender_id = hashable_identity(sender) + + self.receivers.setdefault(receiver_id, receiver_ref) + self._by_sender[sender_id].add(receiver_id) + self._by_receiver[receiver_id].add(sender_id) + del receiver_ref + + if sender is not ANY and sender_id not in self._weak_senders: + # wire together a cleanup for weakref-able senders + try: + sender_ref = reference(sender, self._cleanup_sender) + sender_ref.sender_id = sender_id + except TypeError: + pass + else: + self._weak_senders.setdefault(sender_id, sender_ref) + del sender_ref + + # broadcast this connection. if receivers raise, disconnect. + if "receiver_connected" in self.__dict__ and self.receiver_connected.receivers: + try: + self.receiver_connected.send( + self, receiver=receiver, sender=sender, weak=weak + ) + except TypeError as e: + self.disconnect(receiver, sender) + raise e + if receiver_connected.receivers and self is not receiver_connected: + try: + receiver_connected.send( + self, receiver_arg=receiver, sender_arg=sender, weak_arg=weak + ) + except TypeError as e: + self.disconnect(receiver, sender) + raise e + return receiver + + def connect_via( + self, sender: t.Any, weak: bool = False + ) -> t.Callable[[T_callable], T_callable]: + """Connect the decorated function as a receiver for *sender*. + + :param sender: Any object or :obj:`ANY`. The decorated function + will only receive :meth:`send` emissions sent by *sender*. If + ``ANY``, the receiver will always be notified. A function may be + decorated multiple times with differing *sender* values. + + :param weak: If true, the Signal will hold a weakref to the + decorated function and automatically disconnect when *receiver* + goes out of scope or is garbage collected. Unlike + :meth:`connect`, this defaults to False. + + The decorated function will be invoked by :meth:`send` with + `sender=` as a single positional argument and any ``kwargs`` that + were provided to the call to :meth:`send`. + + + .. versionadded:: 1.1 + + """ + + def decorator(fn: T_callable) -> T_callable: + self.connect(fn, sender, weak) + return fn + + return decorator + + @contextmanager + def connected_to( + self, receiver: t.Callable, sender: t.Any = ANY + ) -> t.Generator[None, None, None]: + """Execute a block with the signal temporarily connected to *receiver*. + + :param receiver: a receiver callable + :param sender: optional, a sender to filter on + + This is a context manager for use in the ``with`` statement. It can + be useful in unit tests. *receiver* is connected to the signal for + the duration of the ``with`` block, and will be disconnected + automatically when exiting the block: + + .. code-block:: python + + with on_ready.connected_to(receiver): + # do stuff + on_ready.send(123) + + .. versionadded:: 1.1 + + """ + self.connect(receiver, sender=sender, weak=False) + try: + yield None + finally: + self.disconnect(receiver) + + @contextmanager + def muted(self) -> t.Generator[None, None, None]: + """Context manager for temporarily disabling signal. + Useful for test purposes. + """ + self.is_muted = True + try: + yield None + except Exception as e: + raise e + finally: + self.is_muted = False + + def temporarily_connected_to( + self, receiver: t.Callable, sender: t.Any = ANY + ) -> t.ContextManager[None]: + """An alias for :meth:`connected_to`. + + :param receiver: a receiver callable + :param sender: optional, a sender to filter on + + .. versionadded:: 0.9 + + .. versionchanged:: 1.1 + Renamed to :meth:`connected_to`. ``temporarily_connected_to`` was + deprecated in 1.2 and will be removed in a subsequent version. + + """ + warn( + "temporarily_connected_to is deprecated; use connected_to instead.", + DeprecationWarning, + ) + return self.connected_to(receiver, sender) + + def send( + self, + *sender: t.Any, + _async_wrapper: AsyncWrapperType | None = None, + **kwargs: t.Any, + ) -> list[tuple[t.Callable, t.Any]]: + """Emit this signal on behalf of *sender*, passing on ``kwargs``. + + Returns a list of 2-tuples, pairing receivers with their return + value. The ordering of receiver notification is undefined. + + :param sender: Any object or ``None``. If omitted, synonymous + with ``None``. Only accepts one positional argument. + :param _async_wrapper: A callable that should wrap a coroutine + receiver and run it when called synchronously. + + :param kwargs: Data to be sent to receivers. + """ + if self.is_muted: + return [] + + sender = self._extract_sender(sender) + results = [] + for receiver in self.receivers_for(sender): + if iscoroutinefunction(receiver): + if _async_wrapper is None: + raise RuntimeError("Cannot send to a coroutine function") + receiver = _async_wrapper(receiver) + result = receiver(sender, **kwargs) + results.append((receiver, result)) + return results + + async def send_async( + self, + *sender: t.Any, + _sync_wrapper: SyncWrapperType | None = None, + **kwargs: t.Any, + ) -> list[tuple[t.Callable, t.Any]]: + """Emit this signal on behalf of *sender*, passing on ``kwargs``. + + Returns a list of 2-tuples, pairing receivers with their return + value. The ordering of receiver notification is undefined. + + :param sender: Any object or ``None``. If omitted, synonymous + with ``None``. Only accepts one positional argument. + :param _sync_wrapper: A callable that should wrap a synchronous + receiver and run it when awaited. + + :param kwargs: Data to be sent to receivers. + """ + if self.is_muted: + return [] + + sender = self._extract_sender(sender) + results = [] + for receiver in self.receivers_for(sender): + if not iscoroutinefunction(receiver): + if _sync_wrapper is None: + raise RuntimeError("Cannot send to a non-coroutine function") + receiver = _sync_wrapper(receiver) + result = await receiver(sender, **kwargs) + results.append((receiver, result)) + return results + + def _extract_sender(self, sender: t.Any) -> t.Any: + if not self.receivers: + # Ensure correct signature even on no-op sends, disable with -O + # for lowest possible cost. + if __debug__ and sender and len(sender) > 1: + raise TypeError( + f"send() accepts only one positional argument, {len(sender)} given" + ) + return [] + + # Using '*sender' rather than 'sender=None' allows 'sender' to be + # used as a keyword argument- i.e. it's an invisible name in the + # function signature. + if len(sender) == 0: + sender = None + elif len(sender) > 1: + raise TypeError( + f"send() accepts only one positional argument, {len(sender)} given" + ) + else: + sender = sender[0] + return sender + + def has_receivers_for(self, sender: t.Any) -> bool: + """True if there is probably a receiver for *sender*. + + Performs an optimistic check only. Does not guarantee that all + weakly referenced receivers are still alive. See + :meth:`receivers_for` for a stronger search. + + """ + if not self.receivers: + return False + if self._by_sender[ANY_ID]: + return True + if sender is ANY: + return False + return hashable_identity(sender) in self._by_sender + + def receivers_for( + self, sender: t.Any + ) -> t.Generator[t.Callable[[t.Any], t.Any], None, None]: + """Iterate all live receivers listening for *sender*.""" + # TODO: test receivers_for(ANY) + if self.receivers: + sender_id = hashable_identity(sender) + if sender_id in self._by_sender: + ids = self._by_sender[ANY_ID] | self._by_sender[sender_id] + else: + ids = self._by_sender[ANY_ID].copy() + for receiver_id in ids: + receiver = self.receivers.get(receiver_id) + if receiver is None: + continue + if isinstance(receiver, WeakTypes): + strong = receiver() + if strong is None: + self._disconnect(receiver_id, ANY_ID) + continue + receiver = strong + yield receiver # type: ignore[misc] + + def disconnect(self, receiver: t.Callable, sender: t.Any = ANY) -> None: + """Disconnect *receiver* from this signal's events. + + :param receiver: a previously :meth:`connected` callable + + :param sender: a specific sender to disconnect from, or :obj:`ANY` + to disconnect from all senders. Defaults to ``ANY``. + + """ + sender_id: IdentityType + if sender is ANY: + sender_id = ANY_ID + else: + sender_id = hashable_identity(sender) + receiver_id = hashable_identity(receiver) + self._disconnect(receiver_id, sender_id) + + if ( + "receiver_disconnected" in self.__dict__ + and self.receiver_disconnected.receivers + ): + self.receiver_disconnected.send(self, receiver=receiver, sender=sender) + + def _disconnect(self, receiver_id: IdentityType, sender_id: IdentityType) -> None: + if sender_id == ANY_ID: + if self._by_receiver.pop(receiver_id, False): + for bucket in self._by_sender.values(): + bucket.discard(receiver_id) + self.receivers.pop(receiver_id, None) + else: + self._by_sender[sender_id].discard(receiver_id) + self._by_receiver[receiver_id].discard(sender_id) + + def _cleanup_receiver(self, receiver_ref: annotatable_weakref) -> None: + """Disconnect a receiver from all senders.""" + self._disconnect(cast(IdentityType, receiver_ref.receiver_id), ANY_ID) + + def _cleanup_sender(self, sender_ref: annotatable_weakref) -> None: + """Disconnect all receivers from a sender.""" + sender_id = cast(IdentityType, sender_ref.sender_id) + assert sender_id != ANY_ID + self._weak_senders.pop(sender_id, None) + for receiver_id in self._by_sender.pop(sender_id, ()): + self._by_receiver[receiver_id].discard(sender_id) + + def _cleanup_bookkeeping(self) -> None: + """Prune unused sender/receiver bookkeeping. Not threadsafe. + + Connecting & disconnecting leave behind a small amount of bookkeeping + for the receiver and sender values. Typical workloads using Blinker, + for example in most web apps, Flask, CLI scripts, etc., are not + adversely affected by this bookkeeping. + + With a long-running Python process performing dynamic signal routing + with high volume- e.g. connecting to function closures, "senders" are + all unique object instances, and doing all of this over and over- you + may see memory usage will grow due to extraneous bookkeeping. (An empty + set() for each stale sender/receiver pair.) + + This method will prune that bookkeeping away, with the caveat that such + pruning is not threadsafe. The risk is that cleanup of a fully + disconnected receiver/sender pair occurs while another thread is + connecting that same pair. If you are in the highly dynamic, unique + receiver/sender situation that has lead you to this method, that + failure mode is perhaps not a big deal for you. + """ + for mapping in (self._by_sender, self._by_receiver): + for _id, bucket in list(mapping.items()): + if not bucket: + mapping.pop(_id, None) + + def _clear_state(self) -> None: + """Throw away all signal state. Useful for unit tests.""" + self._weak_senders.clear() + self.receivers.clear() + self._by_sender.clear() + self._by_receiver.clear() + + +receiver_connected = Signal( + """\ +Sent by a :class:`Signal` after a receiver connects. + +:argument: the Signal that was connected to +:keyword receiver_arg: the connected receiver +:keyword sender_arg: the sender to connect to +:keyword weak_arg: true if the connection to receiver_arg is a weak reference + +.. deprecated:: 1.2 + +As of 1.2, individual signals have their own private +:attr:`~Signal.receiver_connected` and +:attr:`~Signal.receiver_disconnected` signals with a slightly simplified +call signature. This global signal is planned to be removed in 1.6. + +""" +) + + +class NamedSignal(Signal): + """A named generic notification emitter.""" + + def __init__(self, name: str, doc: str | None = None) -> None: + Signal.__init__(self, doc) + + #: The name of this signal. + self.name = name + + def __repr__(self) -> str: + base = Signal.__repr__(self) + return f"{base[:-1]}; {self.name!r}>" # noqa: E702 + + +class Namespace(dict): + """A mapping of signal names to signals.""" + + def signal(self, name: str, doc: str | None = None) -> NamedSignal: + """Return the :class:`NamedSignal` *name*, creating it if required. + + Repeated calls to this function will return the same signal object. + + """ + try: + return self[name] # type: ignore[no-any-return] + except KeyError: + result = self.setdefault(name, NamedSignal(name, doc)) + return result # type: ignore[no-any-return] + + +class WeakNamespace(WeakValueDictionary): + """A weak mapping of signal names to signals. + + Automatically cleans up unused Signals when the last reference goes out + of scope. This namespace implementation exists for a measure of legacy + compatibility with Blinker <= 1.2, and may be dropped in the future. + + .. versionadded:: 1.3 + + """ + + def signal(self, name: str, doc: str | None = None) -> NamedSignal: + """Return the :class:`NamedSignal` *name*, creating it if required. + + Repeated calls to this function will return the same signal object. + + """ + try: + return self[name] # type: ignore[no-any-return] + except KeyError: + result = self.setdefault(name, NamedSignal(name, doc)) + return result # type: ignore[no-any-return] + + +signal = Namespace().signal diff --git a/server/venv/lib/python3.10/site-packages/blinker/py.typed b/server/venv/lib/python3.10/site-packages/blinker/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst new file mode 100644 index 0000000..d12a849 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst @@ -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/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA new file mode 100644 index 0000000..7a6bbb2 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA @@ -0,0 +1,103 @@ +Metadata-Version: 2.1 +Name: click +Version: 8.1.7 +Summary: Composable command line interface toolkit +Home-page: https://palletsprojects.com/p/click/ +Maintainer: Pallets +Maintainer-email: contact@palletsprojects.com +License: BSD-3-Clause +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Documentation, https://click.palletsprojects.com/ +Project-URL: Changes, https://click.palletsprojects.com/changes/ +Project-URL: Source Code, https://github.com/pallets/click/ +Project-URL: Issue Tracker, https://github.com/pallets/click/issues/ +Project-URL: Chat, https://discord.gg/pallets +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.rst +Requires-Dist: colorama ; platform_system == "Windows" +Requires-Dist: importlib-metadata ; python_version < "3.8" + +\$ 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 + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + $ pip install -U click + +.. _pip: https://pip.pypa.io/en/stable/getting-started/ + + +A Simple Example +---------------- + +.. code-block:: 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() + +.. code-block:: text + + $ 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 + + +Links +----- + +- Documentation: https://click.palletsprojects.com/ +- Changes: https://click.palletsprojects.com/changes/ +- PyPI Releases: https://pypi.org/project/click/ +- Source Code: https://github.com/pallets/click +- Issue Tracker: https://github.com/pallets/click/issues +- Chat: https://discord.gg/pallets diff --git a/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD new file mode 100644 index 0000000..3ff0797 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD @@ -0,0 +1,39 @@ +click-8.1.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +click-8.1.7.dist-info/LICENSE.rst,sha256=morRBqOU6FO_4h9C9OctWSgZoigF2ZG18ydQKSkrZY0,1475 +click-8.1.7.dist-info/METADATA,sha256=qIMevCxGA9yEmJOM_4WHuUJCwWpsIEVbCPOhs45YPN4,3014 +click-8.1.7.dist-info/RECORD,, +click-8.1.7.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92 +click-8.1.7.dist-info/top_level.txt,sha256=J1ZQogalYS4pphY_lPECoNMfw0HzTSrZglC4Yfwo4xA,6 +click/__init__.py,sha256=YDDbjm406dTOA0V8bTtdGnhN7zj5j-_dFRewZF_pLvw,3138 +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__/_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=5318agQpbt4kroKsbqDOYpTSWzL_YCZVUQiTT04yXmc,18744 +click/_termui_impl.py,sha256=3dFYv4445Nw-rFvZOTBMBPYwB1bxnmNk9Du6Dm_oBSU,24069 +click/_textwrap.py,sha256=10fQ64OcBUMuK7mFvh8363_uoOxPlRItZBmKzRJDgoY,1353 +click/_winconsole.py,sha256=5ju3jQkcZD0W27WEMGqmEP4y_crUVzPCqsX_FYb7BO0,7860 +click/core.py,sha256=j6oEWtGgGna8JarD6WxhXmNnxLnfRjwXglbBc-8jr7U,114086 +click/decorators.py,sha256=-ZlbGYgV-oI8jr_oH4RpuL1PFS-5QmeuEAsLDAYgxtw,18719 +click/exceptions.py,sha256=fyROO-47HWFDjt2qupo7A3J32VlpM-ovJnfowu92K3s,9273 +click/formatting.py,sha256=Frf0-5W33-loyY_i9qrwXR8-STnW3m5gvyxLVUdyxyk,9706 +click/globals.py,sha256=TP-qM88STzc7f127h35TD_v920FgfOD2EwzqA0oE8XU,1961 +click/parser.py,sha256=LKyYQE9ZLj5KgIDXkrcTHQRXIggfoivX14_UVIn56YA,19067 +click/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +click/shell_completion.py,sha256=Ty3VM_ts0sQhj6u7eFTiLwHPoTgcXTGEAUg2OpLqYKw,18460 +click/termui.py,sha256=H7Q8FpmPelhJ2ovOhfCRhjMtCpNyjFXryAMLZODqsdc,28324 +click/testing.py,sha256=1Qd4kS5bucn1hsNIRryd0WtTMuCpkA93grkWxT8POsU,16084 +click/types.py,sha256=TZvz3hKvBztf-Hpa2enOmP4eznSPLzijjig5b_0XMxE,36391 +click/utils.py,sha256=1476UduUNY6UePGU4m18uzVHLt1sKM2PP3yWsQhbItM,20298 diff --git a/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/WHEEL new file mode 100644 index 0000000..2c08da0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.41.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/top_level.txt b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/top_level.txt new file mode 100644 index 0000000..dca9a90 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/top_level.txt @@ -0,0 +1 @@ +click diff --git a/server/venv/lib/python3.10/site-packages/click/__init__.py b/server/venv/lib/python3.10/site-packages/click/__init__.py new file mode 100644 index 0000000..9a1dab0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/__init__.py @@ -0,0 +1,73 @@ +""" +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 .core import Argument as Argument +from .core import BaseCommand as BaseCommand +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 MultiCommand as MultiCommand +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 .parser import OptionParser as OptionParser +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 + +__version__ = "8.1.7" diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..046903e0efc00cdb1165b09143181153adf3f29e GIT binary patch literal 2629 zcmc)M*-{%v6b4`c+9meItY!?xm`!3c`zDFSI5toQZce3Ysx@k)F|$?o2uvOz?~q4G zRbD4Iy3JKyAy+x)h{bt=;PTJct?BNWGd&vo_V#oHfByLMH(AU^B7afi$DdYg9N>RF z*cORYA`q#xR9c-Dw-s7j$ZhC0Xk$mwQHZi*=orM;yUi33d{lgd{tKPC<&D zMyDao&Nvx23t4s+-45;Sc60}HushJ5(8=yZcR?4s3*8Of>~3@q^ssx-z0k|9pvPd0J&Jw}ui0bh zaTsU6MjK$T$DKFs1Wd3E^dwBO-#BmGDVSnUIPctPm}XBp@7)=gVZTMs!Yq3VJqL5_ zcj$STXHTOSV1fM}or4^E2AzjIdltP2i|je{5-hRj(aW&RUO=zF3Ok2hg;jRm`QWa> z8ha7F4(seC^agCOm(iQB$zDNk!4`WJy$##!59l4(VXvWgVVAv*-h(~%26`X%*_-GC zIACv~3s7Khql-{v@1RRiV(&VK?hzcZ_t3|1%-%R{SiL03+PigWf#$(;1jw8 zKUEGdBQr<8G}0xCT8#i??XIy)ZeJc$gXHk!{>v_Wt zr?pWQT2|6R`E?xmd?JO5Q(RJnM#Y!f@cfV_m&Uyv)^J%|w{F#N@v3bZw4$xk_<7)K zQFdf5{dWsK|1&L(WIE(JE`=4S1y!&MHkpr z6qTn+U29R5*w=x5&C7f0$zsosm)XJF=jgj7pDrbJY&-HuDL&DzFSgdWD}Ef3J@YT| z#yyuU&2vAEX#a=>IQFSR%|fQ`l?cqo%j>Pm(6s7G;q5eEt~%SC3|G-y{FvoPL50G~ zbGhkSq*e3HJ6m8mt9(>cR&2WR1Wszz`1rUZ>Yi1@&R8Jonre^vHo5Y`OvO z2u(B6p*nnU=+H#ndt$VBe*PJ|;-#8zTl8V_P=xZzcF9qy5&n)He?Bi6D=)O+q~?yakbfQMg*kj^oFdG+=5?1Uz|s^gQ3$XuUYd_6B6U0xm?Vl#Su zeagQdPqp)gD{J21`X2688bKu$L10#Fs#rHQ%eE)fgQ-I$g^Qh?)JeDCr7PtJ(&Kr4 ziEZSTa_eU^pBo9&toW8`Hlny!rJ|Rx!uM}PMJZwwaf$>*k|ISxukuFvd4p?}p;*|QhcCTqgbcdpxC6?qS&U`!Dz(lp^ay{OC5U@`xFNh1&Sg@ zBV(FR&%gP5M4izG6#x93ui+PK{+rOgm%sFH!h4}){>BmdcEQ8j{!Qoc!NRfmJL%o! z@%uj?@JnJPx3rkob|@DDVcp_$rSlfOPx7W|dv<7=x!|FZ+-bf_@a>0xko}4gjb!85 KmjCx(vh`o0Pq@4Q literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5bae8642841179d026d148bef70cffc986af342 GIT binary patch literal 15687 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 D=~1a8 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f815eaf01b63e7a6b0997115d0e60a94de8004b GIT binary patch literal 16327 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 DA*b>! literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b17266f54b66d214108d219c8548e805d75fd2ac GIT binary patch literal 1563 zcmZWp&2Aev5GJ`?YPFW-#BlsmG`*$39^y@#LoPuPpaqH)g${Mm078SsTBNL%R$Q4} zS+=nPTG)MvA}Amq3-on*;k75fLi*#*tejM7C~(9X&S-|;e4}E0JtVMx`~7G2+$ZD@ zR8|)U&)EB_yf*pYYtMMCD6TpM#1mSk<_qlvDxwJ_WE3NX6`<`i3sND}uLZ#T|K_ zYYGXkZ(v2-dE@ld-8nQW9VL08kCItoq;&$HsHO8J#UyGvZdKklSggSp7=fYz!i9E{ z_EeIqe(89g+R}NwDF~zNuf%MD%j=i%pct!onA$?e2SvY}rAEbla2`F>falQ0RvCaY zK2iE4&a=aKa#jus{doVAN3qRH^$>E5fCM(~b>o*rT~u zK^uppqE84T3EY52Z#8<}lH@x=$qVR7g}30H09CO^|LHRl(N4r%JJVU2rFpU}!risg zL#vLbP|&R@;${O1FgqaJW|2#4=+c&^*xCf>-`47=u^j7lyPw4kTNE{R;mZypBQYIvPg8HI<%@l}Ss59L%#42hW;a za4`5FvyQHOSY$d9OU&-0g_#rQW%3l*3IR2a{|9GniGEV({On_hv275XZUHs{>@60u z^PN>pR{W!u3z9^qW0fQ>OpexSl$NpxV{l$FtClldow)p|wZq>ekT7V71 u$#J4Qn`HXPL=fx3+y7day}E?jeI;F;y(UiZborvsuoD)CA|N7%UcJ4nmo4=AJT4T$9n%UVMbG(-PGru0&qaRbYW@J*4HY5^1tq zTiudI3XK3mCxalF>~6A2FuOZ}bTp7-5+FI`nnQp9Iqan`Iqb=YoV=TZla2DdYElv< zdw?Jm>h-ItS5>d7-h1`llb6XP75x6@7hmzeJ+COgq{`u60+n$T|AnR~4-}>_wV~M2 zSG84H*KAFGb=$yKYs8wSZK_101CQHri5tKz+md(;c*0Id+ytJqlM;^uPuVGnTfozH zTH*=d89O8KB=D@Am3RtxpWP?%bfdp{!agDK4DbPaK;l{8gZ7}r`+(={9Poa2qH(f0 zWDltdSL?5_fk&DzK2bi8c67=<1?~qi`)T{M9GL??Y!8Dv!;@{*KEqGf&)R4C+4?#A z9N>BTJm3ZU0^o=}0{FW9Iv?h_w#rTtZB@glH_(!yHa>`NqOG=dHiX`9$=)~7o95}Z z#$MYW@oj#Nox;fP;CmY1x9}at_aam5JnOgL#`h9CV}F;OwJ!r7McWuVXJ29G?W^p9 zeQn#qPDa4}b^E%iEGcfvQ20Ar|Dh`M$5i{>hl-oqRPHM5b@s*+g}uT1+PeK7zg~ae zejo4y`vdkddy{?p31~s}9rhNe-r`FAL(tto%SDz)OP=3A{Ug-hW|vUEB%1bzE(Bt|608f3p4gqG()=AD=DmsHo!J7g z`0U)&(!wH*GiT=rd!~XtR8KiY&z)*`e$8E3O2N$NEqWLa8trKj{~>31(=X9DPfAnuB7Y)OXJ=$VPbB}SzfPJaRfTPp^j4y z^#*rCs}}GkT~TNWUS^)#*a{7o)taGM^+dBAgfV}$yvD=0ABY;`ewg&vm%VD$=YfyW zZoq|GZWQy$&~hBN+~kfECLO2gvGoSwX~+4&dbttx2s$A_)>fDVVgw9;14&uKJk=U+ zFyDEqh|5Gk;Ds}`>NWXTz3hAL*n(FLHp_yKRU2jh(PbBxT=&O(E;hIr+u-iTSfjQ) z7M=L@(W_U+d~EabTDkJ5yu$slN~2bJH0D4CDxT|m4L-WICC*}%Pf`3~08247Q$7A? z{aVsZSLlMfKiUPo5mP9>4G<`8<+0XMMLbYlHP9aGfgTtwrL6|B7HnWkZ|kbEJrI~J ztsc)QkByeGV*yX>s!K|cjHueGsx0)>HkGGpF`tqwgxR^R$p_QU()`Tg#N=!tOh@&F znfr674a{woq$W8K=}CF@(YX`j0wSu23jkrdD!issW=wG37w4#{9}~#|&OC4Mvd{A| zfoD+(txZu2%F7KN(Zz81D}I=Y1j`Awpke#>B}QpPa)k#S!TUbyeipz~(`ruDv?RV~ zHSqzOj%ft(M?e2ffCG(S+7rdrzfh_w)0y$avW+hkL$PC!@ffsz2|Dd<`cu)J&X+f5 zN|Ru}=dNh`RODTeAhy(&;^3WLP{bIjWE)nY{tcejLc`~csGyWVy_mUk-w;r>gh} z5(y63ssM{A_$x}38-V_%>EAj;1CUBF$I6#=`EK%W& zMt2!`!IMNH7yJ-d4aFyQwiHXv>4Msh-6(Bz9K|O!J9?w?HWheIbdzRy@+i+ROk5m0 zJ32qQ#^|>H)DU8ygUk>mddcJFJS?wZy1^$=&%j3z<`b`b(3sC%LwAF z7iW%{>+G>cQ;&y=rWK|aSgrk+-U3@E2*ZKkzi z^=uAuoVSXC&PJRD*uGsUyRH|E(2hnt#zx%r<}w!}UUg)7E8zYJ8Gw-oi_@2{zIS=H zFv4LI8D}FM%ea_V#k-hi<)>fK?;k$i?(3-82p7T=H%9V(ktIp~cDb?63)Co;TF`NY z>3OW%(a0r{A-1GG(ea0A*rwUCAIL%BYlZpw(!5ieE6h(U&XkJI#AIoHv2Z6ef?AV9 z5gMGYh4IotM6MS~(_w6b7R|?{R)p$u*e^Hb1fH|Z9olnfM)oN@N&9lvp|$?u?!H6K zl3o)V$F!X~@YH!5;M%_eU_rMG)lxP58GC8N!dszfQ5~3S{8uub)C{#>O#{L zS)4@Zm=Z3*_J4yCifK&$%?c>xh}1^h12}df(E_90H|ChSlf+2Pdjm)dx(CTOrPe8d z3Ovm;Xo2368iFkt#V`{|)WUkRu?-(duZeAg?zZJgm1Q0|9pgl#+qItSA^lAZnjFqPi}uRVen@&G zOHzj)qT?@6BAEdg2pT9X zh%@Vn0sT%OK+x++w5AXSCRqw$U7DrQmZ5fpfHdA<8J0y)mi2K9w0gY{ZAcWLtsnIh zm~ns&qBg*C>?G{PATuB`Lt&v|Zzh2c;wrA}UkbQ3kXHbNytJmMwZh9Ir|M_QG(Wog@pBxR@(ozEzZ3)Rnhv|dtz zT3WeDAf)wy+SWu0i)%Z2OWg$n+tBhIgWN=9G7^Ro#I}%=p+96X)JB`A-le;|yq@~_bz8{A-rR>0yBERPc$f0Hl&h@Su#R10_jDb|{eh3I25G?sKJQ{Qg`08Jit8Nsxb2oct8zH&A zwVjOINaSB`y-;uCXh<7EOZt{*d>NCJJ`j8jC-iTil_xax5>1Ur^0_0%H&lbrjB-7p zHCc1ZVr!-(Lz&Q86CNU{U`u$IIO4>daJQg{p$^|G(gJG+-i?fH17cMNfgo=$G?qQD z5gqLojX%(Z14F)oj=w|k2LLQ(Sk;VvL_))foRQVxm{EV2>BPyAO%xP3_8dBiTsOLS zPKGOhU$cW(K7je&Rhi0g?9BMmc#JHqL0m?atSMBzC6d_tTcezckwW}`r#vw1kU@MQ|rkzQE5GgEY;M4Q;ACZhr`UHl$U zxtFJ!XcI0??!kc&(_x=^yo_Yt`X(hotV7)K$a2)Tj`CXZZg%BlHIB^vqy1Eg9~Hbm3X z>HztBdr3W~imz$L&j3PG`tg2`OF{;4|9v8D4Ui>TSH&g7^y&uWiF{~$$KaFWG{n__ zUTFC;($*=J)A{?+P3!)aFYeQ_CQ^cA?WGAZE0iGgqiZC|lzHDM z159R51`$zym}E9eR;Fm0zG&nqxQwPCA&625WLHEV5yioLbFCaiw#`~=lmp6Ni=Pt3 zAb}i#OGIluLe82uu3wW0h=qXNlLkAaWOW@}OJ|%Dx0J-l~q`h#;|_;*>czX}zTll15szh)^0qvbEBxiJuTAWhQj1Z)_mYrp9?%|7_}+CaKL(f_UN$k518aww^# X=-s*an_OJWkeiB7OO~XT{h$8@Pvra5 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e596f5a8739240458433f61540427cad218976c GIT binary patch literal 91157 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⁢7+ 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2eb3fe5d7aa7625763e233e1d2257f12beb4098f GIT binary patch literal 2448 zcmZ`*UymC#5MS?Za=F}}_O30xYYP~Oe?e_hKnN*92y|-U1PWE}B-B(Wan??DbIy8Y zJIUpAMX2p7AAq;^v4{`A7vW`JdFnH76;he;CU93Bmey-~X2-wzd1kz7ZLR7-`|Xck z#Iq&O`x7T88?1R>z+--gj(eO)uT9|XOMeu!1L6rX4E1FvDYeTy;GtX^RoWGh1dqJ- zGRUj^GT-7=zVf*Ah_qMS$~G^HRbGMd8eiV_`XOIi$U*y6**ePFEBp#S&o>^2?R9>Y zZ}JN;I>)c^i)clxZhM729D%({{5AOIJSTfz?e*t?-fPuJUXm(e@;QMi%$9akYQ>?w zotI4_MQUGcSW*8ru|hL>|2C6G{E(Nmuw$L-5Wb109emv`GtY7ooK8zc+iOomsSvz4_)Z%HF(wk7rL$> z%4O^vUi|Vu!@c=vN~T_|#2&&Hcij;fYGXm?j#5Vh zox5A7bU#iEjaW*1f{u;glo`tCl+CDBRSJzokua~=D9EC!Hx!YjeXT~6rL$=)v{;w~ ztBj767Bm@UKz(8hYZ9U)Wj2`z*uWuc_Qz?|>}JfE#W8d#7m?D;D!s6WN;Xj`O^h>? z>14!oB4>!YKbEwwG>wJKgf`TSqZl2Tn-)>5x^x;RusTWxu?1(Hkp$vc3uD3UB&AWz z(m|3AXkra$#B7p)%^pKmVB=FP77Wy@&dk1|+1SKqX+b6@7(--5y3q-fW1!s7ZcC*g z0^L+Cj@yC7GdS3lK)K@tUp)>?0aUOOfZ9@ zgGE8`>r??7dWtFFRHRY|sE|3TT(Bcui=$o?SSM)hYrGyHH1S5zZx&;Goq4>Mpd=|d z5x^u6)|or=DX1G{xl)3#^(%gvz$Hatp+;^)G`Xv@3{#DNA1?7~qz(cXK^VtQ&;k^w z&~kTIZ6hz+Sq4Q<<3*J(+gJ<6agJw`ukGKvbE~uS^{t(6c3WTN8-;EMu3nL1sWQ25 z1!OGLdAH*{rXirTRE#@+^RTCs%q!nzSihNcQR+g%p+7T_DxZxMA4~B$=Agl_u6V1Y X>{kf(VX#iZ@EW-iR=299w@d#3DvfyW literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd2b4c45642c2bddc37d97acd51467c4dde6c2c5 GIT binary patch literal 13689 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..baf1be69994f8eb4fe33fb1ddab555826963512c GIT binary patch literal 16864 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6254b11d05f95fb0922cb924c45280f9e61b52a7 GIT binary patch literal 26149 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c1f90f5a386da61e306d68e065114a838e7d703 GIT binary patch literal 15222 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6def489b0e992d576583ea1307655036eee39bbc GIT binary patch literal 33706 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da2dc38780ed834bea93244a23ccdfd36c994b05 GIT binary patch literal 18862 zcmc(HTW}m#dfs$T&lLj@yofhZRO?EP1P(+=D`^p}ED|IoN)!l-lqf->2aP!mV8FpN z_H=_FCIeX(WqV!ab(~}q$5}f86IZGf$BA=&NXmAysiZ2EJSLT@PAV^X+NxCiurCR< zE9U$D(>)ge+TFK|)CZ?epZodm|9=>aj+Qg{{e%DVyZ&2OGnxO%m%-mSUS7u&{=m*; zR7P2?%$)ga%~|qp&)M=fJLll9-O8=z=kgZoWLt&R;#^Vk4)UeB67o5fZn- zejoCO<_<}Iy!FuP;kmREPYN zi;j9o9sb;zdsMxzj;n`}bJYp7e=Pa>h&qX~$JGtxqQztW6H=a6kE&&@sgMn*lU zp87nap1Nz#J%zWY)hWE4!rRj&3;&%iRZEuoKs|##PqE))8TD+EKW*MoGT~R%89X)l zQboxjWi3|JqSJ{QJzhllrQ};ty`kR3x3k!l%jzxc%3Ii#=dl|%)!V&!UXfgpE5>Q$)jMhi zZC+5P<-e=HmsPW<@uJVw{UUmP7tb{r!CCnROBc)Px_a;P{M<{*x|XT_(hmvUGgT`d zTVGRN5SRx^^J4tVQPAVb#|16}vpVH1_dl4@b3eQz~H z$w;u~w=oLe@wz`;4%SM;&`XCy8k|#9d##qY(DFZ;op9g1dH=+4NmRSK7Bz#m z*ZSz)n>UAcfxQ**WbuU0AW@dGRaQAF7iCtg$Of3@e?7Bksk|zDUfHsuY}fiu=B|z1 zDR!Q_0SF6S&*eNgf*S^IwCqK0GjhWXOe)w2UH?wQm+`||?09-9?Br)_{2S+QVVm$? zoUNIhK7=VW@brG1U=h!wc*3WVbc)}>F*P$?>kq8ovTop*oJ^G21byUxAA&kx%WP!6 zum~EZi|No+TeAo4BKgA7Cz$8K>ElS^LV_tz;w7vgv8{2dV%e5s*zh2Emyz+!5z zwgUVOU#q2<<-}GL7t`I<1S8EEV>lUt9hz~TU`_@rrrkY;qL3iyX3GVA3Yj=}+iR`+ zLnlNy8onYwJfkMZl{aWw#x|Y_b)(%@bxT_>HG|&(338xG7P-o4HF; zk?lM+9kc?|I*rws-RU1i zan-x!lM2+h-Z3O)+nmO@Wj`p|`gs)n@C=gJS@v6Nae39dQ*Zh0rD(aqtxtd4GeWlP z+iC0~_5;v;&)TxPwz6+!^}a3`dDs3`!1z{z`CHj;Haw!7Yng6Vxoh@uV-_3V(nCU!P=D$5@>fgf&auij* zYf0}ilKu@D8GRkY8KTW%*?tJSJGkSZ_>eT3y% zoK{@&+v}^o2Ak4{QCKbN7x71bgB3>CJnb!kv@F;Cwu*BbfmUH$iGs*$B}W~XL0Y3a z`tYVy37$js;&KB*8Rm?iJV^y*h%fZ{YeaI^E-9C;y z2*9UhyOJ$tkD}DZQ@nq;s4t*#1JBTJ1aGh73I7)oKSLoB0;DyUE!m}P$tmU36Dkju zp7U`Iivk76l~7XfacZjE%Z>O&F!zcYg+NeJW2m(c-^vhy#?^j^KqGk1FWTyWI*7N5 zd>v&CP-`0k)I%s8gLrmW9YJm%a!1uM>f5&;*daw~LO z&09V|N&8FdEl-;-3+uupRN#khJBYwRTCGi&GC|qJFIx6@*Mlqrkzy50X4Q8Wys+7D z8_RwJBlw<1YY?!|_ub|qn@cyG1SJ5M5Vh(9*jyQrfPuPz>zeCcUv7pj{$CG$%)-SG zE=hDU9Z;`cSD}2Qs6*-~#j&Ml;ymePBf1n9(*Zl)vv~J#r5%724K|AV^8AsxzY> z!sz-ElIztx*$Ek?9((AoOF0ha2bQrJ9eO z&~Gj3H`!pXPJ|;2u!TBsy&2W(-$sLwe6&)`TjoCpY`P3=E!tyF-YQ$2{V6ck(pF}& zB3ume2kmLv6gQnguqi^NVVYJsg8Zhy>Go%&1tB=V3%OxI^IVN@*>FY1~dA{2(d^Owqs4jdYujH z^}oag5irZx?itUYt7iSrQTD2laDwx(kz@2zFi{^3R>NO*CmHT42{w01Xf-1>GtBxFe zZ0p;x<;%w%oKyh+duSw>SI*@j8r#+(Yy80&xaI-7_^JJqyyIA%(H@`^5{KY{q5<(u z;DN$1&JOYz;Gx1Cu?_?X=OxOl-FbGJRKpzFI@ml2JolGyI{}X20*Fb@H=u3QW*~19 z#`U{QK4LNq#q#0rq1*tlJ!Ux%I%B=b3QhX@*-}8^9CgW1hoO1?hOm#G0u;2tH>AIv z@aArKp+FiCbOFo?9IgdM*#ii!%uN&vK-DF%p;Xc~P$lrx_92Iv0U&`vwjO{R>;ljH zYj+_&C=&xEjr>-tx#YK_*5)6kyOMVx06plO7~YlP%DeW6r^*xk5z)O1tQMMSc7Km^ zfHDh_4(C>{{}Z+%KmcqG^v3Lc2BW;ws7J6*KvYCdl$6+x78)EW{W0GIstR5x(eu$fxue)}kHw7wy=@blgqrPSM zNLH{Yc4#Lt(7M+KVG68Jum1_B!1Wb(u{8M(tR+{T(QhEV1g=ExMnvFWeGy6Z7#BqG zr(TcC^*ZDa*np6)fQ_zut>jCgUROZ_RQ@TniE~iYg0?=(PM&6gvk(L=eVy6tx%Q^M z!7m^4)xLaHmSo_KyR4U3?$D|fkDm8J|6;0tYpz7E@^kSr<`0=i$9eR34Qw^wxBgK` zjx1hQ!NU^0w+KkFOC&td%kNig`zt$Z|D@>HKQ89%FYSE!{-KA*vWIi!1La(~U}wir zqnOmNbLB6O7p1=j`WyODQG6Xw_&1UC#dbft;^3hY2!jYjZz zp6C5<@d$=Oq(RDzc((j>Mf6C;2CjFC_p$TCB9*+!N zu{uY04E^;2R7#BWBDu1bxaT;Arlr(r3-zi8HD!6NnS@M8e>5dUy}^VaXy}lT9Fi8H zNP3gG4wD{H5rU-uBFnl=zLuhJvzy;8c60YE2-W$1+xDYT3A&>N zlNa?w2R#JQNH-_5+8`AEUf;6e(5c^QQ&HiqkKYcL0i@I{4RH5V6s4YYURIq@cB#Bf691bcl`2W{9g zBM9lzVmerbK>&;e-`X5OBhidJ;Qq;2--UoZp4LmX%rZNe7J*(cNLSAW-E z4Q}JxxtVL1FCgn^q^78zK&z$ZO05ig zwA`ej-yEbl`#?6yKtRns-`8}KZe64Oidv%u7!ok}DaS6h#NOFMsowk8rADom+N>K; z&zF2PHRZlkd#=|yL7*P~BzOo|C06c4qhz)z5cYb3R1Mc0k83lmrAIbFN7!HyJVrRO z(^VW4(PG|^D8BbPl6?r_^=k?GCs>%yE`ig%*7V}Qn$9Uj(8K)a=jEg@V9)lss}GO0 zu`4fpO%DdLzP^2bU!Nc7A>G%64D@lI_$-Cqsz)j(>TL_KW&mtPzYNA1Tjd{71Swa? zG`K`YldI}ynTS#{fm~c7MtWL%n{iHXT2qRLr+~Yx8QGyJeCkmq`ctCf`94XL0)RNaCdy$$D5UjUB(S9Q-#_4KE=no^hd6-S;Ua?MASObX3_qg~4jrKCbpE*S-Z5@Ek~+BI#k$R%CA(}u z>H$Iz(?_a|QvzOMRR_lXt#+^h2Qyrc%G2VaaaOE{P~Tx^GGPsdHG7HesJAno4q!Kf^px=UZEplxgCWuY))!pN zu&LyfaIybSaFp`U#4A1JLIBZPfM@}?&F;1mJCm4x>FP;| z+Fu4(=)ZylU`ii@{;N#B#{$O~Z{K3U+f4o%lO1rnj|Vdl`ZCjl(tU)|vZa5Atw@#n z?v&V}ZBfj~LyjeZZqyXALDjH}IS^r~1n}}=Z*t&VOOP^w4u;_2L(2Cl2+3Qs4N^Bq9GeD9jeQq5 zn#9Shlg3g(f$%QQcER{nuT6#1co3)yh}{;|3`~i|nJ!GQP^dNm2sI=&PKVkK*Vr>h z(|ZBR>Uxa^z`P9ydMm+ISl2o9uANOZ6$l!X!OtupJn)o-g`LK6u8pay6bJoh5{;JstvMd2u|WAAO-GCf_)mulUV{-5r+d^ z*VE0!qfG%ZaJAP2u$Yd_y!tAhxYMPRwgEjgG&;v~y(KSoJ|vSjm^YxEc)g*MZ~%(F zusAW4NY2}!5$D;PK9E^}{b$Om`X;CsBsyA+VyA&@wOq*LBz|n5uLXU^APi-*HMn~VDLQT zqr!Ia9t=vL!7wb*xU^lO0sEf44bN)7yy~p~D+~cO4vw@0qy-g$zoZF_{}KkTnh1OJ zHmMh;b_)}lA+;$LB(|8OBA^T2Epy63VA`8NLAY-q5gI)jn1r5mumtMv`eDOcBOx`$l~OXbTyyMLo)8kkR9u^L zV(hQjE-*&B{>J&*d)F_Wd8N0ccRcJ{*Z@)0%^-B2fsNrA2}|Kbh28Zxk+!5@eQ9~Z zRqMhAW-rdV-+18_s+uwhd4KV_3G8yCwN5>Kz#er28^Fn+Uzs~rOx|T^CKyVH;&c}n zGaQ0lE+?n*cxs)XL5c(}(I=JxMf3Al&dt2>t?6`O6DXNx&%z^TuU@O zv`>HxKTYgG)CAJKO()U=AOk-`^Oy->K?FxJ6PUa*U4Mp(g~sgss5c;ZJ_68oPt$M( zt|yrpPb~7pqyr$8Q*wo|m^opX*$=P3d36R~UisEpj3nzj^MQ-lNjXolOa2B|iY~>x zNs4H6ou6lga+tfgD3~K~m}r}FVL{yYF2kys;I6Tq3e*~5-dL%mKQp<3H03yg;IOYi ztT4fwGDS)g42%HC3^CAzj!`?rjs;1;F_0tqKp-6;9O#uOwU)5{J!ir&BeVj2YJuY* zKx>Uano2?X84yNYMH27Z0S?u&euw1_dx(n&6%*k^&#;A<5~!=`GfZksCXvK>!{4Dc zzR9xRV=~MU^c>2*M_zCU8Ry|K#2uCGam&e9e(ZoNIF8hai=YSMctzxF;K3BR6p!GP z8omkTZe-Cq{n24SseBqw_y$9Ns2=`K1I24Ye%-M#) zpJkGV*&W;fk~-W3&zX{>P7Wr2xDmde`F;By0>~iC7gtIW*ZTTUy#j;FMAm2Dd3?jD zs+jarLR;JP#5&co_iNxDsp`s;H7XwkcZ2IIE*hT>)ux5BONVg2hNjSmvKxA`wGgt@pa3S;3 zn2$DiK{wE1X>S6~K7J_(-1D9W<)E<+v4K5`EHe^dO|AFIs%TTk9R)DFWU4Tp83y!@ z*Kn_1b3aH0-}(7ZCa*LXAard`p6hQxYO|kA22aczX>0eiP{rzCFSW%WIJ4k^B+IlQ zX51P2Y_@%JcdehJv(&_SIswvwfv2ZFeh(KG!jE4C2hgv5j7404W8~v^4LE;1yntRu z)Kz}|&aN<;exNH^Vc)`;S|@2+luxOgnIM-jMB!9Z2oqgGz>G9o?vwDW2s{iQ!r`wq zp#e2JeqUT3pnC}K0yU;YgH4Sf-I52w^MQ*Qi87x|AX(v*)YCz$=cq`4zdv+RlPrN- z(>H}0(m6CZUfu-TL}-%_UsMCN0fTx2Qu+{`9iSsq#zBI`a=nOS0}jn!*Xz(<(Nq*; zN)ZB7DQCt9*~^_n^F5iqunFv2h!_pvN+Ox@eoMaw2(u?t85sDr{V6P&HeRX=iH7&V zg*Q@4Asu34V9kRM;Z&db@0{A;38z+ZGgY%OapBzT?1gjJ&&8E1SEtWiN#1aG=aWwM zlgSz`D98|j zxNZ%=LtK$?cDbG-tR*f&dX8{ttBAwAhr0UjF!{S|mA&O}BAiwz<_=C1kI?FamDg2M z|0y|+ix$qK6&R6;$qEZ9T(2ttL>v%%4wSIuhTo%D5 zj7E1>7=4boN(8jv3L}D23Wz;VLt9FINo83FU(0F)U(387Q5}sB%z6#DJ}%LxcEemX z^ZpQ174t+A$VSM-u8777HUKSLBp$df;Q|fa^E$ZYw`ZG)#Wn<84RHf41uB{-L91(G z;uq)1f=`m4P;sEsf^^`np$7=RqO_25hs*1buQu9~xOL#Q&b%=#Fq*(%D%a6rh-o0L zF@_UfFS>CC2E*Jv<2URLDE&Z89`N?yUCO|qhIg8&%O$<}q<%&mk^W_Xj)?=Y^dBP+AxUC~nBM`q61eey00$-# zHYg@RuO=&bo`MSGP0a*$5;{#MhT`?zl*Udk!z73}z3SL&9Djey<`$ z-sCGncSZOuZ;wP3wuFJimUg3(%J+Mgj7i@OFNnR@wb4tdn}zTUI8)`Wy*;KN3R9Q{ z2^{gJaC#R=L4e@~OB=x|thcb2B}7lJ8}%P(hZ{|+Mi|9MvQ^$i611h^u;#+VoSGJC zYmD?JY`f6EByiZj1>i-Fb*_W1cOpA z0ZHP$Q{$K$Xe!ba+JnyYdN*>I5O_Mm+ovFNV49FSATLCas6kH~kXXztmjco}A%nE^ zVN`HaewIbc^eLLlZ8Eb3mtYDsWJ=Y!>FE9Ne&A3v%MlO1ewgh^YaMj1!~pnn5kLbaD0^P0A*j8 zIR>QNghfiw1Q;Xivj{loIeB-B-meU}^%>7AaY!kM^Xe`pN}n0;1txOh4PW2t`0Gmm znpWUJ7fd$~DwYTMXx@ezXH=LO#wVL)2x*RSe1vriUD5#_2px1*k5yVwAVSV;IdJ{ONLPM~a!=NTtZ z#&y#R{%#PuO z$-hC;01cKOh>@5Q80#>NC;SWvxTM|6tl}c5m04nZUaf5oTtR>%5Ms03DizyliciUH^3-X34VU^-CpC7X#w~%? zo)p2(E;OJog5w)Vun?I&>)iHqn3|4-mI-#k2+Y_S5)9JkzOF`FXexx6X{SLzxJ=lS zcrtPD+| zQyy#pj;v_24>TADq}cDf24O2~i(`vQ0Lu0Y~ufMhpmGNK}`TX8Mv9ak-P80R`LQ9l{r`Iq!kMro-Q2H(8u7B8~|y zez-&6!@Ui2;B~^sF94-PDXg48z!5JjgSg<|EPy$Z5~=;b!PTq^f|2xpM8}|FCphaz zm>gnqlBJe@fq!x{GuJQS?ufZe0tuPH1j)^kOI7Pq)xM5rW~TbGS@yqU2Q-|yYMfVd^mftKK9;S>yb@^3;;V+6y+-OD{&yrrTm|BP zv;pvFlfUV^{6$2X*rX3+%g&+Eqvf&Z$3C!+n@cmeHuGi5b$E3Ku+hIdvt*Cq`%h34 z|Hy*5IO90wAKOQIZSV7&J#?vt*KX|l( WD|?E4<-e5oWPBS}cZ&J3`~MFRo!7Sj literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/click/_compat.py b/server/venv/lib/python3.10/site-packages/click/_compat.py new file mode 100644 index 0000000..23f8866 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/_compat.py @@ -0,0 +1,623 @@ +import codecs +import io +import os +import re +import sys +import typing as t +from weakref import WeakKeyDictionary + +CYGWIN = sys.platform.startswith("cygwin") +WIN = sys.platform.startswith("win") +auto_wrap_for_ansi: t.Optional[t.Callable[[t.TextIO], t.TextIO]] = None +_ansi_re = re.compile(r"\033\[[;?0-9]*[a-zA-Z]") + + +def _make_text_stream( + stream: t.BinaryIO, + encoding: t.Optional[str], + errors: t.Optional[str], + force_readable: bool = False, + force_writable: bool = False, +) -> 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: t.Optional[str], + errors: t.Optional[str], + 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("") # type: ignore + 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.Optional[t.BinaryIO]: + # 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.Optional[t.BinaryIO]: + # 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: t.Optional[str]) -> 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: t.Optional[str], errors: t.Optional[str] +) -> 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: t.Optional[str], + errors: t.Optional[str], + is_binary: t.Callable[[t.IO[t.Any], bool], bool], + find_binary: t.Callable[[t.IO[t.Any]], t.Optional[t.BinaryIO]], + 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: t.Optional[str], + errors: t.Optional[str], + 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: t.Optional[str], + errors: t.Optional[str], + 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: t.Optional[str] = None, errors: t.Optional[str] = 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: t.Optional[str] = None, errors: t.Optional[str] = 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: t.Optional[str] = None, errors: t.Optional[str] = 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: t.Union[str, "os.PathLike[str]", int], + mode: str, + encoding: t.Optional[str], + errors: t.Optional[str], +) -> 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: "t.Union[str, os.PathLike[str]]", + mode: str = "r", + encoding: t.Optional[str] = None, + errors: t.Optional[str] = "strict", + atomic: bool = False, +) -> t.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: t.Optional[int] = 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: t.Optional[t.Type[BaseException]], *_: t.Any) -> 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.Optional[t.IO[t.Any]] = None, color: t.Optional[bool] = 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: t.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() + + def auto_wrap_for_ansi( # noqa: F811 + stream: t.TextIO, color: t.Optional[bool] = 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): + try: + return _write(s) + except BaseException: + ansi_wrapper.reset_all() + raise + + rv.write = _safe_write + + 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: t.Optional[str], errors: t.Optional[str] + ) -> t.Optional[t.TextIO]: + 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.Optional[t.TextIO]], + wrapper_func: t.Callable[[], t.TextIO], +) -> t.Callable[[], t.Optional[t.TextIO]]: + cache: t.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() + + def func() -> t.Optional[t.TextIO]: + 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: t.Mapping[str, t.Callable[[], t.BinaryIO]] = { + "stdin": get_binary_stdin, + "stdout": get_binary_stdout, + "stderr": get_binary_stderr, +} + +text_streams: t.Mapping[ + str, t.Callable[[t.Optional[str], t.Optional[str]], t.TextIO] +] = { + "stdin": get_text_stdin, + "stdout": get_text_stdout, + "stderr": get_text_stderr, +} diff --git a/server/venv/lib/python3.10/site-packages/click/_termui_impl.py b/server/venv/lib/python3.10/site-packages/click/_termui_impl.py new file mode 100644 index 0000000..f744657 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/_termui_impl.py @@ -0,0 +1,739 @@ +""" +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. +""" +import contextlib +import math +import os +import sys +import time +import typing as t +from gettext import gettext as _ +from io import StringIO +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: t.Optional[t.Iterable[V]], + length: t.Optional[int] = None, + fill_char: str = "#", + empty_char: str = " ", + bar_template: str = "%(bar)s", + info_sep: str = " ", + show_eta: bool = True, + show_percent: t.Optional[bool] = None, + show_pos: bool = False, + item_show_func: t.Optional[t.Callable[[t.Optional[V]], t.Optional[str]]] = None, + label: t.Optional[str] = None, + file: t.Optional[t.TextIO] = None, + color: t.Optional[bool] = 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.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(t.Iterable[V], range(length)) + self.iter: t.Iterable[V] = iter(iterable) + self.length = length + self.pos = 0 + self.avg: t.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: t.Optional[int] = None + self.entered: bool = False + self.current_item: t.Optional[V] = None + self.is_hidden: bool = not isatty(self.file) + self._last_line: t.Optional[str] = None + + def __enter__(self) -> "ProgressBar[V]": + self.entered = True + self.render_progress() + return self + + def __exit__( + self, + exc_type: t.Optional[t.Type[BaseException]], + exc_value: t.Optional[BaseException], + tb: t.Optional[TracebackType], + ) -> None: + self.render_finish() + + def __iter__(self) -> t.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.is_hidden: + 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: + import shutil + + if self.is_hidden: + # Only output the label as it changes if the output is not a + # TTY. Use file=stderr if you expect to be piping stdout. + 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: + 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: + buf.append(BEFORE_BAR) + buf.append(" " * self.max_width) # type: ignore + 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: t.Optional[V] = 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) -> t.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 self.is_hidden: + 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: t.Iterable[str], color: t.Optional[bool] = 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) + pager_cmd = (os.environ.get("PAGER", None) or "").strip() + if pager_cmd: + if WIN: + return _tempfilepager(generator, pager_cmd, color) + return _pipepager(generator, pager_cmd, color) + if os.environ.get("TERM") in ("dumb", "emacs"): + return _nullpager(stdout, generator, color) + if WIN or sys.platform.startswith("os2"): + return _tempfilepager(generator, "more <", color) + if hasattr(os, "system") and os.system("(less) 2>/dev/null") == 0: + return _pipepager(generator, "less", color) + + import tempfile + + fd, filename = tempfile.mkstemp() + os.close(fd) + try: + if hasattr(os, "system") and os.system(f'more "{filename}"') == 0: + return _pipepager(generator, "more", color) + return _nullpager(stdout, generator, color) + finally: + os.unlink(filename) + + +def _pipepager(generator: t.Iterable[str], cmd: str, color: t.Optional[bool]) -> None: + """Page through text by feeding it to another program. Invoking a + pager through this might support colors. + """ + import subprocess + + env = dict(os.environ) + + # If we're piping to less we might support colors under the + # condition that + cmd_detail = cmd.rsplit("/", 1)[-1].split() + if color is None and cmd_detail[0] == "less": + less_flags = f"{os.environ.get('LESS', '')}{' '.join(cmd_detail[1:])}" + if not less_flags: + env["LESS"] = "-R" + color = True + elif "r" in less_flags or "R" in less_flags: + color = True + + c = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, env=env) + stdin = t.cast(t.BinaryIO, c.stdin) + encoding = get_best_encoding(stdin) + try: + for text in generator: + if not color: + text = strip_ansi(text) + + stdin.write(text.encode(encoding, "replace")) + except (OSError, KeyboardInterrupt): + pass + else: + stdin.close() + + # 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 + + +def _tempfilepager( + generator: t.Iterable[str], cmd: str, color: t.Optional[bool] +) -> None: + """Page through text by invoking a program on a temporary file.""" + 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: + os.system(f'{cmd} "{filename}"') + finally: + os.close(fd) + os.unlink(filename) + + +def _nullpager( + stream: t.TextIO, generator: t.Iterable[str], color: t.Optional[bool] +) -> 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: t.Optional[str] = None, + env: t.Optional[t.Mapping[str, str]] = 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" + for editor in "sensible-editor", "vim", "nano": + if os.system(f"which {editor} >/dev/null 2>&1") == 0: + return editor + return "vi" + + def edit_file(self, filename: str) -> None: + import subprocess + + editor = self.get_editor() + environ: t.Optional[t.Dict[str, str]] = None + + if self.env: + environ = os.environ.copy() + environ.update(self.env) + + try: + c = subprocess.Popen(f'{editor} "{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 + + def edit(self, text: t.Optional[t.AnyStr]) -> t.Optional[t.AnyStr]: + import tempfile + + if not text: + data = 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_file(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") # type: ignore + 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.replace('"', "")) + args = f'explorer /select,"{url}"' + else: + url = url.replace('"', "") + wait_str = "/WAIT" if wait else "" + args = f'start {wait_str} "" "{url}"' + return os.system(args) + elif CYGWIN: + if locate: + url = os.path.dirname(_unquote_file(url).replace('"', "")) + args = f'cygstart "{url}"' + else: + url = url.replace('"', "") + wait_str = "-w" if wait else "" + args = f'cygstart {wait_str} "{url}"' + return os.system(args) + + 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) -> t.Optional[BaseException]: + 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 WIN: + import msvcrt + + @contextlib.contextmanager + def raw_terminal() -> t.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`. + func: t.Callable[[], str] + + if echo: + func = msvcrt.getwche # type: ignore + else: + func = msvcrt.getwch # type: ignore + + 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 tty + import termios + + @contextlib.contextmanager + def raw_terminal() -> t.Iterator[int]: + f: t.Optional[t.TextIO] + 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/server/venv/lib/python3.10/site-packages/click/_textwrap.py b/server/venv/lib/python3.10/site-packages/click/_textwrap.py new file mode 100644 index 0000000..b47dcbd --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/_textwrap.py @@ -0,0 +1,49 @@ +import textwrap +import typing as t +from contextlib import contextmanager + + +class TextWrapper(textwrap.TextWrapper): + def _handle_long_word( + self, + reversed_chunks: t.List[str], + cur_line: t.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) -> t.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/server/venv/lib/python3.10/site-packages/click/_winconsole.py b/server/venv/lib/python3.10/site-packages/click/_winconsole.py new file mode 100644 index 0000000..6b20df3 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/_winconsole.py @@ -0,0 +1,279 @@ +# 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. +import io +import sys +import time +import typing as t +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 + +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_ = [ + ("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, writable=False): + buf = Py_buffer() + flags = PyBUF_WRITABLE if writable else PyBUF_SIMPLE + PyObject_GetBuffer(py_object(obj), byref(buf), flags) + + try: + buffer_type = c_char * buf.len + return buffer_type.from_address(buf.buf) + finally: + PyBuffer_Release(byref(buf)) + + +class _WindowsConsoleRawIOBase(io.RawIOBase): + def __init__(self, handle): + self.handle = handle + + def isatty(self): + super().isatty() + return True + + +class _WindowsConsoleReader(_WindowsConsoleRawIOBase): + def readable(self): + return True + + def readinto(self, b): + 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): + return True + + @staticmethod + def _get_error_message(errno): + 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): + 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: t.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): + 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: t.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: t.Optional[str], errors: t.Optional[str] +) -> t.Optional[t.TextIO]: + if ( + get_buffer is not None + and encoding in {"utf-16-le", None} + and errors in {"strict", None} + and _is_console(f) + ): + func = _stream_factories.get(f.fileno()) + if func is not None: + b = getattr(f, "buffer", None) + + if b is None: + return None + + return func(b) diff --git a/server/venv/lib/python3.10/site-packages/click/core.py b/server/venv/lib/python3.10/site-packages/click/core.py new file mode 100644 index 0000000..cc65e89 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/core.py @@ -0,0 +1,3042 @@ +import enum +import errno +import inspect +import os +import sys +import typing as t +from collections import abc +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 .exceptions import Abort +from .exceptions import BadParameter +from .exceptions import ClickException +from .exceptions import Exit +from .exceptions import MissingParameter +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 _flag_needs_value +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: + import typing_extensions as te + 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 +) -> t.Iterator[t.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(MultiCommand, 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_multicommand( + base_command: "MultiCommand", cmd_name: str, cmd: "Command", register: bool = False +) -> None: + if not base_command.chain or not isinstance(cmd, MultiCommand): + return + if register: + hint = ( + "It is not possible to add multi commands as children to" + " another multi command that is in chain mode." + ) + else: + hint = ( + "Found a multi command as subcommand to a multi command" + " that is in chain mode. This is not supported." + ) + raise RuntimeError( + f"{hint}. Command {base_command.name!r} is set to chain and" + f" {cmd_name!r} was added as a subcommand but it in itself is a" + f" multi command. ({cmd_name!r} is a {type(cmd).__name__}" + f" within a chained {type(base_command).__name__} named" + f" {base_command.name!r})." + ) + + +def batch(iterable: t.Iterable[V], batch_size: int) -> t.List[t.Tuple[V, ...]]: + return list(zip(*repeat(iter(iterable), batch_size))) + + +@contextmanager +def augment_usage_errors( + ctx: "Context", param: t.Optional["Parameter"] = None +) -> t.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: t.Sequence["Parameter"], + declaration_order: t.Sequence["Parameter"], +) -> t.List["Parameter"]: + """Given a sequence of parameters in the order as should be considered + for processing and an iterable of parameters that exist, this returns + a list in the correct order as they should be processed. + """ + + def sort_key(item: "Parameter") -> t.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.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: t.Type["HelpFormatter"] = HelpFormatter + + def __init__( + self, + command: "Command", + parent: t.Optional["Context"] = None, + info_name: t.Optional[str] = None, + obj: t.Optional[t.Any] = None, + auto_envvar_prefix: t.Optional[str] = None, + default_map: t.Optional[t.MutableMapping[str, t.Any]] = None, + terminal_width: t.Optional[int] = None, + max_content_width: t.Optional[int] = None, + resilient_parsing: bool = False, + allow_extra_args: t.Optional[bool] = None, + allow_interspersed_args: t.Optional[bool] = None, + ignore_unknown_options: t.Optional[bool] = None, + help_option_names: t.Optional[t.List[str]] = None, + token_normalize_func: t.Optional[t.Callable[[str], str]] = None, + color: t.Optional[bool] = None, + show_default: t.Optional[bool] = 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: t.Dict[str, t.Any] = {} + #: the leftover arguments. + self.args: t.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: t.List[str] = [] + #: the collected prefixes of the command's options. + self._opt_prefixes: t.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: t.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: t.Optional[t.MutableMapping[str, t.Any]] = 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: t.Optional[str] = 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: t.Optional[int] = 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: t.Optional[int] = 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: t.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.Optional[ + t.Callable[[str], str] + ] = 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: t.Optional[str] = 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: t.Optional[bool] = 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: t.Optional[bool] = show_default + + self._close_callbacks: t.List[t.Callable[[], t.Any]] = [] + self._depth = 0 + self._parameter_source: t.Dict[str, ParameterSource] = {} + self._exit_stack = ExitStack() + + def to_info_dict(self) -> t.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: t.Optional[t.Type[BaseException]], + exc_value: t.Optional[BaseException], + tb: t.Optional[TracebackType], + ) -> None: + self._depth -= 1 + if self._depth == 0: + self.close() + pop_context() + + @contextmanager + def scope(self, cleanup: bool = True) -> t.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) -> t.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: t.ContextManager[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._exit_stack.close() + # In case the context is reused, create a new exit stack. + self._exit_stack = ExitStack() + + @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: t.Type[V]) -> t.Optional[V]: + """Finds the closest object of a given type.""" + node: t.Optional["Context"] = 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: t.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: "te.Literal[True]" = True + ) -> t.Optional[t.Any]: + ... + + @t.overload + def lookup_default( + self, name: str, call: "te.Literal[False]" = ... + ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: + ... + + def lookup_default(self, name: str, call: bool = True) -> t.Optional[t.Any]: + """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) + + if call and callable(value): + return value() + + return value + + return None + + def fail(self, message: str) -> "te.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) -> "te.NoReturn": + """Aborts the script.""" + raise Abort() + + def exit(self, code: int = 0) -> "te.NoReturn": + """Exits the application with a given exit code.""" + 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, # noqa: B902 + __callback: "t.Callable[..., V]", + *args: t.Any, + **kwargs: t.Any, + ) -> V: + ... + + @t.overload + def invoke( + __self, # noqa: B902 + __callback: "Command", + *args: t.Any, + **kwargs: t.Any, + ) -> t.Any: + ... + + def invoke( + __self, # noqa: B902 + __callback: t.Union["Command", "t.Callable[..., V]"], + *args: t.Any, + **kwargs: t.Any, + ) -> t.Union[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. + + Note that before Click 3.2 keyword arguments were not properly filled + in against the intention of this code and no context was created. For + more information about this change and why it was done in a bugfix + release see :ref:`upgrade-to-3.2`. + + .. versionchanged:: 8.0 + All ``kwargs`` are tracked in :attr:`params` so they will be + passed if :meth:`forward` is called at multiple levels. + """ + 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 # noqa: B902 + ) -> 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) -> t.Optional[ParameterSource]: + """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 BaseCommand: + """The base command implements the minimal API contract of commands. + Most code will never use this as it does not implement a lot of useful + functionality but it can act as the direct subclass of alternative + parsing methods that do not depend on the Click parser. + + For instance, this can be used to bridge Click and other systems like + argparse or docopt. + + Because base commands do not implement a lot of the API that other + parts of Click take for granted, they are not supported for all + operations. For instance, they cannot be used with the decorators + usually and they have no built-in callback system. + + .. versionchanged:: 2.0 + Added the `context_settings` parameter. + + :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. + """ + + #: The context class to create with :meth:`make_context`. + #: + #: .. versionadded:: 8.0 + context_class: t.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: t.Optional[str], + context_settings: t.Optional[t.MutableMapping[str, t.Any]] = None, + ) -> 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: t.MutableMapping[str, t.Any] = context_settings + + def to_info_dict(self, ctx: Context) -> t.Dict[str, t.Any]: + """Gather information that could be useful for a tool generating + user-facing documentation. This traverses the entire structure + below this command. + + Use :meth:`click.Context.to_info_dict` to traverse the entire + CLI structure. + + :param ctx: A :class:`Context` representing this command. + + .. versionadded:: 8.0 + """ + return {"name": self.name} + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.name}>" + + def get_usage(self, ctx: Context) -> str: + raise NotImplementedError("Base commands cannot get usage") + + def get_help(self, ctx: Context) -> str: + raise NotImplementedError("Base commands cannot get help") + + def make_context( + self, + info_name: t.Optional[str], + args: t.List[str], + parent: t.Optional[Context] = 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 # type: ignore + ) + + with ctx.scope(cleanup=False): + self.parse_args(ctx, args) + return ctx + + def parse_args(self, ctx: Context, args: t.List[str]) -> t.List[str]: + """Given a context and a list of arguments this creates the parser + and parses the arguments, then modifies the context as necessary. + This is automatically invoked by :meth:`make_context`. + """ + raise NotImplementedError("Base commands do not know how to parse arguments.") + + def invoke(self, ctx: Context) -> t.Any: + """Given a context, this invokes the command. The default + implementation is raising a not implemented error. + """ + raise NotImplementedError("Base commands are not invocable by default") + + def shell_complete(self, ctx: Context, incomplete: str) -> t.List["CompletionItem"]: + """Return a list of completions for the incomplete value. Looks + at the names of chained multi-commands. + + Any command could be part of a chained multi-command, so sibling + commands are valid at any point during command completion. Other + command classes will return more completions. + + :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: t.List["CompletionItem"] = [] + + while ctx.parent is not None: + ctx = ctx.parent + + if isinstance(ctx.command, MultiCommand) 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: t.Optional[t.Sequence[str]] = None, + prog_name: t.Optional[str] = None, + complete_var: t.Optional[str] = None, + standalone_mode: "te.Literal[True]" = True, + **extra: t.Any, + ) -> "te.NoReturn": + ... + + @t.overload + def main( + self, + args: t.Optional[t.Sequence[str]] = None, + prog_name: t.Optional[str] = None, + complete_var: t.Optional[str] = None, + standalone_mode: bool = ..., + **extra: t.Any, + ) -> t.Any: + ... + + def main( + self, + args: t.Optional[t.Sequence[str]] = None, + prog_name: t.Optional[str] = None, + complete_var: t.Optional[str] = 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: t.MutableMapping[str, t.Any], + prog_name: str, + complete_var: t.Optional[str] = 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 Command(BaseCommand): + """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: issues a message indicating that + the command is deprecated. + + .. 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. + """ + + def __init__( + self, + name: t.Optional[str], + context_settings: t.Optional[t.MutableMapping[str, t.Any]] = None, + callback: t.Optional[t.Callable[..., t.Any]] = None, + params: t.Optional[t.List["Parameter"]] = None, + help: t.Optional[str] = None, + epilog: t.Optional[str] = None, + short_help: t.Optional[str] = None, + options_metavar: t.Optional[str] = "[OPTIONS]", + add_help_option: bool = True, + no_args_is_help: bool = False, + hidden: bool = False, + deprecated: bool = False, + ) -> None: + super().__init__(name, 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: t.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.no_args_is_help = no_args_is_help + self.hidden = hidden + self.deprecated = deprecated + + def to_info_dict(self, ctx: Context) -> t.Dict[str, t.Any]: + info_dict = super().to_info_dict(ctx) + info_dict.update( + 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, + ) + return info_dict + + 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) -> t.List["Parameter"]: + rv = self.params + help_option = self.get_help_option(ctx) + + if help_option is not None: + rv = [*rv, help_option] + + return rv + + 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) -> t.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) -> t.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) -> t.Optional["Option"]: + """Returns the help option object.""" + help_options = self.get_help_option_names(ctx) + + if not help_options or not self.add_help_option: + return None + + def show_help(ctx: Context, param: "Parameter", value: str) -> None: + if value and not ctx.resilient_parsing: + echo(ctx.get_help(), color=ctx.color) + ctx.exit() + + return Option( + help_options, + is_flag=True, + is_eager=True, + expose_value=False, + callback=show_help, + help=_("Show this message and exit."), + ) + + 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: + text = _("(Deprecated) {text}").format(text=text) + + 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: + text = _("(Deprecated) {text}").format(text=text) + + 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 parse_args(self, ctx: Context, args: t.List[str]) -> t.List[str]: + if not args and self.no_args_is_help and not ctx.resilient_parsing: + echo(ctx.get_help(), color=ctx.color) + ctx.exit() + + 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)): + value, 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: + message = _( + "DeprecationWarning: The command {name!r} is deprecated." + ).format(name=self.name) + 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) -> t.List["CompletionItem"]: + """Return a list of completions for the incomplete value. Looks + at the names of options 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: t.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) + ) + + results.extend(super().shell_complete(ctx, incomplete)) + return results + + +class MultiCommand(Command): + """A multi command is the basic implementation of a command that + dispatches to subcommands. The most common version is the + :class:`Group`. + + :param invoke_without_command: this controls how the multi command itself + is invoked. By default it's only invoked + if a subcommand is provided. + :param no_args_is_help: this controls what happens if no arguments are + provided. This option is enabled by default if + `invoke_without_command` is disabled or disabled + if it's enabled. If enabled this will add + ``--help`` as argument if no arguments are + passed. + :param subcommand_metavar: the string that is used in the documentation + to indicate the subcommand place. + :param chain: if this is set to `True` chaining of multiple subcommands + is enabled. This restricts the form of commands in that + they cannot have optional arguments but it allows + multiple commands to be chained together. + :param result_callback: The result callback to attach to this multi + command. This can be set or changed later with the + :meth:`result_callback` decorator. + :param attrs: Other command arguments described in :class:`Command`. + """ + + allow_extra_args = True + allow_interspersed_args = False + + def __init__( + self, + name: t.Optional[str] = None, + invoke_without_command: bool = False, + no_args_is_help: t.Optional[bool] = None, + subcommand_metavar: t.Optional[str] = None, + chain: bool = False, + result_callback: t.Optional[t.Callable[..., t.Any]] = None, + **attrs: t.Any, + ) -> None: + super().__init__(name, **attrs) + + 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( + "Multi commands in chain mode cannot have" + " optional arguments." + ) + + def to_info_dict(self, ctx: Context) -> t.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 collect_usage_pieces(self, ctx: Context) -> t.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 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, *args, **kwargs): # type: ignore + inner = old_callback(__value, *args, **kwargs) + return f(inner, *args, **kwargs) + + self._result_callback = rv = update_wrapper(t.cast(F, function), f) + return rv + + return decorator + + 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: t.List[str]) -> t.List[str]: + if not args and self.no_args_is_help and not ctx.resilient_parsing: + echo(ctx.get_help(), color=ctx.color) + ctx.exit() + + 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: t.List[str] + ) -> t.Tuple[t.Optional[str], t.Optional[Command], t.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, 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 get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: + """Given a context and a command name, this returns a + :class:`Command` object if it exists or returns `None`. + """ + raise NotImplementedError + + def list_commands(self, ctx: Context) -> t.List[str]: + """Returns a list of subcommand names in the order they should + appear. + """ + return [] + + def shell_complete(self, ctx: Context, incomplete: str) -> t.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 Group(MultiCommand): + """A group allows a command to have subcommands attached. This is + the most common way to implement nesting in Click. + + :param name: The name of the group command. + :param commands: A dict mapping names to :class:`Command` objects. + Can also be a list of :class:`Command`, which will use + :attr:`Command.name` to create the dict. + :param attrs: Other command arguments described in + :class:`MultiCommand`, :class:`Command`, and + :class:`BaseCommand`. + + .. versionchanged:: 8.0 + The ``commands`` argument can be a list of command objects. + """ + + #: 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: t.Optional[t.Type[Command]] = 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: t.Optional[t.Union[t.Type["Group"], t.Type[type]]] = None + # Literal[type] isn't valid, so use Type[type] + + def __init__( + self, + name: t.Optional[str] = None, + commands: t.Optional[ + t.Union[t.MutableMapping[str, Command], t.Sequence[Command]] + ] = None, + **attrs: t.Any, + ) -> None: + super().__init__(name, **attrs) + + 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: t.MutableMapping[str, Command] = commands + + def add_command(self, cmd: Command, name: t.Optional[str] = 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_multicommand(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.Union[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.Optional[t.Callable[..., t.Any]] = 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.Union[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.Optional[t.Callable[..., t.Any]] = 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 get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: + return self.commands.get(cmd_name) + + def list_commands(self, ctx: Context) -> t.List[str]: + return sorted(self.commands) + + +class CommandCollection(MultiCommand): + """A command collection is a multi command that merges multiple multi + commands together into one. This is a straightforward implementation + that accepts a list of different multi commands as sources and + provides all the commands for each of them. + + See :class:`MultiCommand` and :class:`Command` for the description of + ``name`` and ``attrs``. + """ + + def __init__( + self, + name: t.Optional[str] = None, + sources: t.Optional[t.List[MultiCommand]] = None, + **attrs: t.Any, + ) -> None: + super().__init__(name, **attrs) + #: The list of registered multi commands. + self.sources: t.List[MultiCommand] = sources or [] + + def add_source(self, multi_cmd: MultiCommand) -> None: + """Adds a new multi command to the chain dispatcher.""" + self.sources.append(multi_cmd) + + def get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: + for source in self.sources: + rv = source.get_command(ctx, cmd_name) + + if rv is not None: + if self.chain: + _check_multicommand(self, cmd_name, rv) + + return rv + + return None + + def list_commands(self, ctx: Context) -> t.List[str]: + rv: t.Set[str] = set() + + for source in self.sources: + rv.update(source.list_commands(ctx)) + + return sorted(rv) + + +def _check_iter(value: t.Any) -> t.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: a string or list of strings that are environment variables + that should be checked. + :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. + + .. 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: t.Optional[t.Sequence[str]] = None, + type: t.Optional[t.Union[types.ParamType, t.Any]] = None, + required: bool = False, + default: t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]] = None, + callback: t.Optional[t.Callable[[Context, "Parameter", t.Any], t.Any]] = None, + nargs: t.Optional[int] = None, + multiple: bool = False, + metavar: t.Optional[str] = None, + expose_value: bool = True, + is_eager: bool = False, + envvar: t.Optional[t.Union[str, t.Sequence[str]]] = None, + shell_complete: t.Optional[ + t.Callable[ + [Context, "Parameter", str], + t.Union[t.List["CompletionItem"], t.List[str]], + ] + ] = None, + ) -> None: + self.name: t.Optional[str] + self.opts: t.List[str] + self.secondary_opts: t.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 + + 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}." + ) + + # Skip no default or callable default. + check_default = default if not callable(default) else None + + if check_default is not None: + if multiple: + try: + # Only check the first value against nargs. + check_default = next(_check_iter(check_default), None) + except TypeError: + raise ValueError( + "'default' must be a list when 'multiple' is true." + ) from None + + # Can be None for multiple with empty default. + if nargs != 1 and check_default is not None: + try: + _check_iter(check_default) + except TypeError: + if multiple: + message = ( + "'default' must be a list of lists when 'multiple' is" + " true and 'nargs' != 1." + ) + else: + message = "'default' must be a list when 'nargs' != 1." + + raise ValueError(message) from None + + if nargs > 1 and len(check_default) != nargs: + subject = "item length" if multiple else "length" + raise ValueError( + f"'default' {subject} must match nargs={nargs}." + ) + + def to_info_dict(self) -> t.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 + """ + 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, + "default": self.default, + "envvar": self.envvar, + } + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.name}>" + + def _parse_decls( + self, decls: t.Sequence[str], expose_value: bool + ) -> t.Tuple[t.Optional[str], t.List[str], t.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) -> str: + if self.metavar is not None: + return self.metavar + + metavar = self.type.get_metavar(self) + + 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: "te.Literal[True]" = True + ) -> t.Optional[t.Any]: + ... + + @t.overload + def get_default( + self, ctx: Context, call: bool = ... + ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: + ... + + def get_default( + self, ctx: Context, call: bool = True + ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: + """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 None: + 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: t.Mapping[str, t.Any] + ) -> t.Tuple[t.Any, ParameterSource]: + value = opts.get(self.name) # type: ignore + source = ParameterSource.COMMANDLINE + + if value is None: + value = self.value_from_envvar(ctx) + source = ParameterSource.ENVIRONMENT + + if value is None: + value = ctx.lookup_default(self.name) # type: ignore + source = ParameterSource.DEFAULT_MAP + + if value is None: + value = self.get_default(ctx) + 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 option's + :attr:`type`, :attr:`multiple`, and :attr:`nargs`. + """ + if value is None: + return () if self.multiple or self.nargs == -1 else None + + def check_iter(value: t.Any) -> t.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 + + 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: # t.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: # t.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: + if value is None: + 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: + 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: + value = self.callback(ctx, self, value) + + return value + + def resolve_envvar_value(self, ctx: Context) -> t.Optional[str]: + if self.envvar is None: + 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) + + if rv: + return rv + + return None + + def value_from_envvar(self, ctx: Context) -> t.Optional[t.Any]: + rv: t.Optional[t.Any] = self.resolve_envvar_value(ctx) + + if rv is not None and self.nargs != 1: + rv = self.type.split_envvar_value(rv) + + return rv + + def handle_parse_result( + self, ctx: Context, opts: t.Mapping[str, t.Any], args: t.List[str] + ) -> t.Tuple[t.Any, t.List[str]]: + with augment_usage_errors(ctx, param=self): + value, source = self.consume_value(ctx, opts) + ctx.set_parameter_source(self.name, source) # type: ignore + + try: + value = self.process_value(ctx, value) + except Exception: + if not ctx.resilient_parsing: + raise + + value = None + + if self.expose_value: + ctx.params[self.name] = value # type: ignore + + return value, args + + def get_help_record(self, ctx: Context) -> t.Optional[t.Tuple[str, str]]: + pass + + def get_usage_pieces(self, ctx: Context) -> t.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) -> t.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(t.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. 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. + :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.1.0 + Help text indentation is cleaned here instead of only in the + ``@option`` decorator. + + .. versionchanged:: 8.1.0 + The ``show_default`` parameter overrides + ``Context.show_default``. + + .. versionchanged:: 8.1.0 + 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: t.Optional[t.Sequence[str]] = None, + show_default: t.Union[bool, str, None] = None, + prompt: t.Union[bool, str] = False, + confirmation_prompt: t.Union[bool, str] = False, + prompt_required: bool = True, + hide_input: bool = False, + is_flag: t.Optional[bool] = None, + flag_value: t.Optional[t.Any] = None, + multiple: bool = False, + count: bool = False, + allow_from_autoenv: bool = True, + type: t.Optional[t.Union[types.ParamType, t.Any]] = None, + help: t.Optional[str] = None, + hidden: bool = False, + show_choices: bool = True, + show_envvar: bool = False, + **attrs: t.Any, + ) -> None: + if help: + help = inspect.cleandoc(help) + + default_is_missing = "default" not in attrs + super().__init__(param_decls, type=type, multiple=multiple, **attrs) + + if prompt is True: + if self.name is None: + raise TypeError("'name' is required with 'prompt=True'.") + + prompt_text: t.Optional[str] = self.name.replace("_", " ").capitalize() + elif prompt is False: + prompt_text = None + else: + prompt_text = prompt + + self.prompt = prompt_text + self.confirmation_prompt = confirmation_prompt + self.prompt_required = prompt_required + self.hide_input = hide_input + self.hidden = hidden + + # If prompt is enabled but not required, then the option can be + # used as a flag to indicate using prompt or flag_value. + self._flag_needs_value = self.prompt is not None and not self.prompt_required + + if is_flag is None: + if flag_value is not None: + # Implicitly a flag because flag_value was set. + is_flag = True + elif self._flag_needs_value: + # Not a flag, but when used as a flag it shows a prompt. + is_flag = False + else: + # Implicitly a flag because flag options were given. + is_flag = bool(self.secondary_opts) + elif is_flag is False and not self._flag_needs_value: + # Not a flag, and prompt is not enabled, can be used as a + # flag if flag_value is set. + self._flag_needs_value = flag_value is not None + + self.default: t.Union[t.Any, t.Callable[[], t.Any]] + + if is_flag and default_is_missing and not self.required: + if multiple: + self.default = () + else: + self.default = False + + if flag_value is None: + flag_value = not self.default + + self.type: types.ParamType + if is_flag and type is None: + # Re-guess the type from the flag value instead of the + # default. + self.type = types.convert_type(None, flag_value) + + self.is_flag: bool = is_flag + self.is_bool_flag: bool = is_flag and isinstance(self.type, types.BoolParamType) + self.flag_value: t.Any = flag_value + + # Counting + self.count = count + if count: + if type is None: + self.type = types.IntRange(min=0) + if default_is_missing: + 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 self.nargs == -1: + raise TypeError("nargs=-1 is not supported for options.") + + if self.prompt and self.is_flag and not self.is_bool_flag: + raise TypeError("'prompt' is not valid for non-boolean flag.") + + 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) -> t.Dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict.update( + help=self.help, + prompt=self.prompt, + is_flag=self.is_flag, + flag_value=self.flag_value, + count=self.count, + hidden=self.hidden, + ) + return info_dict + + def _parse_decls( + self, decls: t.Sequence[str], expose_value: bool + ) -> t.Tuple[t.Optional[str], t.List[str], t.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("Could not determine name for option") + + 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) -> t.Optional[t.Tuple[str, str]]: + if self.hidden: + return None + + any_prefix_is_slash = False + + def _write_opts(opts: t.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()}" + + return rv + + rv = [_write_opts(self.opts)] + + if self.secondary_opts: + rv.append(_write_opts(self.secondary_opts)) + + help = self.help or "" + extra = [] + + 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: + var_str = ( + envvar + if isinstance(envvar, str) + else ", ".join(str(d) for d in envvar) + ) + extra.append(_("env var: {var}").format(var=var_str)) + + # 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 is not None)): + 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 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 self.default else self.secondary_opts)[0] + )[1] + elif self.is_bool_flag and not self.secondary_opts and not default_value: + default_string = "" + else: + default_string = str(default_value) + + if default_string: + extra.append(_("default: {default}").format(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.append(range_str) + + if self.required: + extra.append(_("required")) + + if extra: + extra_str = "; ".join(extra) + help = f"{help} [{extra_str}]" if help else f"[{extra_str}]" + + return ("; " if any_prefix_is_slash else " / ").join(rv), help + + @t.overload + def get_default( + self, ctx: Context, call: "te.Literal[True]" = True + ) -> t.Optional[t.Any]: + ... + + @t.overload + def get_default( + self, ctx: Context, call: bool = ... + ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: + ... + + def get_default( + self, ctx: Context, call: bool = True + ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: + # If we're a non boolean flag our default is more complex because + # we need to look at all flags in the same group to figure out + # if we're the default one in which case we return the flag + # value as default. + if self.is_flag and not self.is_bool_flag: + for param in ctx.command.params: + if param.name == self.name and param.default: + return t.cast(Option, param).flag_value + + return None + + return super().get_default(ctx, call=call) + + 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 be stable. + default = self.get_default(ctx) + + # If this is a prompt for a flag we need to handle this + # differently. + if self.is_bool_flag: + return confirm(self.prompt, default) + + return prompt( + self.prompt, + default=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), + ) + + def resolve_envvar_value(self, ctx: Context) -> t.Optional[str]: + 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.Optional[t.Any]: + rv: t.Optional[t.Any] = self.resolve_envvar_value(ctx) + + if rv is None: + return None + + value_depth = (self.nargs != 1) + bool(self.multiple) + + if value_depth > 0: + rv = self.type.split_envvar_value(rv) + + if self.multiple and self.nargs != 1: + rv = batch(rv, self.nargs) + + return rv + + def consume_value( + self, ctx: Context, opts: t.Mapping[str, "Parameter"] + ) -> t.Tuple[t.Any, ParameterSource]: + value, source = super().consume_value(ctx, opts) + + # The parser will emit a sentinel value if the option can be + # given as a flag without a value. This is different from None + # to distinguish from the flag not being given at all. + if value is _flag_needs_value: + if self.prompt is not None and not ctx.resilient_parsing: + value = self.prompt_for_value(ctx) + source = ParameterSource.PROMPT + else: + value = self.flag_value + source = ParameterSource.COMMANDLINE + + elif ( + self.multiple + and value is not None + 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 if + # prompting is enabled. + elif ( + source in {None, ParameterSource.DEFAULT} + 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 + + +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: t.Sequence[str], + required: t.Optional[bool] = None, + **attrs: t.Any, + ) -> None: + if required is None: + if attrs.get("default") is not None: + required = False + else: + required = attrs.get("nargs", 1) > 0 + + if "multiple" in attrs: + raise TypeError("__init__() got an unexpected keyword argument 'multiple'.") + + super().__init__(param_decls, required=required, **attrs) + + if __debug__: + if self.default is not None and self.nargs == -1: + raise TypeError("'default' is not supported for nargs=-1.") + + @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) -> str: + if self.metavar is not None: + return self.metavar + var = self.type.get_metavar(self) + if not var: + var = self.name.upper() # type: ignore + if not self.required: + var = f"[{var}]" + if self.nargs != 1: + var += "..." + return var + + def _parse_decls( + self, decls: t.Sequence[str], expose_value: bool + ) -> t.Tuple[t.Optional[str], t.List[str], t.List[str]]: + if not decls: + if not expose_value: + return None, [], [] + raise TypeError("Could not determine name for argument") + 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)}." + ) + return name, [arg], [] + + def get_usage_pieces(self, ctx: Context) -> t.List[str]: + return [self.make_metavar()] + + def get_error_hint(self, ctx: Context) -> str: + return f"'{self.make_metavar()}'" + + def add_to_parser(self, parser: OptionParser, ctx: Context) -> None: + parser.add_argument(dest=self.name, nargs=self.nargs, obj=self) diff --git a/server/venv/lib/python3.10/site-packages/click/decorators.py b/server/venv/lib/python3.10/site-packages/click/decorators.py new file mode 100644 index 0000000..d9bba95 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/decorators.py @@ -0,0 +1,561 @@ +import inspect +import types +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=t.Union[_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.Any, 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: t.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.Optional[T] + 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 # type: ignore[return-value] + + +def pass_meta_key( + key: str, *, doc_description: t.Optional[str] = None +) -> "t.Callable[[t.Callable[te.Concatenate[t.Any, 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.Any, 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 # type: ignore[return-value] + + +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: t.Optional[str], + cls: t.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: t.Type[CmdType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], CmdType]: + ... + + +# variant: with optional string name, no cls argument provided. +@t.overload +def command( + name: t.Optional[str] = ..., cls: None = None, **attrs: t.Any +) -> t.Callable[[_AnyCallable], Command]: + ... + + +def command( + name: t.Union[t.Optional[str], _AnyCallable] = None, + cls: t.Optional[t.Type[CmdType]] = None, + **attrs: t.Any, +) -> t.Union[Command, t.Callable[[_AnyCallable], t.Union[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 with + underscores replaced by dashes. If you want to change that, you can + pass the intended name as the first argument. + + 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. This defaults to the function + name with underscores replaced by dashes. + :param cls: the command class to instantiate. This defaults to + :class:`Command`. + + .. 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.Optional[t.Callable[[_AnyCallable], t.Any]] = 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(t.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) + + cmd = cls( + name=name or f.__name__.lower().replace("_", "-"), + 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: t.Optional[str], + cls: t.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: t.Type[GrpType], + **attrs: t.Any, +) -> t.Callable[[_AnyCallable], GrpType]: + ... + + +# variant: with optional string name, no cls argument provided. +@t.overload +def group( + name: t.Optional[str] = ..., cls: None = None, **attrs: t.Any +) -> t.Callable[[_AnyCallable], Group]: + ... + + +def group( + name: t.Union[str, _AnyCallable, None] = None, + cls: t.Optional[t.Type[GrpType]] = None, + **attrs: t.Any, +) -> t.Union[Group, t.Callable[[_AnyCallable], t.Union[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(t.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: t.Optional[t.Type[Argument]] = 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: t.Optional[t.Type[Option]] = 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: t.Optional[str] = None, + *param_decls: str, + package_name: t.Optional[str] = None, + prog_name: t.Optional[str] = None, + message: t.Optional[str] = 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``. On Python < 3.8, the ``importlib_metadata`` + backport must be installed. + + 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: + metadata: t.Optional[types.ModuleType] + + try: + from importlib import metadata # type: ignore + except ImportError: + # Python < 3.8 + import importlib_metadata as metadata # type: ignore + + try: + version = metadata.version(package_name) # type: ignore + except metadata.PackageNotFoundError: # type: ignore + 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]: + """Add a ``--help`` option which immediately prints the help page + and exits the program. + + This is usually unnecessary, as the ``--help`` option is added to + each command automatically unless ``add_help_option=False`` is + passed. + + :param param_decls: One or more option names. Defaults to the single + value ``"--help"``. + :param kwargs: Extra arguments are passed to :func:`option`. + """ + + def callback(ctx: Context, param: Parameter, value: bool) -> None: + if not value or ctx.resilient_parsing: + return + + 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["callback"] = callback + return option(*param_decls, **kwargs) diff --git a/server/venv/lib/python3.10/site-packages/click/exceptions.py b/server/venv/lib/python3.10/site-packages/click/exceptions.py new file mode 100644 index 0000000..fe68a36 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/exceptions.py @@ -0,0 +1,288 @@ +import typing as t +from gettext import gettext as _ +from gettext import ngettext + +from ._compat import get_text_stderr +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: t.Optional[t.Union[t.Sequence[str], str]] +) -> t.Optional[str]: + 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) + self.message = message + + def format_message(self) -> str: + return self.message + + def __str__(self) -> str: + return self.message + + def show(self, file: t.Optional[t.IO[t.Any]] = None) -> None: + if file is None: + file = get_text_stderr() + + echo(_("Error: {message}").format(message=self.format_message()), file=file) + + +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: t.Optional["Context"] = None) -> None: + super().__init__(message) + self.ctx = ctx + self.cmd: t.Optional["Command"] = self.ctx.command if self.ctx else None + + def show(self, file: t.Optional[t.IO[t.Any]] = 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: t.Optional["Context"] = None, + param: t.Optional["Parameter"] = None, + param_hint: t.Optional[str] = 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: t.Optional[str] = None, + ctx: t.Optional["Context"] = None, + param: t.Optional["Parameter"] = None, + param_hint: t.Optional[str] = None, + param_type: t.Optional[str] = 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: t.Optional[str] = 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(self.param) + 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: t.Optional[str] = None, + possibilities: t.Optional[t.Sequence[str]] = None, + ctx: t.Optional["Context"] = 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: t.Optional["Context"] = 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 FileError(ClickException): + """Raised if a file cannot be opened.""" + + def __init__(self, filename: str, hint: t.Optional[str] = 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/server/venv/lib/python3.10/site-packages/click/formatting.py b/server/venv/lib/python3.10/site-packages/click/formatting.py new file mode 100644 index 0000000..ddd2a2f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/formatting.py @@ -0,0 +1,301 @@ +import typing as t +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: t.Optional[int] = None + + +def measure_table(rows: t.Iterable[t.Tuple[str, str]]) -> t.Tuple[int, ...]: + widths: t.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: t.Iterable[t.Tuple[str, str]], col_count: int +) -> t.Iterator[t.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: t.List[t.Tuple[int, bool, str]] = [] + buf: t.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: t.Optional[int] = None, + max_width: t.Optional[int] = None, + ) -> None: + import shutil + + self.indent_increment = indent_increment + if max_width is None: + max_width = 80 + if width is None: + 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 = 0 + self.buffer: t.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: t.Optional[str] = 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: t.Sequence[t.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) -> t.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) -> t.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: t.Sequence[str]) -> t.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/server/venv/lib/python3.10/site-packages/click/globals.py b/server/venv/lib/python3.10/site-packages/click/globals.py new file mode 100644 index 0000000..480058f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/globals.py @@ -0,0 +1,68 @@ +import typing as t +from threading import local + +if t.TYPE_CHECKING: + import typing_extensions as te + from .core import Context + +_local = local() + + +@t.overload +def get_current_context(silent: "te.Literal[False]" = False) -> "Context": + ... + + +@t.overload +def get_current_context(silent: bool = ...) -> t.Optional["Context"]: + ... + + +def get_current_context(silent: bool = False) -> t.Optional["Context"]: + """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: t.Optional[bool] = None) -> t.Optional[bool]: + """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/server/venv/lib/python3.10/site-packages/click/parser.py b/server/venv/lib/python3.10/site-packages/click/parser.py new file mode 100644 index 0000000..5fa7adf --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/parser.py @@ -0,0 +1,529 @@ +""" +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 +import typing as t +from collections import deque +from gettext import gettext as _ +from gettext import ngettext + +from .exceptions import BadArgumentUsage +from .exceptions import BadOptionUsage +from .exceptions import NoSuchOption +from .exceptions import UsageError + +if t.TYPE_CHECKING: + import typing_extensions as te + 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") + +# Sentinel value that indicates 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. +_flag_needs_value = object() + + +def _unpack_args( + args: t.Sequence[str], nargs_spec: t.Sequence[int] +) -> t.Tuple[t.Sequence[t.Union[str, t.Sequence[t.Optional[str]], None]], t.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 `None`. + """ + args = deque(args) + nargs_spec = deque(nargs_spec) + rv: t.List[t.Union[str, t.Tuple[t.Optional[str], ...], None]] = [] + spos: t.Optional[int] = None + + def _fetch(c: "te.Deque[V]") -> t.Optional[V]: + try: + if spos is None: + return c.popleft() + else: + return c.pop() + except IndexError: + return None + + while nargs_spec: + nargs = _fetch(nargs_spec) + + if nargs is None: + continue + + if nargs == 1: + rv.append(_fetch(args)) + 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(None) + + # 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) -> t.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: t.Optional["Context"]) -> 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)}" + + +def split_arg_string(string: str) -> t.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. + """ + 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 + + +class Option: + def __init__( + self, + obj: "CoreOption", + opts: t.Sequence[str], + dest: t.Optional[str], + action: t.Optional[str] = None, + nargs: int = 1, + const: t.Optional[t.Any] = None, + ): + self._short_opts = [] + self._long_opts = [] + self.prefixes: t.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: t.Optional[str], nargs: int = 1): + self.dest = dest + self.nargs = nargs + self.obj = obj + + def process( + self, + value: t.Union[t.Optional[str], t.Sequence[t.Optional[str]]], + state: "ParsingState", + ) -> None: + if self.nargs > 1: + assert value is not None + holes = sum(1 for x in value if x is None) + if holes == len(value): + value = None + elif holes != 0: + raise BadArgumentUsage( + _("Argument {name!r} takes {nargs} values.").format( + name=self.dest, nargs=self.nargs + ) + ) + + if self.nargs == -1 and self.obj.envvar is not None and value == (): + # Replace empty tuple with None so that a value from the + # environment may be tried. + value = None + + state.opts[self.dest] = value # type: ignore + state.order.append(self.obj) + + +class ParsingState: + def __init__(self, rargs: t.List[str]) -> None: + self.opts: t.Dict[str, t.Any] = {} + self.largs: t.List[str] = [] + self.rargs = rargs + self.order: t.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. + """ + + def __init__(self, ctx: t.Optional["Context"] = 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: t.Dict[str, Option] = {} + self._long_opt: t.Dict[str, Option] = {} + self._opt_prefixes = {"-", "--"} + self._args: t.List[Argument] = [] + + def add_option( + self, + obj: "CoreOption", + opts: t.Sequence[str], + dest: t.Optional[str], + action: t.Optional[str] = None, + nargs: int = 1, + const: t.Optional[t.Any] = 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: t.Optional[str], 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: t.List[str] + ) -> t.Tuple[t.Dict[str, t.Any], t.List[str], t.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: t.Optional[str], 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 = None + + 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 = None + + 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 + ) -> t.Any: + nargs = option.nargs + + 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) diff --git a/server/venv/lib/python3.10/site-packages/click/py.typed b/server/venv/lib/python3.10/site-packages/click/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/click/shell_completion.py b/server/venv/lib/python3.10/site-packages/click/shell_completion.py new file mode 100644 index 0000000..dc9e00b --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/shell_completion.py @@ -0,0 +1,596 @@ +import os +import re +import typing as t +from gettext import gettext as _ + +from .core import Argument +from .core import BaseCommand +from .core import Context +from .core import MultiCommand +from .core import Option +from .core import Parameter +from .core import ParameterSource +from .parser import split_arg_string +from .utils import echo + + +def shell_complete( + cli: BaseCommand, + ctx_args: t.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: t.Optional[str] = None, + **kwargs: t.Any, + ) -> None: + self.value: t.Any = value + self.type: str = type + self.help: t.Optional[str] = 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; +""" + +_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: BaseCommand, + ctx_args: t.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) -> t.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) -> t.Tuple[t.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: t.List[str], incomplete: str + ) -> t.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 subprocess + + output = subprocess.run( + ["bash", "-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) -> t.Tuple[t.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) -> t.Tuple[t.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}\n{item.value}\n{item.help if item.help else '_'}" + + +class FishComplete(ShellComplete): + """Shell completion for Fish.""" + + name = "fish" + source_template = _SOURCE_FISH + + def get_completion_args(self) -> t.Tuple[t.List[str], str]: + cwords = split_arg_string(os.environ["COMP_WORDS"]) + incomplete = os.environ["COMP_CWORD"] + 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=t.Type[ShellComplete]) + + +_available_shells: t.Dict[str, t.Type[ShellComplete]] = { + "bash": BashComplete, + "fish": FishComplete, + "zsh": ZshComplete, +} + + +def add_completion_class( + cls: ShellCompleteType, name: t.Optional[str] = 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) -> t.Optional[t.Type[ShellComplete]]: + """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 _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: t.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 + + return last_option is not None and last_option in param.opts + + +def _resolve_context( + cli: BaseCommand, + ctx_args: t.MutableMapping[str, t.Any], + prog_name: str, + args: t.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 + ctx = cli.make_context(prog_name, args.copy(), **ctx_args) + args = ctx.protected_args + ctx.args + + while args: + command = ctx.command + + if isinstance(command, MultiCommand): + if not command.chain: + name, cmd, args = command.resolve_command(ctx, args) + + if cmd is None: + return ctx + + ctx = cmd.make_context(name, args, parent=ctx, resilient_parsing=True) + 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 + + sub_ctx = cmd.make_context( + name, + args, + parent=ctx, + allow_extra_args=True, + allow_interspersed_args=False, + resilient_parsing=True, + ) + 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: t.List[str], incomplete: str +) -> t.Tuple[t.Union[BaseCommand, 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/server/venv/lib/python3.10/site-packages/click/termui.py b/server/venv/lib/python3.10/site-packages/click/termui.py new file mode 100644 index 0000000..db7a4b2 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/termui.py @@ -0,0 +1,784 @@ +import inspect +import io +import itertools +import sys +import typing as t +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.Optional[t.Any] = None, + show_choices: bool = True, + type: t.Optional[ParamType] = 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.Optional[t.Any] = None, + hide_input: bool = False, + confirmation_prompt: t.Union[bool, str] = False, + type: t.Optional[t.Union[ParamType, t.Any]] = None, + value_proc: t.Optional[t.Callable[[str], t.Any]] = 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) # noqa: B306 + 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: t.Optional[bool] = 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: t.Union[t.Iterable[str], t.Callable[[], t.Iterable[str]], str], + color: t.Optional[bool] = 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[[], t.Iterable[str]], text_or_generator)() + elif isinstance(text_or_generator, str): + i = [text_or_generator] + else: + i = iter(t.cast(t.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) + + +def progressbar( + iterable: t.Optional[t.Iterable[V]] = None, + length: t.Optional[int] = None, + label: t.Optional[str] = None, + show_eta: bool = True, + show_percent: t.Optional[bool] = None, + show_pos: bool = False, + item_show_func: t.Optional[t.Callable[[t.Optional[V]], t.Optional[str]]] = None, + fill_char: str = "#", + empty_char: str = "-", + bar_template: str = "%(label)s [%(bar)s] %(info)s", + info_sep: str = " ", + width: int = 36, + file: t.Optional[t.TextIO] = None, + color: t.Optional[bool] = 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 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. + + .. 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 + Added the ``update_min_steps`` parameter. + + .. versionchanged:: 4.0 + Added the ``color`` parameter. Added the ``update`` method to + the object. + + .. versionadded:: 2.0 + """ + from ._termui_impl import ProgressBar + + color = resolve_color_default(color) + return ProgressBar( + iterable=iterable, + length=length, + 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: t.Union[int, t.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: t.Optional[t.Union[int, t.Tuple[int, int, int], str]] = None, + bg: t.Optional[t.Union[int, t.Tuple[int, int, int], str]] = None, + bold: t.Optional[bool] = None, + dim: t.Optional[bool] = None, + underline: t.Optional[bool] = None, + overline: t.Optional[bool] = None, + italic: t.Optional[bool] = None, + blink: t.Optional[bool] = None, + reverse: t.Optional[bool] = None, + strikethrough: t.Optional[bool] = 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.Optional[t.Any] = None, + file: t.Optional[t.IO[t.AnyStr]] = None, + nl: bool = True, + err: bool = False, + color: t.Optional[bool] = 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) + + +def edit( + text: t.Optional[t.AnyStr] = None, + editor: t.Optional[str] = None, + env: t.Optional[t.Mapping[str, str]] = None, + require_save: bool = True, + extension: str = ".txt", + filename: t.Optional[str] = None, +) -> t.Optional[t.AnyStr]: + 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. + """ + 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) + + ed.edit_file(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.Optional[t.Callable[[bool], str]] = 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() -> t.ContextManager[int]: + from ._termui_impl import raw_terminal as f + + return f() + + +def pause(info: t.Optional[str] = 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/server/venv/lib/python3.10/site-packages/click/testing.py b/server/venv/lib/python3.10/site-packages/click/testing.py new file mode 100644 index 0000000..e0df0d2 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/testing.py @@ -0,0 +1,479 @@ +import contextlib +import io +import os +import shlex +import shutil +import sys +import tempfile +import typing as t +from types import TracebackType + +from . import formatting +from . import termui +from . import utils +from ._compat import _find_binary_reader + +if t.TYPE_CHECKING: + from .core import BaseCommand + + +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) -> t.List[bytes]: + return [self._echo(x) for x in self._input.readlines()] + + def __iter__(self) -> t.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: t.Optional[EchoingStdin]) -> t.Iterator[None]: + if stream is None: + yield + else: + stream._paused = True + yield + stream._paused = False + + +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: t.Optional[t.Union[str, bytes, t.IO[t.Any]]], 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.""" + + def __init__( + self, + runner: "CliRunner", + stdout_bytes: bytes, + stderr_bytes: t.Optional[bytes], + return_value: t.Any, + exit_code: int, + exception: t.Optional[BaseException], + exc_info: t.Optional[ + t.Tuple[t.Type[BaseException], BaseException, TracebackType] + ] = None, + ): + #: The runner that created the result + self.runner = runner + #: The standard output as bytes. + self.stdout_bytes = stdout_bytes + #: The standard error as bytes, or None if not available + self.stderr_bytes = stderr_bytes + #: The value returned from the invoked command. + #: + #: .. versionadded:: 8.0 + self.return_value = return_value + #: The exit code as integer. + self.exit_code = exit_code + #: The exception that happened if one did. + self.exception = exception + #: The traceback + self.exc_info = exc_info + + @property + def output(self) -> str: + """The (standard) output as unicode string.""" + return self.stdout + + @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.""" + if self.stderr_bytes is None: + raise ValueError("stderr not separately captured") + 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 stdin writes + to stdout. This is useful for showing examples in + some circumstances. Note that regular prompts + will automatically echo the input. + :param mix_stderr: if this is set to `False`, then stdout and stderr are + preserved as independent streams. This is useful for + Unix-philosophy apps that have predictable stdout and + noisy stderr, such that each may be measured + independently + """ + + def __init__( + self, + charset: str = "utf-8", + env: t.Optional[t.Mapping[str, t.Optional[str]]] = None, + echo_stdin: bool = False, + mix_stderr: bool = True, + ) -> None: + self.charset = charset + self.env: t.Mapping[str, t.Optional[str]] = env or {} + self.echo_stdin = echo_stdin + self.mix_stderr = mix_stderr + + def get_default_prog_name(self, cli: "BaseCommand") -> 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: t.Optional[t.Mapping[str, t.Optional[str]]] = None + ) -> t.Mapping[str, t.Optional[str]]: + """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: t.Optional[t.Union[str, bytes, t.IO[t.Any]]] = None, + env: t.Optional[t.Mapping[str, t.Optional[str]]] = None, + color: bool = False, + ) -> t.Iterator[t.Tuple[io.BytesIO, t.Optional[io.BytesIO]]]: + """A context manager that sets up the isolation for invoking of a + command line tool. This sets up stdin 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. + + .. versionchanged:: 8.0 + ``stderr`` 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) + + bytes_output = io.BytesIO() + + if self.echo_stdin: + bytes_input = echo_input = t.cast( + t.BinaryIO, EchoingStdin(bytes_input, bytes_output) + ) + + 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( + bytes_output, encoding=self.charset, name="", mode="w" + ) + + bytes_error = None + if self.mix_stderr: + sys.stderr = sys.stdout + else: + bytes_error = io.BytesIO() + sys.stderr = _NamedTextIOWrapper( + bytes_error, + encoding=self.charset, + name="", + mode="w", + errors="backslashreplace", + ) + + @_pause_echo(echo_input) # type: ignore + def visible_input(prompt: t.Optional[str] = None) -> str: + sys.stdout.write(prompt or "") + val = text_input.readline().rstrip("\r\n") + sys.stdout.write(f"{val}\n") + sys.stdout.flush() + return val + + @_pause_echo(echo_input) # type: ignore + def hidden_input(prompt: t.Optional[str] = None) -> str: + sys.stdout.write(f"{prompt or ''}\n") + sys.stdout.flush() + return text_input.readline().rstrip("\r\n") + + @_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.Optional[t.IO[t.Any]] = None, color: t.Optional[bool] = 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 + termui.visible_prompt_func = visible_input + termui.hidden_prompt_func = hidden_input + termui._getchar = _getchar + utils.should_strip_ansi = should_strip_ansi # type: ignore + + 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 (bytes_output, bytes_error) + 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 + formatting.FORCED_WIDTH = old_forced_width + + def invoke( + self, + cli: "BaseCommand", + args: t.Optional[t.Union[str, t.Sequence[str]]] = None, + input: t.Optional[t.Union[str, bytes, t.IO[t.Any]]] = None, + env: t.Optional[t.Mapping[str, t.Optional[str]]] = None, + catch_exceptions: bool = True, + 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``. + :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. + + .. 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 + with self.isolation(input=input, env=env, color=color) as outstreams: + return_value = None + exception: t.Optional[BaseException] = 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(t.Optional[t.Union[int, t.Any]], 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() + stdout = outstreams[0].getvalue() + if self.mix_stderr: + stderr = None + else: + stderr = outstreams[1].getvalue() # type: ignore + + return Result( + runner=self, + stdout_bytes=stdout, + stderr_bytes=stderr, + return_value=return_value, + exit_code=exit_code, + exception=exception, + exc_info=exc_info, # type: ignore + ) + + @contextlib.contextmanager + def isolated_filesystem( + self, temp_dir: t.Optional[t.Union[str, "os.PathLike[str]"]] = None + ) -> t.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: + try: + shutil.rmtree(dt) + except OSError: # noqa: B014 + pass diff --git a/server/venv/lib/python3.10/site-packages/click/types.py b/server/venv/lib/python3.10/site-packages/click/types.py new file mode 100644 index 0000000..2b1d179 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/types.py @@ -0,0 +1,1089 @@ +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 + + +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[t.Optional[str]] = None + + def to_info_dict(self) -> t.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: t.Optional["Parameter"] = None, + ctx: t.Optional["Context"] = None, + ) -> t.Any: + if value is not None: + return self.convert(value, param, ctx) + + def get_metavar(self, param: "Parameter") -> t.Optional[str]: + """Returns the metavar default for this param if it provides one.""" + + def get_missing_message(self, param: "Parameter") -> t.Optional[str]: + """Optionally might return extra information about a missing + parameter. + + .. versionadded:: 2.0 + """ + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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) -> t.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: t.Optional["Parameter"] = None, + ctx: t.Optional["Context"] = 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 + ) -> t.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) -> t.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: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> t.Any: + return value + + def __repr__(self) -> str: + return "UNPROCESSED" + + +class StringParamType(ParamType): + name = "text" + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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): + """The choice type allows a value to be checked against a fixed set + of supported values. All of these values have to be strings. + + You should only pass a list or tuple of choices. Other iterables + (like generators) may lead to surprising results. + + The resulting value will always be one of the originally passed choices + regardless of ``case_sensitive`` or any ``ctx.token_normalize_func`` + being specified. + + See :ref:`choice-opts` for an example. + + :param case_sensitive: Set to false to make choices case + insensitive. Defaults to true. + """ + + name = "choice" + + def __init__(self, choices: t.Sequence[str], case_sensitive: bool = True) -> None: + self.choices = choices + self.case_sensitive = case_sensitive + + def to_info_dict(self) -> t.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 get_metavar(self, param: "Parameter") -> str: + choices_str = "|".join(self.choices) + + # 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") -> str: + return _("Choose from:\n\t{choices}").format(choices=",\n\t".join(self.choices)) + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> t.Any: + # Match through normalization and case sensitivity + # first do token_normalize_func, then lowercase + # preserve original `value` to produce an accurate message in + # `self.fail` + normed_value = value + normed_choices = {choice: choice for choice in self.choices} + + if ctx is not None and ctx.token_normalize_func is not None: + normed_value = ctx.token_normalize_func(value) + normed_choices = { + ctx.token_normalize_func(normed_choice): original + for normed_choice, original in normed_choices.items() + } + + if not self.case_sensitive: + normed_value = normed_value.casefold() + normed_choices = { + normed_choice.casefold(): original + for normed_choice, original in normed_choices.items() + } + + if normed_value in normed_choices: + return normed_choices[normed_value] + + choices_str = ", ".join(map(repr, self.choices)) + self.fail( + 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), + param, + ctx, + ) + + def __repr__(self) -> str: + return f"Choice({list(self.choices)})" + + def shell_complete( + self, ctx: "Context", param: "Parameter", incomplete: str + ) -> t.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: t.Optional[t.Sequence[str]] = None): + self.formats: t.Sequence[str] = formats or [ + "%Y-%m-%d", + "%Y-%m-%dT%H:%M:%S", + "%Y-%m-%d %H:%M:%S", + ] + + def to_info_dict(self) -> t.Dict[str, t.Any]: + info_dict = super().to_info_dict() + info_dict["formats"] = self.formats + return info_dict + + def get_metavar(self, param: "Parameter") -> str: + return f"[{'|'.join(self.formats)}]" + + def _try_to_convert_date(self, value: t.Any, format: str) -> t.Optional[datetime]: + try: + return datetime.strptime(value, format) + except ValueError: + return None + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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[t.Type[t.Any]] + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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: t.Optional[float] = None, + max: t.Optional[float] = 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) -> t.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: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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: "te.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: "te.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: t.Optional[float] = None, + max: t.Optional[float] = 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: "te.Literal[1, -1]", open: bool) -> float: + if not open: + return bound + + # Could use Python 3.9's 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" + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> t.Any: + if value in {False, True}: + return bool(value) + + norm = value.strip().lower() + + if norm in {"1", "true", "t", "yes", "y", "on"}: + return True + + if norm in {"0", "false", "f", "no", "n", "off"}: + return False + + self.fail( + _("{value!r} is not a valid boolean.").format(value=value), param, ctx + ) + + def __repr__(self) -> str: + return "BOOL" + + +class UUIDParameterType(ParamType): + name = "uuid" + + def convert( + self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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. + + Starting with Click 2.0, 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. + """ + + name = "filename" + envvar_list_splitter: t.ClassVar[str] = os.path.pathsep + + def __init__( + self, + mode: str = "r", + encoding: t.Optional[str] = None, + errors: t.Optional[str] = "strict", + lazy: t.Optional[bool] = 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) -> t.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: "t.Union[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: t.Union[str, "os.PathLike[str]", t.IO[t.Any]], + param: t.Optional["Parameter"], + ctx: t.Optional["Context"], + ) -> t.IO[t.Any]: + if _is_file_like(value): + return value + + value = t.cast("t.Union[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: # noqa: B014 + self.fail(f"'{format_filename(value)}': {e.strerror}", param, ctx) + + def shell_complete( + self, ctx: "Context", param: "Parameter", incomplete: str + ) -> t.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: t.Optional[t.Type[t.Any]] = 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) -> t.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: "t.Union[str, os.PathLike[str]]" + ) -> "t.Union[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: "t.Union[str, os.PathLike[str]]", + param: t.Optional["Parameter"], + ctx: t.Optional["Context"], + ) -> "t.Union[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: + # os.path.realpath doesn't resolve symlinks on Windows + # until Python 3.8. Use pathlib for now. + import pathlib + + rv = os.fsdecode(pathlib.Path(rv).resolve()) + + 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}' 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 + ) -> t.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: t.Sequence[t.Union[t.Type[t.Any], ParamType]]) -> None: + self.types: t.Sequence[ParamType] = [convert_type(ty) for ty in types] + + def to_info_dict(self) -> t.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: t.Optional["Parameter"], ctx: t.Optional["Context"] + ) -> 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)) + + +def convert_type(ty: t.Optional[t.Any], default: t.Optional[t.Any] = 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() diff --git a/server/venv/lib/python3.10/site-packages/click/utils.py b/server/venv/lib/python3.10/site-packages/click/utils.py new file mode 100644 index 0000000..d536434 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/click/utils.py @@ -0,0 +1,624 @@ +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, t.Optional[R]]": + """Wraps a function so that it swallows exceptions.""" + + def wrapper(*args: "P.args", **kwargs: "P.kwargs") -> t.Optional[R]: + 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: t.Union[str, "os.PathLike[str]"], + mode: str = "r", + encoding: t.Optional[str] = None, + errors: t.Optional[str] = "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.Optional[t.IO[t.Any]] + 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: # noqa: E402 + 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: t.Optional[t.Type[BaseException]], + exc_value: t.Optional[BaseException], + tb: t.Optional[TracebackType], + ) -> None: + self.close_intelligently() + + def __iter__(self) -> t.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: t.Optional[t.Type[BaseException]], + exc_value: t.Optional[BaseException], + tb: t.Optional[TracebackType], + ) -> None: + pass + + def __repr__(self) -> str: + return repr(self._file) + + def __iter__(self) -> t.Iterator[t.AnyStr]: + return iter(self._file) + + +def echo( + message: t.Optional[t.Any] = None, + file: t.Optional[t.IO[t.Any]] = None, + nl: bool = True, + err: bool = False, + color: t.Optional[bool] = 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: t.Optional[t.Union[str, bytes]] = 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) # type: ignore + elif not color: + out = strip_ansi(out) + + file.write(out) # type: ignore + file.flush() + + +def get_binary_stream(name: "te.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: "te.Literal['stdin', 'stdout', 'stderr']", + encoding: t.Optional[str] = None, + errors: t.Optional[str] = "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, + mode: str = "r", + encoding: t.Optional[str] = None, + errors: t.Optional[str] = "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 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: "t.Union[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: t.Optional[str] = None, _main: t.Optional[ModuleType] = 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: t.Iterable[str], + *, + user: bool = True, + env: bool = True, + glob_recursive: bool = True, +) -> t.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/server/venv/lib/python3.10/site-packages/distutils-precedence.pth b/server/venv/lib/python3.10/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..6de4198 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/LICENSE.rst new file mode 100644 index 0000000..9d227a0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/LICENSE.rst @@ -0,0 +1,28 @@ +Copyright 2010 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/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/METADATA new file mode 100644 index 0000000..b802e93 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/METADATA @@ -0,0 +1,116 @@ +Metadata-Version: 2.1 +Name: Flask +Version: 3.0.0 +Summary: A simple framework for building complex web applications. +Maintainer-email: Pallets +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Framework :: Flask +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks +Requires-Dist: Werkzeug>=3.0.0 +Requires-Dist: Jinja2>=3.1.2 +Requires-Dist: itsdangerous>=2.1.2 +Requires-Dist: click>=8.1.3 +Requires-Dist: blinker>=1.6.2 +Requires-Dist: importlib-metadata>=3.6.0; python_version < '3.10' +Requires-Dist: asgiref>=3.2 ; extra == "async" +Requires-Dist: python-dotenv ; extra == "dotenv" +Project-URL: Changes, https://flask.palletsprojects.com/changes/ +Project-URL: Chat, https://discord.gg/pallets +Project-URL: Documentation, https://flask.palletsprojects.com/ +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/ +Project-URL: Source Code, https://github.com/pallets/flask/ +Provides-Extra: async +Provides-Extra: dotenv + +Flask +===== + +Flask is a lightweight `WSGI`_ web application framework. It is designed +to make getting started quick and easy, with the ability to scale up to +complex applications. It began as a simple wrapper around `Werkzeug`_ +and `Jinja`_ and has become one of the most popular Python web +application frameworks. + +Flask offers suggestions, but doesn't enforce any dependencies or +project layout. It is up to the developer to choose the tools and +libraries they want to use. There are many extensions provided by the +community that make adding new functionality easy. + +.. _WSGI: https://wsgi.readthedocs.io/ +.. _Werkzeug: https://werkzeug.palletsprojects.com/ +.. _Jinja: https://jinja.palletsprojects.com/ + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + $ pip install -U Flask + +.. _pip: https://pip.pypa.io/en/stable/getting-started/ + + +A Simple Example +---------------- + +.. code-block:: python + + # save this as app.py + from flask import Flask + + app = Flask(__name__) + + @app.route("/") + def hello(): + return "Hello, World!" + +.. code-block:: text + + $ flask run + * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) + + +Contributing +------------ + +For guidance on setting up a development environment and how to make a +contribution to Flask, see the `contributing guidelines`_. + +.. _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst + + +Donate +------ + +The Pallets organization develops and supports Flask and the libraries +it uses. 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 + + +Links +----- + +- Documentation: https://flask.palletsprojects.com/ +- Changes: https://flask.palletsprojects.com/changes/ +- PyPI Releases: https://pypi.org/project/Flask/ +- Source Code: https://github.com/pallets/flask/ +- Issue Tracker: https://github.com/pallets/flask/issues/ +- Chat: https://discord.gg/pallets + diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/RECORD new file mode 100644 index 0000000..c06d356 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/RECORD @@ -0,0 +1,58 @@ +../../../bin/flask,sha256=503N7y4znDVWZZBZA4q5Hew34DNKLIuy42IGhVL4P7A,249 +flask-3.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +flask-3.0.0.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 +flask-3.0.0.dist-info/METADATA,sha256=02XP69VTiwn5blcRgHcyuSQ2cLTuJFV8FXw2x4QnxKo,3588 +flask-3.0.0.dist-info/RECORD,, +flask-3.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +flask-3.0.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81 +flask-3.0.0.dist-info/entry_points.txt,sha256=bBP7hTOS5fz9zLtC7sPofBZAlMkEvBxu7KqS6l5lvc4,40 +flask/__init__.py,sha256=6xMqdVA0FIQ2U1KVaGX3lzNCdXPzoHPaa0hvQCNcfSk,2625 +flask/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30 +flask/__pycache__/__init__.cpython-310.pyc,, +flask/__pycache__/__main__.cpython-310.pyc,, +flask/__pycache__/app.cpython-310.pyc,, +flask/__pycache__/blueprints.cpython-310.pyc,, +flask/__pycache__/cli.cpython-310.pyc,, +flask/__pycache__/config.cpython-310.pyc,, +flask/__pycache__/ctx.cpython-310.pyc,, +flask/__pycache__/debughelpers.cpython-310.pyc,, +flask/__pycache__/globals.cpython-310.pyc,, +flask/__pycache__/helpers.cpython-310.pyc,, +flask/__pycache__/logging.cpython-310.pyc,, +flask/__pycache__/sessions.cpython-310.pyc,, +flask/__pycache__/signals.cpython-310.pyc,, +flask/__pycache__/templating.cpython-310.pyc,, +flask/__pycache__/testing.cpython-310.pyc,, +flask/__pycache__/typing.cpython-310.pyc,, +flask/__pycache__/views.cpython-310.pyc,, +flask/__pycache__/wrappers.cpython-310.pyc,, +flask/app.py,sha256=voUkc9xk9B039AhVrU21GDpsQ6wqrr-NobqLx8fURfQ,59201 +flask/blueprints.py,sha256=zO8bLO9Xy1aVD92bDmzihutjVEXf8xdDaVfiy7c--Ck,3129 +flask/cli.py,sha256=PDwZCfPagi5GUzb-D6dEN7y20gWiVAg3ejRnxBKNHPA,33821 +flask/config.py,sha256=YZSZ-xpFj1iW1B1Kj1iDhpc5s7pHncloiRLqXhsU7Hs,12856 +flask/ctx.py,sha256=x2kGzUXtPzVyi2YSKrU_PV1AvtxTmh2iRdriJRTSPGM,14841 +flask/debughelpers.py,sha256=WKzD2FNTSimNSwCJVLr9_fFo1f2VlTWB5EZ6lmR5bwE,5548 +flask/globals.py,sha256=XdQZmStBmPIs8t93tjx6pO7Bm3gobAaONWkFcUHaGas,1713 +flask/helpers.py,sha256=ynEoMB7fdF5Y1P-ngxMjZDZWfrJ4St-9OGZZsTcUwx8,22992 +flask/json/__init__.py,sha256=pdtpoK2b0b1u7Sxbx3feM7VWhsI20l1yGAvbYWxaxvc,5572 +flask/json/__pycache__/__init__.cpython-310.pyc,, +flask/json/__pycache__/provider.cpython-310.pyc,, +flask/json/__pycache__/tag.cpython-310.pyc,, +flask/json/provider.py,sha256=VBKSK75t3OsTvZ3N10B3Fsu7-NdpfrGYcl41goQJ3q8,7640 +flask/json/tag.py,sha256=ihb7QWrNEr0YC3KD4TolZbftgSPCuLk7FAvK49huYC0,8871 +flask/logging.py,sha256=VcdJgW4Axm5l_-7vXLQjRTL0eckaMks7Ya_HaoDm0wg,2330 +flask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +flask/sansio/README.md,sha256=-0X1tECnilmz1cogx-YhNw5d7guK7GKrq_DEV2OzlU0,228 +flask/sansio/__pycache__/app.cpython-310.pyc,, +flask/sansio/__pycache__/blueprints.cpython-310.pyc,, +flask/sansio/__pycache__/scaffold.cpython-310.pyc,, +flask/sansio/app.py,sha256=nZWCFMOW8qK95Ck9UvDzxvswQr-coLJhIFaa_OVobCc,37977 +flask/sansio/blueprints.py,sha256=caskVI1Zf3mM5msevK5-tWy3VqX_A8mlB0KGNyRx5_0,24319 +flask/sansio/scaffold.py,sha256=-Cus0cVS4PmLof4qLvfjSQzk4AKsLqPR6LBpv6ALw3Y,30580 +flask/sessions.py,sha256=rFH2QKXG24dEazkKGxAHqUpAUh_30hDHrddhVYgAcY0,14169 +flask/signals.py,sha256=V7lMUww7CqgJ2ThUBn1PiatZtQanOyt7OZpu2GZI-34,750 +flask/templating.py,sha256=EtL8CE5z2aefdR1I-TWYVNg0cSuXBqz_lvOGKeggktk,7538 +flask/testing.py,sha256=h7AinggrMgGzKlDN66VfB0JjWW4Z1U_OD6FyjqBNiYM,10017 +flask/typing.py,sha256=2pGlhSaZqJVJOoh-QdH-20QVzl2r-zLXyP8otXfCCs4,3156 +flask/views.py,sha256=V5hOGZLx0Bn99QGcM6mh5x_uM-MypVT0-RysEFU84jc,6789 +flask/wrappers.py,sha256=PhMp3teK3SnEmIdog59cO_DHiZ9Btn0qI1EifrTdwP8,5709 diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/REQUESTED b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/WHEEL new file mode 100644 index 0000000..3b5e64b --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.9.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/entry_points.txt b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..eec6733 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask-3.0.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +flask=flask.cli:main + diff --git a/server/venv/lib/python3.10/site-packages/flask/__init__.py b/server/venv/lib/python3.10/site-packages/flask/__init__.py new file mode 100644 index 0000000..e86eb43 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/__init__.py @@ -0,0 +1,60 @@ +from __future__ import annotations + +import typing as t + +from . import json as json +from .app import Flask as Flask +from .blueprints import Blueprint as Blueprint +from .config import Config as Config +from .ctx import after_this_request as after_this_request +from .ctx import copy_current_request_context as copy_current_request_context +from .ctx import has_app_context as has_app_context +from .ctx import has_request_context as has_request_context +from .globals import current_app as current_app +from .globals import g as g +from .globals import request as request +from .globals import session as session +from .helpers import abort as abort +from .helpers import flash as flash +from .helpers import get_flashed_messages as get_flashed_messages +from .helpers import get_template_attribute as get_template_attribute +from .helpers import make_response as make_response +from .helpers import redirect as redirect +from .helpers import send_file as send_file +from .helpers import send_from_directory as send_from_directory +from .helpers import stream_with_context as stream_with_context +from .helpers import url_for as url_for +from .json import jsonify as jsonify +from .signals import appcontext_popped as appcontext_popped +from .signals import appcontext_pushed as appcontext_pushed +from .signals import appcontext_tearing_down as appcontext_tearing_down +from .signals import before_render_template as before_render_template +from .signals import got_request_exception as got_request_exception +from .signals import message_flashed as message_flashed +from .signals import request_finished as request_finished +from .signals import request_started as request_started +from .signals import request_tearing_down as request_tearing_down +from .signals import template_rendered as template_rendered +from .templating import render_template as render_template +from .templating import render_template_string as render_template_string +from .templating import stream_template as stream_template +from .templating import stream_template_string as stream_template_string +from .wrappers import Request as Request +from .wrappers import Response as Response + + +def __getattr__(name: str) -> t.Any: + if name == "__version__": + import importlib.metadata + import warnings + + warnings.warn( + "The '__version__' attribute is deprecated and will be removed in" + " Flask 3.1. Use feature detection or" + " 'importlib.metadata.version(\"flask\")' instead.", + DeprecationWarning, + stacklevel=2, + ) + return importlib.metadata.version("flask") + + raise AttributeError(name) diff --git a/server/venv/lib/python3.10/site-packages/flask/__main__.py b/server/venv/lib/python3.10/site-packages/flask/__main__.py new file mode 100644 index 0000000..4e28416 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/__main__.py @@ -0,0 +1,3 @@ +from .cli import main + +main() diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8fa4155f660e5fc4a901d6a343d97a0d3c2da221 GIT binary patch literal 2300 zcmb`IOLH4V6oqF-kI~ceQ-0gyrz|Iy>?E)uP=o->ERs-Ebx}1n*0iLtdmi+(?3i*k zz?Ky&cCci@&tWrLR`~-g!iIC(QsOdOr1H@>r+d0@-@e_B>-CC(&mVvO!k>WtqKDg` z93DP33^V=PGz{PHO<{y4GfiSkSS;t~{JhAA1y+EU^9!OF+RWBm6s54t%9?Fa39GEC zxg=^~oz*p$!BcEXa|PUB4b4^XG@I636Eoo~o7G$g&#^hpQ{Z_vuekwUU<;b3MKfGv zi<)P^OKeH=EO?nMYn}tIuocbo;8nJ&c>%n})-*T4>ug=~B6x#sXkG$uvQ5p)V23%H zS41J)Vq2P5#df&Eb~LYnciFDyb?_eB)4T!RXZxBr!7bL(?0^s0f#xl6o3%A>gAduE z<{j`oc2Dyz_&&R@c~2aL9oEsj5AL$A<`(#v9cw-SpRg0nZSf#{$R27w1V3Vrz$bp! zKmIY#KJcvJEPg4XAx8R+|k_IpI5%Lf)Kj6yM58QV{bo2&1h2JD!@h}md z;;yHZ3{FRiqop2t=NwU_335S3Npe4syhr1fQy%$lKM>R~ck>|Q(7ovp%PVaw$-U6M z4Ak(}D(sOIZaDZf7cwPLv1eJ>Z!PgT^P82d`Zi0o^lLK zK}SAq#CTa~Ss29cbI)J(ctTr@hQ>G-lia|Xo@BlsM8SB{#>7jNCzXz4eq!ATVrDY! zI1Jqx@81ondB<{7Rbe(PQVqJUq?x|^`Q?y1ty^}>c~@gjkUBn&5$~b& ze8-D?=Q0q&IpvPzVSE8Eh#Y<9oQIv0j`LN@oj&)l9F7+iDiJd|v2l2V|N5pWD@`WO?D5Rm)RW0+`a(+7drscN#98^>4Du14e>dbu_<8$HcNmAf zd*fNF4o#juGBD&kecIe8Yq60U^#TGZ{F&< zF6vjgZYQ~-oxwq;)Z-b`rSp)IN#DF>nO4p+i~rQ@k|jSzLp!fSmG{B&h=ks0f0$KV zw?Cr%V}B`&Sy5dj$V_Ic%#e9LgPn4c$28B0-7CX|iTWW=ZBqXiai~q)DvI5EMG#ErQ z_$pazB%BbF=o$lWJtksMHa=~80p6kD6TLlR1+-rie6 f2Q4c-4r6~L_$PEq(wC5$QL<`Q&HVqqQ@MWuF=B)d literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/__main__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f761494c8b8b356f3c22b32fad67557c6c8756f1 GIT binary patch literal 225 zcmYjLF%H5o5W5rxRKd!~-hm#76(L^0!iJEl&|YaFO{%06n0W zI$PGsvQ@9=gT?)ErGeF_Gym|cncFjcO9>=QK*3gw0kI1(NW3KktrxS;fHm!c=W-Ev zO)D0;cF`N?wv{iv*O;k-aL0|3xKwF%H^#WuF8JODK~OmD literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/app.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/app.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f593c710e694262b914accdbe95c71c415cd7173 GIT binary patch literal 49696 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 Ezo<(l?*IS* literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/blueprints.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/blueprints.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..345e6122ae6d56f97e4f9f32f30fb716f94da53a GIT binary patch literal 3436 zcmcInPjB4D6(_me6}8&6r8rjNHbABdP-_93>o~|Eiy(;X$ga^u4lJigwrI#%&a9R) z$)RV4k|iiPM85U|^iaS)_K=U$3$H!pEBMmBH(YX8u5)WCiJZUh&3o_nes3iD{jLSi z&;R@z|D*TG@X5}i+msCa~Sp>ag~D}9-;E(r*X{<80FU3W)`^PE!Jk8 z=kB=0uCP_sg_g_SW>?u|w*I_5ZnF(AWK*udmeQNX3D0QCUv-t1Sgw- z3&)y|Mb47m7PRs2E=J`RG_-YSGy9tLgLCFEr?BK2dP_r3x6U28sogW@Mf;_7Ztq)X z=*Je#K;SouGcq|LqiK;vqp0TfXn+NuCA zB;|T07>P48bPug;EQz3}mIV4fIpR{maibZ{4mcZ)$Zh{tvmPV)7zEE<@|rW@5Vc=G zU1QpZx5-Qt^38fEV@As@|C2^bdF@vNx;N;^HsHAIRB@(>}yE* zB!EN|8B>E+=_;N~CDK>fHaPr;C9gv7)%U}hNcr%PDv=HM#Z(_t$%h6DH#7cBAF3fl z6Pz*xz#a{gcrwgSz@gbk{)e}QD%SjFPNOG)cUA2gPHLV|etuG3J>VM7fs6uR59YbC z0jd>HsMX!@9M|qTJ==9o-)~sOf8(yQ1*tDrVcUNtIr`*oo#bcMp`}(dB>K7ilYM5r zaL(+P_79Na+I`X19hhHv31dhBe{Gp0-vKVfz#hf?m|&74WD&p&fowcrvQ=G7s1em# z0v{m1M!{4hj7vzH9U?^mFho=qTBJB@P%QaD47iXW7I>fuxPh=yO*OeFvye%E3=twl zT%4M#11*gp#q|=J|BvahfbGW%nmWCG{ema1leAEpOdt`tUih(I19(tARE?E6C6eHnH}-cO$FnxE@}V4!#`_( zCp+2K@-Go4Wc^^fLFw+PwJ4%!|J7D`4rl{9S}J|bU364qX*^}%!#feU)(iMoh}-%QU1BVI72f^Nazde_6BZ67HcRH3zO`_ zs~$y)sYbE*3~Xa4RAO@qGii>pSoQ%f>y%y);FUE9%5D%qR12tpLD>s}r*NsMW-3N| z9~B@6Etz8sL$)#(;B{yy4_=HJ2DW&&m<%ZAje-DM$^(@cv?4I3&I{^N4;QMy#KOoD= Ah5!Hn literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/cli.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/cli.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ff870e033e02f0921f2b77493b6100eb59b7b02 GIT binary patch literal 27037 zcmch9dvqMvdEd=Mai;dSdvBYA<3d3hJefnmb_T*41fg} zyURNRf*3Cpi=-ne3FWv>(&jiyz&1{!)3m2e)6=9)lO{bqN!#?1KYC6(Ic?K4X{$Ev zIq9jJhLX+xe&3zh2SCaGs~|C$$Gvy%-1|L$-*<0oc(`cb=db_kpYrd%Y8d~C7yUn@ zxOmzy%;1+ZhT$2W*)UejIn(61)v)F)`J0)umyhj!-?@{j)sQEGf5$`dy z{HXUAyvMyyqs%9y%oN`J89e=j_r!I3?lH9Rr1un_eo~%()_Z!z$0(PTq1Md8)QOEqj3%UNx?mxBEAD!auQma`Rcw z@E^NjfwuU)tKLQV-oxHcc$d8Ot2S%SJtxm1?@QgW=y)6c&duk&*Ke5K4|-qr-blXb zGWvbRyNYi*?ER#7&3j9?Agz4P|FrkR-j8@c3i^2g?O*ra#vGsWU-Z6u-uf|9{Tu(( z6$A8c&B*V>Uwn`JJYmK|)n>C5R>OL$8BF7PWVP*8L%*`7s_nL~aHm)g{gp*O4CQLa z>8h%(__&y9t*V;O0&2Bc3F<5D2Cw$jg9>gm>&?Z=f@-Z)l;3DoJ*hm5LM;_mf>7b{ zduGyw+Nx51Gpyi^>;c|Y@%(eEsNbkA;?54XRH7FLRv#|zeUQ(95-IuxnYJ@$LN@zeI>JDg_(|Z&A4Kz{T<6fnHl3k{!L@S z^s=6FHQzCo?ak~B<2ZO=BNIBE%oWo!&s*x@PR7gaN9pc8TOA8?9&6;k0a={VYAq=ZMVjc9*Z zLTNK-UN-Q)Qpd#GhLg9AB!73v-O+anSIkcKvgO$u+1Imc<{H{Uot<0yIHvnJu`618 zwvH)rtFE4Ix84lGYP06M;Zi+tLC`*qEq9>~VhNXgP)-oK?N$)f&o%s_i=Te-syC%j z(iVtIkq`q?p`TJ`S!$^Qrc4dvFk!_Rv;mgw(dqQS3|lCb#qTc8@By4G8Xe=c0>&0| zDl=(y%&%D&zzjl;;H_dkNWTQ_Tjhsi^P;>>6YU-}5*MFn)Pu0rT4_IZ7}o(`bHIr1 z<+oP&o#fo|6OC4_+6bP)Nm^Qw{Gx}CLtNBCu-VFLBdkMAxWc{t0}^07(~%vI^5bRq z<-m8xqk~iArg4sJ(DrNfg>@OXS_=}R7P_sbUq-i!HRV%iadh%4)$?)|jdkC7Q;_uNra2Ye{SfX3 z69c{Km5V-gvRZH8Yg202_OTQuX_xvxd++v-l@A<_4MoO{a}b2pFjQ(EuONiHdM$+D zaV}OHt9}q?8h%swUQzzVIm|2uE#xFGtTt;Dd2wNOz3rb+s-@yPD*RgCtMFqX@mmnt z@?}o!Xv&NWe4WTTwO5*4sfM*Byoy9vNj@SreN8Q-QY9oaJU|=w;(qW&97=XRQ!M&wtta zz`AMe?60dP@rrE>L9us?3~>@Cp|NS+fZ*G2Y?#pj2s&%kRCjmGWotPD*0)y;wfC&? zy6I(Rz%t9(4O5p1hUBh2gJ)~TL^gWw*pgp6@2)NRV0I;B1C<8xkPfuwXb*Sh=et8b zKM%Q3tF8uGB2Z2U!7XTt0bL}I-2iF=k_AmBq9P?25fma~L_GMM$#PN7r`pub?!uHi zi-x-$374v%=V~CY@;xn9rj#G9s^%1Xr&fJ*3_5U2e{{+B$nMi8XD6IE6RZbu9s;UT zZ!Ware0UBj9{d?Q3zb^S^GTBY3zE#?85J71(_DzH@SLU)(S)QBHIBpQ@f+|~DQ{t( zM=;M$!TIz2`&PbaONkm^p8n7&;jhf*-|SOh8!)k=Qph z`4*H6PKrWfO9i%c+2k|UjmEs9H+0p&^{}YMtXJ}e<$6S}9rS4*`m|%c(e2ZS^hsJu z`ZUnb%Vv}dN1>SQE7nF1_4lLx&h?*w+RNk1htU_PN%RF}mdB(|P_3Oj)LU*N|9YP4 zE!?%ayOV=T{YO!ulk4F7I?m6TZ<`whwCAF|J?p=fv^N&+?c|_F|CXrHozl0lq~%>y zh=VP6avKGVO`&69lzz8Ufa1@2yQRG0?GbgmH<^L~m=pNr-JxbgDK7U8vEjd$FqO zRcK6?a-V{-$5CbX7{rxUrG3=hav>FkbRm+uYWWcBY8sbk-FCe?HAiE8t9FfTA5s(= z(T3>rqtTua2UkHCMdL15h*lybVjW7O*TpWUk(bNU(Z^3F!WJD^@L}4*N?2KiIRI<2 z>S{|_zHiEn&GI&ZMGZbffklZc8azi0z6nuuV?cY;9tgs?)PPy2s*Q?#0IW4s!xOc* zmF4clgSYW33Vg2-Jt#t&g8bZiVw2xai*M^7C8~7rE}VdljMs{klgmbEZoIsxnQ#^bIhd3+hY9i^Wb$)G2M`3VKv5CR)RaB7v-u2!3+pQ8!Zk@ZXa^@5! zqXkN%&YW_i{k`I1z4azIvMGI|l8Dp9hKPpxEQsilKGOlStM#cE4?=a?W~sv%=ystT z9XZN(*S+mlkVt7-A+2*^wcbQEdQk4Tx(A~WS>xr2JJiQGjI;)1K;x`XXPhMuwPX8S z%Uh3!X4acw^^z!gZ4QXNU{6z2TXiqC$w;wHx{YmW{5XH!Uten}FNlku=eX#)E?yIl z98C#c-=t}w?&skF9vSkEPl6)%YMaIOFSS){%Z=yw+&K@Q2d}g_&gu}W zlhC))z}R-;Y@=9k4TlnJfqh~+6k$kMmIb4rlyzW6IJi3k^MR&A-nKHM=5ChDbjy9) z%JG?Hk5Jv1V@Z9O6Ss;vUXPgC;K;MJTWH<3KA^E-7mJn+1*HuR7$`7S)c2z^1METG z?HU|^0~evOOr|hym>c>WX2uQkRcpiCusU!};VxLOT)if_W5Ehr=t?dVkp3kTkd9^tN1!&xW!t|WY z0zEbS%YP-aA8&?>T!_A&`Z)_QVnqmxgR@qLT^z!OhE)qHudOyMv1&RPfBQArM(oqI3E{%(NvkrTA zHX2G#>H5;iP@l$O`n_BDnJC3p3*^NP#d$ae4Sg2CxesBH#QAg8K)x)_K^gG1U>`n= z9gwcy^kT=q1Q!NvEVt@SMV}{jU`zWdoXDz|d6`|1dKtDiq-|wQ^V951*WcI1@JL(v zU{k-M;g4TKk-){FWRJq?vCUDd1nZW>S~T~9z^wO2awFz$OPxcZ*;)q2^oQO(9l~SO z4}fNk$boMM58O1M#wVc0&Go~HSz&Evw5hvnt9!$&2P%YV08f20cf4)rx4)1e;5 z>(nQBAn*|vLRGE#=YWjF#f6rFlTv||8t3%P1mYM7vrgEm%37ybYfSo4sV`I@b1Q=L zhzQ#{e?@w>+P(a@s25P=Sr97_H5m)y0)mHvB4d5qw#Q7zvc6Ru&SPeama3!Zzywl2 z@Pi?j4Fymfg9=Y%Gvh(g15(lFVCD@ww3oBJsl#Mt0BvMp^BM0zBrNAW z=Q>!rV{8^~z{+Jy6S-+nDS@Rpzvip+k-xflGk03RBsa(1vv2Jj5ef zI#iNkY6V}6LYL~`q&QOxFNp%HuBa#ZU|9N_7LG^Ley4Y~PRtO2!KCRwMFWC)K)jnJ z;VAl+m>KwucEDVu-DCg*x3!R1H=;a}ev1xSX~7U~)X)3q7RY2hvFFd#7cq#gYBhZJf4vPL zmOYm)X?O=l)N0rQZzqq=2^J*vr)nVdU}|0l<5|^OZNt$9db8eIg|>pt-UwRmO0}s+ zLpMj1hYG2UnyJoeHDQ~0F!SLolb(|i*IHA)a`})RhS!oZ@klTLZqs0EHDX6QDzVLWY9yTWhv#&GMO+-jNyqFM6$lL+ zO`6^n3sTsqWIUcD-Zo>rYfeK;T}D~yQEZb@)mLyG4+)A6zz3fJ6x$B`#zL>8l-a^! z>I~}b1_cImyq%nr!9S>}XjhLy%c(LJgYTowAxb*W1m;387@frtpfRrDUlN(wFq@C! z9z5|dvusmkEkk9&n}28iqS8eLfiq!E-aZYr@0To zeWjVc4#!hR1t$7z8&VT!m}HPL3(#LQ0fy`%pkaLlaIbL0GF?N+TY#fTx19pqI zo-|IN6ihFa&X(Y4Xo5+>9NwIcic=4L_TDeN`s(4=CImEwJO>zhNlY8j&l6UZTMHH$ zFNkRB;P1%^Q!Qa;qo3_5Vy*4mYVU(n(V{U>c5ocRFF5Z`PNJD{wwFKZ1S= zNejuwmh#mcZ=K_TidOqNq;xfeL!6Z;5}4sfc}tuO8gGg=T0E4nG3~f5L?7oR*o2Nf zK+31BQG|CvK+>`HT8^3j4q;5H_z}XA@F8p%0#r6mE}wC5XMjJ_)+RF3)3XzK&2d-Q z6N(H)Gfwl~5Ap0x9_Z!3L6-9oo;w2Rs-1i|#se^ZL%36Yjb}ZRQ_cipdjk)K_yues zZ=jz=_OkTB$WFy)AP~oI1`yl>OiOt~xs##tVh`zANZbd$$<;gQtl;q%FqvEA7 zfjEzWSKtu?8h|thUp_<$4uY&hISLU56X1VaPCfAgowztX0Ffx4CgLHQR} zfiF>i>d&vi)kwNtE~o0Twp48{`rg!(`$+i_X^0FwOTGuACm$?u7$AG}1eTN=te)$B zG_=#24|fcI@#)|BVO2piIIg>-kW8H*s63HV)H(66 zCeeyEB7|^-xp)((oC+n(%==GGZ2U>Kiz%;dkJN?D;fD*u_b|U5O-z4AL!Z&-SwTiy$q%fH;4& z-4>Im3eUh0%MeJ<`G7zqC|c2+tdeQq(j$-|W>0EQy{=8XK8q@G?llQ(y?D+Cztlma zF#4z)rWm=HnosCw9=2-AB|V`aL_28CG2=itnBu8Wq)m53Lzo6*#WKw(Fj*V;UH~*gOpJT=m1Dd zB4^jEMW_SK!`DpmFd>PQk8NpG^G8-lDb6Ltp~wsG+I`$fRUMc3@o>nMux^)06?rJ? z@(4Wdd(7y*l)TGHn>`4-OL$OpnRW{%ueJnwvY^M5KZ~Y?Db>&5EJ$Bc%8prfHX7af zl7SH-n^W#VyqE$GbS#olXcA^)RB9RE%62ISbL{8-zmSsWFH~V%YUWy`cLX-4*VAWH zrlgpDXdg|$Pj3Y9h>P%DlBU#8bGRt+)H^uDS!oqQP%N$9`1Y(4F-U$6W#8b?a z17LTfirkb{w zX|ju@PWQL$PE){bGkz8zgLs#=Ju)o#C+!t4d)XSeLVM$B$_6fJ&(UMYo5yLI_oZ5h zquz_7fFg6mp%B?q9ggakdD!6LbslI;-yEWUojBhgKCMroD5ny!D?OPROtA@Io^fIR z+6&f2(4I`WrS^Gd6G|e?E<0Z430N&q3-)wu9*NC|<00(>9Y68R%g;jl?j}S92o0YC zleD6374bk+7H^Gn$4{I*`tqsScqlokym<7qnw3Y13$>keoTQmS_5x(uMHhaaj9o-B;H!TH-V?=-@_hcvKhR4K+XW0#h-^=$Pvv>3$hJb z#Y5t@>9=j00%>V0^Nv;U-U_)x5^D$){s!m4#T)V&h$TdiMt~Z_5tD!Rw=D#htXug4 z=H*vW2+ZwA#mPxDGs$Mq`&V&0&chF`w9Z%8qZdwrdvEJo2Rc?LC`;D^MDALQ2I*l%?b%M?V@^6vBQ7dMeu<}mC~Ae^*A<=!rD_tpHIBjj?Uxa7e7o`QJGtJlnVacjA z;`tYm+)8BDYXQxn2Pm#1r0f=ORi;IEmAE9#WV{w3A!&xWKJ*RItap()g>YPvaZrQr zh%P}ut}WFOLW4}DpoHNLj|kQ#0&$Y|27;Gn(mXzGeAa;j2R^KE%Y$ zF)0i1b^5xjVKn_>QUr=aR}H+bPYO)A!hLM8iKr$MJg3NNQ}bnT>^xiU-Vl6@ce}&G zk~Fz6E8*=qxa^)~lvTiL?O;jg>8;_~Iz1SsK6$9))5-JM;60;B;))HOYM+rBYGXoofIK zGGyNkE;%{~&wxtXtDrzYN~F^y108SYe8Sd4`zdK30yx#3mHGLnx4M={g(EM+Py$MW zkVJ~qO$Mdj~y^Qc3dt-QV)fU$5?2PHPx>`;Op=~7C4-$-pq#Oqs{dmPFW*jk^ayopsoM_ zYX(1$6NIN7*Z{ByZdmQSN4!4Q$!#LJJha2?0&<0*?=wg-&uuy(^3xE#%ygWKrn;9I zYGPmExZl{!6W0)r3ON085om|m$<YoE1d$7wQOJim`WcVpnW4 z=~>;t2QzyBs}#I=v}X=zF^2dHs4)?F@o=)pK|fPpVAYW=WB*rpGYiG#D~HYTrslTSDUFox!tPsnxT)Fq*Xin-eM@C3Fr)2CfY5$UiIE)dOg{ zVWe%oHR(z0%pbrBFhfIOL79$~BY`HXb`tq&WLE4AP)`$4BUqo3xeNOoG;`fVL}&=< zHU<)Atj+ul(8_Xwlyu=vj}(x`%O|Y&GI+y#bi2g%L~x{y^Jqk*c?vKDxJ_Sl78y_f zibW6O5SP-a6St0rrqqqcx?%GQy%mX?mk<yjZ&LZs@itSXsZPfw0p1BG9ehh>e(BY(C#GHcA zykaoBuLE$5P?&f~I|+#)=N7!oEQJVhxJ_WY8(CQU_rltD)}KU9se>HVJz)-63gA{| zC?I#i!XhicYM7l2eFLVOY&frrQ?1V=XSJwKhQ-Yx%vcuw*o$}*czbg=L65V`BWaHi z_H?GBoTQjAtFky7XJEW>$ply@wiXsAcBmMiqy8BVu_O*8ywK;UOC)6nOA*=t<4HEd z2%ThPlptUiFw)QAiFZ}#*rh9%5^Va%S@kFQ7?4RF0JiXw`27-dveZTOS6N14QHOZ; zdpyVt3-|m1E+6Am-h&f_moj;HZ^(zYk!xb!#pJXvTi+Q)cF>3w?d{_o>5S&>fs|>o zPIo&09xi&*8CsZ7WboWDA(An%n-IrDGNMs130CtkOK3T-OHf#zHIRY~@jU~xJS?mu zjJjcCV(&m!*$^hy-Yk9S#M-ahXR3`6s^Y&lx^fc#Xl$$z=@{#}?$>-}h7 z->eOE9SJrtPjwdA6~62_9Bvj^<_l0Quf^0)5F9sm55QSz_Q5w%dLVUxQ%~?pG%*9E zKqMJ$x1N9(4k?NxE;Srxu7J0pacyW^m;U&&oWT=EYzDtMX3}@ysiRgNdbdCcuz*Cd zP6oQy*6|u7fWei7lMs(-^yAFS)0LBFUV5=|?9}sd2HXKpRkH{DRxNC zx^=*g?&zD0{uc;nFd!GH7&xLL7e9fMjuq^}_#hCgv!3fn)xH5)7G@}ux>q)s3@Z*O zHB)HNiFY(xve2f2@07M09RmyXq+@DV3o{ZAgYRQx9H0iKcX;klkvsUr>Z3>g5N!`p_yMY8_^ zpOO(3CtYz2U}R|%r3TkDHB&^|%7BT;{WX;PLmDi?x{Q+Fqv09L9KD%;ptQ4er?r3d zgT4C{OAbg^jBqd8_d#4p4lbChV`A;3f&5C7$tsYn#xi8<4G_k8LR(h!GqdpI;hnVL zaVhvFbRCty(n7SCJ{U4@7ZJq*sxd!LpcN&=>StofEd3iMrUDQUp8#G%TB_{Q*AVQL z&9qb<#vOcPNnfKcmNW(j2d*=r287cYxRZvu-N71HN3-Y4_$c)n5BK2^I}M#@4)NOt zOY>=*m2cQ;rR)S5V^J9hJblYG(j!OgL0jEqi>!TfpH84^1?AHye~Mu=olaH5lyrY6 z$4JV@XqEgTP9le4I$(@uvUTzJfIo!uup6i%0mh%c5mREu;xd---iL_WIPY++WHc&tK+=Zw5 zYe1&vHZ0uZbdOX&3$Y>C!9k5D9@NemQFtWX!^y-G3GhJIpL1b zVNFwppcoShARGmPQfsOX0KZAM*9B~WtWFK#OH2`DB6CkQLqLk%z?u~TU##mg%{wWc zc)Jp^;tSy;Pqwh)21GglHO^PG1C4&9UT@D)t_&2Na+kue9ZVfQyojjn>N%R&htZ|r z{OU?oB}<d?M6LJ(OWjCgeW;8e9RPm>ZId)6q^3$QP?ck>lhNVMB}jWdwlCzN&{9) zF&{Xnnz%6E38Iq%cA%}6F4uBjo;^AF_(#0sNVy-uI3tS%0|<~LVysb?fw@dSwL9q& z+aVg${XEJfz2u7%hYHPc5Z&!R7oM%8$fVs6hiv+$O{nc=p}fHSGn__WbU*IS*4wh? zQDdqui!iR#Eu;s8qz&j4BJ_C6J=m@%i^YJr4SdHzP7?7~^me5jJL^y#t+iQ*yZ->e zqy9Y(C!_3YxG?!RGwjkq#q$sN{M$G%u?j8J*1U;=`a8Vq@gN3|$V>+dazSJ|f-1%+ zwQD>iYhJn`2Nsp;kh=m->bQ~UFFEXC0oME~WosEH)&Zua-vu8KIt+G>^MRAI{wzOC z_rXTAArH?GOAX*Y&<&Tm+cX-@91*mqa1t6<=x)R6N1#R$HEHf3F_UZSGw*2l2Bsz4 zv-{-<02p<*mqmcgL2|l;eps8o6S?R$$+#9A$ps>&Ld2pIze=O98nR?|q$onY83IWQ z;Km^#r21kLdM!aX)6FF`KTk({K@Bt5K!MN2+L4s1@tfv&v;&Whb6W`sZ^22lkhY#_ zEiAyA%Hd1(WCS?FRDP8=F7q%r+VNO`lyQJU+@qm#4x2>y>UTN#BPi=2zLvMf@QVq! zrE<_aU%g4jVu=3z&hS3`RRHtM7<9vaVqpKZP5c3cLZu2 zsyuTY_EH7F4L;bOo;~?)Mj~H|E^Az3j#uL%E#q(rvqcv!wrMZK1>UM~3;@dfDDH2W zFG0=zkQ2m#-)lyD2gb68InlyMe@G4Rnluy8=o4#$5ltJ`#tyiy<~lYT;=hoqHJE~J z-2fuO7-odbX5_fR;_qZ`WX|G)P#*Tk`fJ@9;t%lYrUR@5*>7G3OTJD;1q_7I$Pqp1 zm=3HHscWvk(5(sj=zkYh-69{FYd=_mY5%PPGQ+Wd6uFPD@!1TvBoC@0@9+9Q>y+h4<(RE?99xbd4BrY zI1AeKRb1+COVJS2J0KK$#Fv6CPx9d<9>kg0f!5R*4}Z#gTbLPXNKNo@_{SuWXHWpi zv3>DbD~ZoqxlxEu@--J0=JTaLPb0W#iBf@k89?CvNwjB>z>+siqkp&aUI+_mWS2?y zef{gncdYOR4u}pC$6QaAqI8I(bTr`5UM@OO{8X8 zd9W^9WCsrF5s=UzxU@SA<>>A+X?#jXWOaba%fR!06TOZz00@;ZgIFT_a8F_Hv_$EV z@j#%$F~U2-MG$dFJ)j3ig&?)LlL)Xjo!z>HnTEMYst$bHuV4)FpiIe}$Ce*p46+se z-YN;8$#uHe@B`{n|0OzMJEd>aHc{BF&Df?k6FT3X^ePDhOnlAH*^)4jr3Q(2&Tz#g z`htXxa7onW-`=h^B~o0iaW^RXGvWimA{TF&VfLg6=1_u+#QJz?2EkD(o%AuZ;zRTE zQ#z#i8B%N$Vcez%r8`k}PgD`Om-aBP(m*;$h&1z^sV>!+9y>cPDqU0YHb9T#fL}9s z2q(mH!8=?418{!Xddt!|s|y(@5@hOkY;HJ#@yJZqFsR)hszL|9lF><0kWB{i8|F2b zb=R2KpXu8qNQ4qhqWvfs+uRHc%DGD_@vuavNEDQ$T7rpPdMC<%5`7iTyU&Oww@nGW zJ*m{o*z9c`gw49fWaUa4ag#w5Bur6MrV!wuypOZ&U!YO-yHHH0bh5&u>V85^C3BiBB1{d8t9YKJrwBxUNM=zf>L^SR`DLf5Ub5-{~6{=AgC_+BC;k%n~-Jb z!y-&dY>Gx8FmfiLRf78K#5%eSSP&BB^%F zLIk6$0=_bOgfGF>Kt&NqT2!sm*c^C8897zb;OlH~BW*g`Jvph3dYzl5&!f+uXfmCd z7HN{%EP}mj{=3htV{|2jW#9p&DKfOViUNXNXSd-NmVYxjx*Y9Gk`oZt>C1(~)rY-N zn!xk&);FdPzS|qIW{L?1li?Eai~w)tC8D$Go#@`}-zv+-bPWt-IT}Xd1Y_}%B^E?4 zp5R5|<%&>)F)!;WtFX!FJ5nlX3$xNufWczgP7RfoHJ(-YpNTo z9=D+5Zh*}oYMz9`#j3VsVJL?lj`KoOZct20F;|it2uFRd-O|;z^{iF^nWR4@oX|=K z)0x30P7r;BK!ioj9c>;EEB*Trq$(mvwV%N*bq}z4`vy#%PVp^66o-h(jY2ciDSDa9 z*jNsTU}mHEda;Ss*8D3`$SgLX8v@#wLE7(Qogtuq@YHbr8Ju(N;Sl2_R}fF8Jr27c z3*?c9kcB;->mY04Iyi*;Nlj#{wAr*MAOh65oj}m|mVj(M=a;@$zwl_UDlSXLI@>08 zvT>hB;%1tF)>f^Hbx$iROb5N}b6Ck8t`iReJ|$;p4k-l^*W~6jf<7YaS9S<<&(1vi zJj&9;O_OoR-6^lZCG<2WfenOu5^kcJOnFciVes|i34@J`@=KgjIp2mmP%Vi{qLjXd zfbeBYf(fYtqDhMdv_uUU9cg37N*@b(2*~uQ9Xggj44M$NlKCDIa5ZE8$Szi-+K*q*hNnB#b9noNnjC6&LR4-aRp>Gmjsh8Cj+kK@F8j$jZLF=lMSKu+l|mssza_Xa zX#k}6xAMGpDcEh#4%(>>D77?3aX((_lKTI*E<0Z!Xpp>AFRPe zBtVm3#VpIV2Hflb*AD&?LxN#~&A2Qk5NsAaqzEznKw-DWWuykcjW%&!;+_;=-34|W z4o47+Ml2Z&o4*3boQ!!E0KW}K{7ME1BKadm@bnrY+Whwl#euas8rqvXby`6<7Mj=v z*uoB&*$x)u!~0o_O48e18w@)Xx!dpt&>e`G0>sST_48?4%>sf6&gLCpd_>BZ_c3nX zf%w4DSl&22APaH+JwBzvsv*HS=$bNybJ#RyGMZNu8A!#+k27MKz%`=chvaT*H% z8!fCh1cuT}J6SJas;nC{>)2EU_0e;z*+c?`m_OVmPTrqrKPJv5FYB$-Pu}Q@O7Hum z1YyGH8PlqPBQ|P+f{UEu(Ke9aXsGx+BM%U5fcb_`zcTyWOVcy6N6*Z@e43k2_%)<& zU@w{Oh%dET=PMPMVufSa-|SA;H4_$fnK@#F&vOr zp1f3Ws=n~{UNWM9xgZDF(8w5Ws!y>B*Fh0(iESDK>c8^dm;|C_5>la~Tt47lHXfFg z`^fZau%dKSJ;v7Q)xi{JN=o_wyHzBoaN?40g**5-i+_>_+VF8ML1AT)Vmz7_guztd zsHmq{QeH9W?x}x)+P_Gd@(51y#W6?|xOCj3@s^#%&Ne_w_L+Cx8p)IZS1{l{s*#mj zqglrqv!p(xoTQ~icXc=7&^Nk(CMLa1Ta^hJFlo6A35dHVnNza-1B>l~7)u0JkoJmE z#74YvR;&+o5~NT9Apc3^e6fqsJ@SRmoj7`2^yf>bXP*a60{fQ7T&M7Z z7)P6|h~fs> zkb6SsiqVw3t0nH9z_ok1w_vr1Ekw*Y-?8X2q6O@M_!h(!qMe5*2A3gtH;dsA&Pr{- zKG-QCvkxV2n2Q97Y~*G+o5R-(^(;z^G%Xx=v|sS@A^`CO*OGgQ1(w4dhj%X=;->7V zo%4pg68^$nRTq#2%2w*$Faii8Qaisn?CA_nJo9u0C+|rHXEc1xT;3Uub@H3Y#$YOw zH+CJZC!%@x`q#Rm*<9oD&OP2P?1Bgp{HD2J%J%K~aBm2K&99dI84FSh8@h9A_fCQL zSl-*WS;Xe!>DIz*B-Ac(77%1(pbXj{D**2u4IG2#oHt(LM)T5*f7bkB(`5^xh ze!W8W&a#2o!8)hULn&Plz+Go-U>7J*QCz^13e8Q4%deitZHUHU8YdOu2gvE3!4(&t zSoE>eXInk>zbOs~q+4IU2ipVdZ`^Ksb<0QAAy@XZi}NSCJpH2P2w`9KEW2bsN3*Cf zlXgr!CwI?)*VE2r=!oL3F)$Lm(Zx9q;zDqaVNkrb{$YY#&2#=Z_Zsn-um)P-IP!yJ zEbqdJjAeI2<^8C+bsUjqfO08bl2NU-cg@(W_XbRzLBDpP)nur!lk%Yt9V$Xn6yw-c zIUQxpMF!h?Al^Yl23I!T5vVz|s;xZ&FVa4Hf6#~ye)ra8zmVI0`3$LuqF=_&*+7J% zW9~MR(K2tElc{+w_>j4EFGt1R?B>_9H@mUK$#n-_1e%da3izT2aUnxIqIbyS%U}sY z5aDROlT8Mj&XgUSUy7`$Ct`DBT6Y0S@PD9WC5NDFVC)P#&3&c!n4# z+f>UqM89_w`?Mlj3a@uH6o)ijl|$!tn;lEf^QbKG=-RQ+;R0o(TdC?yf__gE)b{2Gfge))F_JW43cc$zbO<7PskHqg+>dRU zx*na%nYe6iOv`x6HYMbtb7rvvA}i2T{s_%Cnu@F918ob7HN7Lphk`4(}FC*zapXTm;dP^`Q-Ek=NW~IGc_%cXX za^dwt%KKSlmWPmsw|O|sgLuyl;=9l}u?a08E19vTH;~OW;yhR1aR(M*G94K%YAhY@ zi!Wy6eq1Y8pFKzJ5RrTuqKYCJsq z%IOo8W6zy9_5xy++65osgW}7~6PH|copU^iyRt{B>_OPKVbPaZ+<8eaLjR{M^#{r%#3}l1p8XmRl6?0o zJY$AJTCeq01_f8>LdP+y>XmUNGwo}n=jOMOv{w3*d|qxu4AeSu*5D%P{1y{ zyC6jt%w!^W@{~y)`qF7VBfWI$hrahO=tJN8(0%PwXZjD6=|uhg&b_->kn%Xwna&g% zEEl`?o_p@O=i_(Iy$a{&YX(05_^*HC|M0tp@$dXm{Mh*Mwqcm@Hf}t_GyBHC+%iqx zTYYQGlE0;`lKi!|Z24Q>D$C!>Ruz9s{h7h+)~so~XLz<({><>o53H>kepS3GepUT* z4@z5ep0#1rXa0ku*Uj{t8w6qECcQ9-*YJD3HyDOd(u$L)7wmM{s`$zI#3T&g*fKo> zyqVzZl6Tpg^=hA$!P_P8YuIZ5awyS~$rE^DbBxC1{efwy#i$4^>#zVAngADvuC8rR)^ z-`(!}&e&NC13#@qelm)J)aI{FsW1!PTlik5z!z~dHpfQG7+bhvLL0^x=33oKXId?e z*J?#ow5gX;JNEnCsEi--EK>nRr&(Frstl1X)xRkI@`{D*4#aJnt{?atW8ziuOf7 z>cR=6)mDq^*5dn^U1v<&oWqQ2_3M`zbCpNOoXm9hT@j3#5$iY{Xm z;j&&TF!(f|a`mQ}i^<&ccpOtd7N5wHv{7QHC}pUS4s|4&;boQ=ntQ#Xq;ZiCIORz0 z%ER%3%@dKW9vLT*gI)Osf+t>kpIVF zbT4-N`)()cA3FWsJ>PL1uh&T&_!wsxh5J1ZPUgTpjOkRmy?)>6B~CXA2mIm3H3y$C za^j)i>A8LB3!mslJwI+Z&gQNkfh4}kK?r{|7=(c{gv0WqKqwBw;i&H>c)#llEoC2# zn*3Pp;c?^~h9jo~M<>Hi9Ghap)oxDsX*N|ya^(((4NZ;wwuXn~_{tKfMf!QCyR%eR zJ=P<~?UOC|^nD+~$OiTNZZ8o2^gyFX+`bbI#rr$GAZK2w8-BV881DCDr#bMG-DX=D zfQ#`vNt@!*lBM@nfrCQXg@|R^u2Uow?}nqk=WP2OsVW{bHYPI7CMTXlt?u3^hC29&Em{hgSW(XJuD}AoBQ?~6V5h^T zXfLEZkT46SFG?Ds6?*;fK$B7e)5=g(Nd{%C4B>$r9Xh(5s0c>}icq5qy{W*>x!}PW z1ypP+wR2=~sn}{op-p|Ca#m}{g@qmTdmYhPZC1CUa2p~2ka`Qn!1DG2sJb%jC4T5{Ys+*3G}?O^vU{1w^wf6`rzjE zmCc*$Ypspd&CQ!@?`>q}2^C0oF}y6BR>rH6gyYoUt} zY4ry#)D#b~$WVgy!1Q%KgJ*9HfWccfp z5-!0j60$biKNqmqxIxI*$mh{+h=ld@p#AQspTtf2O678kVdl^YyR;Ct(Y7VM*V5UX z;K>CbU%=ZiZrp;LK0uU9XEM4c=Oo-I@H@dEQ|OO?Nq^1wIs8bB2gXBlYz-?t!KYGMjz@4Z3SWF3Ju(!<`{*THzA)3-R;z=l$G{;IxIsknKE4847fS%G8u{l~ z^+r0M8Jhs@h&U>(#893fN$u@0>`!q|0K@Nf;*#&JCjW3U_XwEY?jHKk@ z>EBvj>GRS9^Opekd-k|AwmkdS%zeu4f0>5y0o($#YT7eoUcvb)k05J9oj5}P+-Dva z%C_ysa9Mr0D2YC#FX8J=?B$1!sOm{f@Y|qBS?nr3TS3SJ7}1%4k0AKuuG^Z z;Y7ufXw#1D+jV6MS@M{M?=a09zUb>nmE*i3N$09j>X zCe|M8^j+ib`^Wa!erVI8+;7&Fl!r0`S9B&1~83JjKDlF z#;|YC`YQ`j%UZS;|f~e z>KWt8c=ipsf=cDn8|Ysd&#=E|i`S^Y`Os@XFAkq*4M+qCm=Qw}NyWa~Z4qIs-Bz%T z>gz?}aF_*qB~j&ew2=`NY1_{#AAHns{+vnhBsLLr4dHc(_jaRjw6hCm#Dya5E)WG# zy(k>Al)+Gt05p#U6Wa42w>BVz0WqgyBKX`LKA}^PHb-tgi`suL47K z`XiYu;~pD(aFlUUXbd^(5YatXAS z#q`1v^OI44>BSvL3=qEEZeelj4d-ST94PoX@Vy>0LG;Yo_d-7omJ(#BU=hqyKak^K zbe4CJaQ2QAZU+&{<4{;E2vIv&r7ulK^blrBUvpON1YxSC6TRbP^c*pi%m{-`W+Ri~ zTym!Mm|Qc!mRry@$9Lfil~SmMqJqhAxyErJvb2I@@Np0@Jbbsq%&DnU*4q zO9J6392U7f>N-RR7v0+lumChgYQI(*3^8zlEnx?W#fAgj%cny|GCc$dt+jio+BIZ~ zz-xKiM#F)j#H;`?qiQyt?>1h`-==13Ewx&$&3ZL00j&VEi0(&A@Nm%;T+*6&ftX@W zXIJlcd`Yqar;x)W^_nV0EweejX<7r7mRhm21jUJ14oa(?Q4|pjm7$tRoZ1P3W@_`t zX)k|4#RYNDzSm*|0fm^vYtPM?3s#N3-mnq^yA zZBa!6#gZbJ&M;IF5=_A|qBgpDaq<6x8x6}0IB)Y29liaq>?x3Dj!Uh|(JM(6WkJ+?GXZkXFouhaqrv%%QQYl0ow-Rdr&fsVCFSU=D^IHKHmm)1cJH4 zyCwpJX&ikW@bA{Ryf>fB?=9ea9^b`oY2S!$eT*>Sm5<9mFME{@6vEN!0>aSD=cRGE zb>Wx#-2nrM@$e#xohZD|!s*xCO+>Sgh92x$>8timI%(C~t8&R=`kq0+%qnu#+4h;w zK}Dg%3RmT*MHNt})JWE)-lwb-`ki-wQW+*2qoBUpar^&B8K~wo?&iffcOl&0AJL7WxKjX-JK4*QzwZ;$f zx0r2PO{0xDBEj`hnV3ve>e48YZv$T0SZzPG{ri4r?Z(MBKMJJ&0O`>!okE_XEmuy= z`eyx-xEs0y_!xT+<%)<|Sz4C(oz^}S9oj@N=QaX6qJC_LLqCY#VY@2Im_s~GZRXW% z!?1`p)%6VpHp_6tL6}xn*Vb3pHu3l7#=AFfr&avk zEKN->J*Tuy*ho$Pl>3UlgSKDb8^4Up;`y3cfxB8TpEF;0Z2w}xdJgxCcrx<~>%VJd zY!ytwRaFp`TKmbIPV~nN0XY-}QAvFB^s$Kt1fYrez=~!Qq>BKTW&)2TKy?1t8e0$T zM@IBqQpWC(^#FTAV+&w#o(X2%a({~o`4jwtcmf8b9aJcg=S!s&Cbp8@OZ^uHhNKGH zQn|M19IG4lQHc|9h%&RRW1$dy6*`rLwkFZcq>{uT^~@!*3lJ6C%yEY7>-kD!QIGscy2!B722#=DHN=Wg**eR*(r&b=&QnRxS&GET(A(*dI{d z^a&gQhIQPm5GHsJ%i-pb^F!YT(6M@-JOwM;D^ zx0rGnB7@*g&vXMVJ-v}MO(Yu|K7peY3{(ucsIJP-K^y?R*v=AL)6kmQ-r>8P}cXa9_E%#upYnE`YLls2tj*uS5SK#Gyg z)aDYNyizQUB#oQvcT{CWN+ch`!Z7c<0P{E-(9s*MpwCU&0+Rj*{5XxIk6ubp92wiu zdCv@hpdVPjnL94)(ntk(xip2Bzi|pLFG=BK4S2Zd&hzdw6BEm<3j@04rBpv%t#oPGjZTxblecu_h?2pn36r4Q7O1d{yEGWhY%1kdMqp8vxr3N|Zl4<0kY!W|7 zLzarK>v8Ygxec`IvtF5*B9!bv_V?Ru^{xOU^it`)NWialn`jwbGIe4Lezc^s)a9mB zDDuRM*&a$4Q+1$8HlX`*1)I(~5PG2>?(vu?YP*N?2!{j`@XBh?|8+Gy??1_6I*|X4 zu64YgzvnpAnRc6O6zviFi&!9*M+y#mLT*wxxt0@4%_w>sj&1EmbRB=9cX6qoQ)QD? zKDfb)>@EF-cWb#qP^;%&v6w_r>Hy`(HU0qg~@jY8u#?p_&SSlM*R0N4{D?7+jTz zDMir2BIi3WD}6aplUZxF-&1IMRv)f4UYk_X);4*TOfi#|rA!;$fgG|N(!+h!#U-85 zqK+ep)N)*EdOaf-?OwpHL(F4Tb`2FR{6lpM{}8gxqf5p0)8x`wf{7Sd$WLeUQxNF_ zGLC`lO3JH~Mdla9rR{LpvJV3{e?zCun4kg6Xrq*5$Wna+OI5}WL>W7++}T+Cw1Uw4 z{J5;rPS2Emi)w%!j^iqdSl=91AC?{=NMrxO9#@fc;;$r~Jq&VNPBp^tq(Ur5ln&{A zQ5p=mjz|zk+bn6rNvd_vHm&qIpL}^G1P|N<6ZEb9>-(GEPesXJd=`N4WbmPfM8Tyk+@SN^(Yi09KRgY!VwU^Osxi{cm z=pWYoot2H%)vna4T;jY2shq*Ma zOwBGk(2@B^YzJWLo-06A(d*JaI{;#hY##Q*@SYr0J1x$?%om8H`B`EhTWX3Nr|bFh zmLZvMPs{8HO__YQMp2*5{}A~cPr#6X1KtX?^!jq0VSexROj*gW1q983e#X$ZlA5!~Kdp`|!Sk?{)gz7jffpN7;B_?s13NO00)C!~BT% zrO(Uop7z>_`NoOqoS1LbZ6seXDRsKm<{Gm48TrGg)xuW1R4=F5j}9=x7MZqi^J4KZ zi|Upg2o~%@cI0qOIC_-?8OsF5l>&M<3_LI4s~thQnE)Dy~Q^y z6h{oPQHK|omrr@&0;Ti%BvJ05MI9F~GiPvvPW_v+ J7D|^d{STA@EN%b* literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/ctx.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/ctx.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cadad39309c102dc749008ace7166ad0605e704e GIT binary patch literal 14692 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/debughelpers.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/debughelpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04e9a60841797b2d8ca29bd9a236ca2e1faf966b GIT binary patch literal 6023 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/globals.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/globals.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8184213f4bb7193f7e53a825f4ea7dc0a792b28b GIT binary patch literal 1593 zcmb_cOOM<{5VptjTF-N5AIWZ#rO7EPB{M->R}ruZ2?C-OyMS;MS>EZI8Sl2cO?P`< zSI+zZegX#${1`6g$SHpT4xzg3O-3R|JeqR#SC6j#s@$T}@g01A`{Nh*z3w=FnZ@Q) z!^J0#USXBM!?(w(NiC>Ztjg+1BWSn|cvnsNgw|-CZ6$u- zqqRmGtd+Ebw$+=ccY==9w@~i}U90=7m-K_a)mv;k83Y5=+rbXhXy+$4*ri?AqrDRc z8n6pHwEuG@*r(fw4GN6zSkwz{(OpFMN_4+OZ_`_d?w>gHc5r|>4>0E;Jw)t|^*n?F zoAVC6i`cyaqem9?g1htsM2||8l;}PBA)*9xR?eN{`>zd$$8O$=I2St7vEb?juKiQN zH7xaaku9PLjdm*o5J|!a4DyBfhghXk|;;}7^jEkg0-@ll}is)5}7RFX2 zfr#UJ7HP5)8Hu!pB-KEP79>+ZCK(@_qeU#%tHO^1P@uk^0U2jf0@s^c4atQdO0YSg zcdQ-~1)5|jiTI}1O+o%5)-z)m;y)~_d~iG@=V0Q2P%+LD+@d(fL`aed2_)vICKep7 zI}<}_kwGul`z2r4fS2$1e3duC@jS$BkhfmOFGa>_m>{3g6l4=ylQ(P)dYOBuNc>cs zyj7mi#O3Z(HV|C@`5v-m(W;ws{hve|=CB7y=<|z@lK zxscda!2GtlR>+0v zbC{^9Y@6i0Fx>dKvB<7T-#230*lh%!&_)alyko?!5ql_pb>w}c8}awc(M%*Tx{8$G zqjNFQi%7!Avi*qTeQ~8m3gjH*XbyZnV)5lDUFn(N9}hozJW{cSM`<*^#%WbW)M#4V z8^d&!H%}5lGX_u09iu)&(RG@Yw%e}MjePs7di_Slt-9Se6|eqQR;&L-2XFobT;k^m literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/helpers.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b6764e5e36fd6bcc7c52912dfd3eb5d78fecf46 GIT binary patch literal 21589 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/logging.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5636b15cb0a73dce907a17136acb2e45929cfb95 GIT binary patch literal 2556 zcmZuz&2Jk;6yI5|?X_#?t7$2vz#z4xmQuT@5=d4Q0cq1#M5R&!2v?PNvO8<9v)*-Q z#z`H83e-x#g&PMrCC47P^N(j!yG~QWO5UB1_xYRme&e)WuUhc@_Qx;$ zV#Tul#L3C02$PR3i^!i~5Lf|;ts&_Uf@3?jJGS{2ItBA}Iz{*v;?l6(DT9m?6k~T- z=~Rfti-W3If|XKyW?1XgV5JcRP7CYXKZbY{4HILqrtq%+6o4(DOE z5X>EsBlP)3a5h*3nX`etX*Djqz(^ZJpJ7RoDyE_|k@sL;-AH{F-xulQ$qSN+lm&k@ z=2F3K;giuwmjqX1k-T(ObBjM#cR%;h*2%|)$r@(92m@t_va$vwAa7cmma+#0@Ncu9 z!TNfX1XT4o9i~!IHX4a^BqF9bFlZb%u;Bdbz)B1xIA zqFugB=IlSfgPSa|(F|k*|)un^Y-yFvfhAEGZfdN2ve@Xf=og_f)=Z^!`=?$Z-xCn#qAoqtZ<}$E; zuy)9o7O@@yK|xmJ-gBah#$ChKcJsO}=NX9w(9BAp4kKMz>2WyfkyyP9Q;87U-(Ilx zFZY@38Ux*2v$+x@&B)c}vC7tZqp0Ukg|7=NnP@lHle&T&!Fs?Ex-^0cOH{)aSPQ!B zj|I-NfJ|s6s`*piFJW}&;pI9GaqJ7kAtl=;j#K*E`OB$@w_$7l!v|NcG6`4@c|$&= zSFV}_5{6Se$}3lgX)umq*2XcH5=yrrAzq-d5?J_Oz}FD)HtZ_vkQ`V8`-lMO)}SC3 z0D4El`>+UXSwhZM;pRg>78ZDf`Bp;_mta@yXkduNBYj>!g1oay*xFvj5on)a`FID z)ra2SW-{_oeaIkOq}N7Omvcp3fpXu-SqgE~MT3(#3k9NG$Z!KYSQkzHrYv<8g1(ax zik=O4$i}gnb`^BOJD_RW;T1Cr(*<=Ou2RLj85$pfm_+Wb)oXT*xONr#KrF!m*eIh7 z7spO!Y7Q67>U_3pykL!ItGM4-)YWb`9K$~Y-t7vcSn)2t@IR6+smTbC(nRT*JuY_k z`M3vH5m10Y8q(!noNfajWS32S>+Acsx@&iCt$lX)-fdl#ERj*#oHmxB`wWfxYv&~1 zM_V<(ZQTH_xX_j3p-JxqEavJm*tjcME3e`uAt}6SmTSAjB>;|H0)Xs7jZ|yZa}KOI I|I8Hs1$Elj86AedmzF4^fm>`)zNWX5ysTWwJ}z*?d7wQmGXr-@G9y zaqX7td3rPR=6(D>e*cg694;(WbNKzuzx{>({x@^EpYvw&SH#V0xttaKCn{dfv%0yS z)wC?u^WA(iFMkV78-EMkVz1OJ$veAS?vxBC)aRS?Qm=Gt zy@loi>T_PTyVyI|JZI&6`(R0}yYeD6Z@g1oJDFZM1qFZC`rFI%}cbKZit_(9HF z^h=Km%`3P+=PluW$zSlVJhq!x@#MUB0Z%UYSJC1H++XxA;r`O&eDg*B+~ZvH8lGMD zuHe}f|3$R{Jqi1)*IswMtzfV3#zV#XEAMW;z2)xu+i2o#`6_U`!HKWfa@Fm2cihh58$l=j zg{23+wC(Qg`QG=o?r%&rF5d0B(P2HGlsEmK4E-ohDw}>Z!1VkM=REndaq}Aaw}OhF zYg%3oJhPew-}Y*r?G-<;A6w0$Upy#*k`;6B%{9wjwOPRh>Vq1KNo~uIBGBMo@G$6~ z++KS)aQj~5xXz9n1s%u3#PQZu$Iej@?>muh?YMEQf}LUPM~$SUd{CmF*gIj^?QoUm z$2zCF%Bj{+8Recp*u4BlWJTfR_V#`dIm+Md`kgp(;(gy~x39MbzUsMszaL+3x1B@( z*a`abj+1F5)$#kgpmAZ(kDpqJ9r@ker#W>Qqdfc3@_yL!mk-=1>@RPHyYZ2${N-KJ z_g3G37#~E-k*^;3YWacRf3VyQc9sXn@qXC9-FWqt;6`Bi`qQ>Aj znak#P6@x{26t%+1l}SQ2vL;FKf!iJWiM;{g>9DQ&v0lI>#92Zm&W)_c)(8apHuMk# z%5SLicwV;@U)S^M68@+cSa6xTxWXDI@)9nY%u@dD_6Ay?;~V+X)*rF1pT3A%y_!^7 zt-jmyTP+Z^)eF60m-Sk!^^>97P2ZGTEidfgab=)FEGs^i(UMZ+$FZ-HLf=11D)>0q z4SX-DxSbAY<$DuTl*!6G7cnju5nVu0$=OyuU$bl*SII6`ii+<$xTbytEBvgeiE>id zy*vOa-z-w~Kg{h~5cIhZ7MdmRvfS0Yg%4^F_>0~ZxhI4yK={o)0c4>$_aQ{IStT?i z7q|Qlbb2)m4+B5tr#lBJe%+0Hrvv$koZV0vEr_TjzUPE}CjuUz){!rxMz!kTC(>;+ zhA`mwJ*ZK)iwQRt*Y;8h#_^xU8yIs2~SB0MZ54yBWJ`>xxK z{C2w`w|6&^a?lTAVBE7}+_=*}9t+fzbW^ga`uJ-_6iu(_6+HU``%ym5J#mo_H4IgKDxlr45c`SqY6EnNciwsKGN8{3fe&*PPPnZ-pG)9R7Th5goWKsbLB zZzImDWL2$`JHU$tT5V2!)^)=`ZR9t)XA!6t1HH zF3q)CA~&tpgu2%8?k+BwN!7YwpS<)*Gf4^n!K4tyYKp`LK!n6pC{3H#0(tWz>mzF` zr@n;8n3hoH2I|Rts|COW!u47$gD5xgLVcOVSW_Fgy@x9$R?Ry3-0Uf4y(MMO-*t!G zxI^BX-=rLTOx2&BBxPX6G!>WgG$p4@Zy66x&ykIOfa_z;&_(Oy>a00phR>andWHR- zp;8qJnyyB@I%DM9c=j%ze-*{augn^C+(X^ksM|_};#c{N;IfF2tz>PtvZs7sFHJm^ zWskp-_w(u+Klls_YL@yei?Ie!x)k{*R8*X6vXF{l$M1HHC@05n5aSkaRyO~Es~{;H&F>i-pX6{FHg=-@UbB+ zHXzN?iO8_@G?r#cO}#c#n(5aPtFT6mRlM3>*$m|M8x2T5?(F7R4!SH&z~>be}=b{vhCaOIP&l^8mWwzy=6Gv3y}7T_lg86 zHr(r1y$jw&Jgef_CGRq7^WImzE8bPqYN);7y@=WZ-d^)QgW95Z+xwj7pmxstn)i9{ zWz?3uuX|teuA_F|`-b-w?-~AdmK|#`!eG;bYmYU1Rj)ZGKA^|hdv0OGRzrthdSs0TV;0^1K*LP=AMUyUa+HD3uh~*^0)gCZBt1d~Qsg)A7 z=N|g4K5Rk8TS_NDkNEFq;waO188L$1sq9jwWqPm(WK$|NAjV)2s?1?N3e{l-sYFD4 z|C3<=|5tPZo^onHAUnIT7`~SZuThDWlnoO|*G?%X(}J_D=d1mA@%F(T=$8bspu3*k z6p~|5OgJ_|IHi!;O2%>ne0TBR1iX`&lN#k|vSKozANYjm#Q6IX1vi8fjg&}mUsI86 zPs#%ZaK58?cEbdU^-Kit_U!j)fA2Vzpmo#fjk*?-d+-edz>km|`3>kKQwl;4M4{P2 zd+sqk@7eWuVjdqY>bSTSKv zmZZTIOxM7pxh|?DA*Ani_GK=VKM;f65bgjp3^0LW-c2WnwX%dAEZSs2Qq-mjr{6}> z(T=}|(MT{N0U(8OIF^x0Rioh`;lWf7K*0A_R-9KF-;xjSCIv84&BM-V-&E`&ofY$A zo!6>yUYN)Eh=H5s{u9ErRnbspji|gC`Sr?;qPml+>ZItZwN<7;OhG^6&ok8xhh2|~ zNiK9lm(i&Q|AnGWzU~HlLwJZ-S=NtuiK4k6D??lQdI5M%Ho!8#k9>&GE%5uWdd9=z zyMu7Y2?as2zNVI>H7XKk(#)@mpno_JVGiLh8f~Wp!GFy9(LuiU$3QAbj@yr5M6nvt z1J~L2y93&+DIb^9IRdk@e&~2n0<#B_X3(HR`vEzLVwVfUmnO)cz*HTNwrS5&P}9;( z`oj;rFp0mq?b9^#^g2Xf!m(o1keok**?)=0l835PPhLKa1&uS!lLAB`DQS6-bk)ot zS458~L}tlGxdZDlQ;62dKdm2Az1d0=^LiqXp~D;Mz0IK9w9$4A@$^{%wPq{ zGZ)V1H0R#9fA7xv2K*lZ;fe3Y#zwo>G&f&u+|HIxtl7{`&jb$L#1b(c3AIa)hIW_} zZ)4oe-&ore88Vqjc9C43IiU^pHkfH*SfW;vR}W6>&-n>4(KPuxwA3lND)L=tvFpqS z&sCs^nJyzugE^_?MU@IJa-KPzAkd^8xNw4)RUSJEDfgp&v3x)y@Fz$;(Ts-1Bb|=5 zbZkbU(LBxK2NH2gA>X;P{Z_l3b*FiVui$9xLSiJWLj*vFg4|%T+py!#JMX-`zItby z>b-gY{x&oq)SeZ&0{cpze;H3rPwg}U7z^te6yS7{rPDnNCqESuNWy<0^Qg_2N}mh~ zZ2Vltsqdi&;N4#v4s9!V8rn-ag?Y}HJ^OKteL8xi4vq1crp8s(ftiVi#@tDj@C z+TMQW{>Izy&*aYp5wD)&srl~tWV<*a#Ae$6f;E3k(p8HmU)<91-`H}@_~28?_ouVS zcSfpp+Q7JJnO~ogPomlXJJGh*R^Q!RgVZ6E8fWTe;)HJcd@4<1gP!HTf;=K#Rr`~X zA!2VHF2zqjT3tOoj+3N%d;Qnp*AvZo#p_`@}bc=YLkqD9l!?T6x z1z%))L=6!`C!^@|#V_lKGC3RMw_v!p*0PUbdk|`GcIQ#nzL2TsW{l!Zy@F@hW^A54$Dx zyjuh~-w{U~wmi-1NL+8k5dJknhd{?04u=-(Ci&7?Wh51DrkRgZ2!b%88}w6eli%)W zU%>PsIx*(*bD-YLsgIoYSHw(b+s>w=Y%<+oSI#n|wi@X=*|+4_aN10scnmE}+;Uf0 zac>2iyy1~5N^KZ-l55#GCQ;Ke{hLjj*ZJ*_SxEj>3JDlQ0LCP2G3WdrXeW8(Qt5(a zTh9@LQy+Cs^Vz7FcICk5K^5G#!YX)-!x7q(b)SO6aBC!=mvT%j8$2)A;}9_s+_+xQ z7u0v5k4UiJS`{xBDz=Y|L7GG$u#8OrFeeoR@YeL3>Mo5tGVjb)>GK>7XMHM5m2rs) z#2p_ojM)*^xy`g6=@~iy>5rK?$oN5Xo%KfMj!nzv+TG2yt+!fhcUIqOZLa;`-L)+m z?$qw1lNhG%)OcA}ZuiJN)>{sz15d_8oWn4}p#j9%(P1zcfWD_ho;wyu;Dfr8Vb$1C z9A_n7eKi|4dC3^KS+j?S_jyW~$SF4~)y@ooJFl4pNi`t^j{s?Lt1VjjU(UeuGoK{o zG}odSgFeGS0ZHXZUi5jm13?qq`ItK--1Np~kLCUxk0oLU$(RHMrP8FJByjpn8^A4K ze#qo^;Dqf$C^M=IhLP;!kiRB<1UAMv*>V%&193yv%8ff&BOFkgaL#3P$!ci;fy|g# zR=c2?N683!d;;he)7RM~vfP@Jh7J778JP^}B#B_nOg8ZJL?lW{Ct}=0>S55w$b?sc zU#5LX8J+yV%WNK!#D#F`b|5OlhXCntFTmH#`v9@Ir$wWf(JT8rrJD|xrlO7^lV>Ke zeI{)&cAO=zE6j|rjX+f34*~5(L^$hazs2{aHr50lcOe(2;juQk=kecYAWlcAcJkSj zo@2*svSm^+*rFELE4Pv01Qh5cxy}?NvTlGD=_bIbOa%|8a0iAV1)cH9_)i5~h^{ILk&v+_5lqN&X*QdW7HN zSD*0y%=aQ*ge(319%@f3Gy4~UiQI4xTZE^6apt}(Q^S&(N@|0kbBOa|as*1P@%cK7 z4Hla$-evI~3vRlqAF=4L@L3$P=&=|(2$`3l?%)MmL=Fl$jBvv)SM$|cb*^ex7pj$N zxmv!*1f=d$?@_eET#QQph{)CQpnID(ig;y41f z?N#tV^7F}p7vR)J+|r(Py?|qzZZ}SF+{T=mO%~)RooeYr74EA0m9ZGxl#IajW{h;g)< zySOl~UX&DRz9U6}s+T9wnlwtRC@COUrAEB5nP)u3Hi3$-kw@3iqzeAn7Q=*!1@8@4 zP5!};tIr^GrkRaNbEzW}!PYVMow1q3PG-V|Aq-MMCe08VHH3~JK7?K$wtGb43QHc9 zQG-(8Z3Q(j1T|!n4@&Af*in8`@$dvh&qu$Gr*rB%cv>ZsMx{}CR2j`dg>c?}vaK*a z_heq5nvC8|?`!)0Q5EAXaGWQL@wrj{F-M%o_eZPPCL75+^KL&Z!AF%k4#UHZxBNX-Xr!B(R z7>I3n8I2MfX-AxJL<}GvJ#a!Ig*4@_4MvAuiX;}jVQ&zrV}8k#dTBEpC1ToDqn;Q~ z@;0%#Z82+Vdd`2sPadfA(a(m)E@h=EA1nxje$q6;>Ih8+$QDWYvs;Sw9MyQiq@$-?&g@2s^}-&$M!{`$t7 zV-uQGjubK_*sswf7k5bz`L?#(-vvc-(G3)}TqR#g gL9B-3@c5T6;qQ{QRJicc(w7&{=YF?z{Ziq70r=1r%>V!Z literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/signals.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/signals.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bd657c9935c1d22e89085deee9ed053cfdbc24e GIT binary patch literal 823 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 G;J*Q+qTLt( literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/__pycache__/testing.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/__pycache__/testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f66f1560e77ccc7dd7544c4664d62d19c584dbe4 GIT binary patch literal 9709 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 fDN*2@|G{S`b^KCzS=E+wED4c@fs)NT$6a+1;fb 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 H_QdRexEz(r literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/app.py b/server/venv/lib/python3.10/site-packages/flask/app.py new file mode 100644 index 0000000..d710cb9 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/app.py @@ -0,0 +1,1478 @@ +from __future__ import annotations + +import os +import sys +import typing as t +import weakref +from collections.abc import Iterator as _abc_Iterator +from datetime import timedelta +from inspect import iscoroutinefunction +from itertools import chain +from types import TracebackType +from urllib.parse import quote as _url_quote + +import click +from werkzeug.datastructures import Headers +from werkzeug.datastructures import ImmutableDict +from werkzeug.exceptions import BadRequestKeyError +from werkzeug.exceptions import HTTPException +from werkzeug.exceptions import InternalServerError +from werkzeug.routing import BuildError +from werkzeug.routing import MapAdapter +from werkzeug.routing import RequestRedirect +from werkzeug.routing import RoutingException +from werkzeug.routing import Rule +from werkzeug.serving import is_running_from_reloader +from werkzeug.wrappers import Response as BaseResponse + +from . import cli +from . import typing as ft +from .ctx import AppContext +from .ctx import RequestContext +from .globals import _cv_app +from .globals import _cv_request +from .globals import current_app +from .globals import g +from .globals import request +from .globals import request_ctx +from .globals import session +from .helpers import get_debug_flag +from .helpers import get_flashed_messages +from .helpers import get_load_dotenv +from .helpers import send_from_directory +from .sansio.app import App +from .sansio.scaffold import _sentinel +from .sessions import SecureCookieSessionInterface +from .sessions import SessionInterface +from .signals import appcontext_tearing_down +from .signals import got_request_exception +from .signals import request_finished +from .signals import request_started +from .signals import request_tearing_down +from .templating import Environment +from .wrappers import Request +from .wrappers import Response + +if t.TYPE_CHECKING: # pragma: no cover + from .testing import FlaskClient + from .testing import FlaskCliRunner + +T_shell_context_processor = t.TypeVar( + "T_shell_context_processor", bound=ft.ShellContextProcessorCallable +) +T_teardown = t.TypeVar("T_teardown", bound=ft.TeardownCallable) +T_template_filter = t.TypeVar("T_template_filter", bound=ft.TemplateFilterCallable) +T_template_global = t.TypeVar("T_template_global", bound=ft.TemplateGlobalCallable) +T_template_test = t.TypeVar("T_template_test", bound=ft.TemplateTestCallable) + + +def _make_timedelta(value: timedelta | int | None) -> timedelta | None: + if value is None or isinstance(value, timedelta): + return value + + return timedelta(seconds=value) + + +class Flask(App): + """The flask object implements a WSGI application and acts as the central + object. It is passed the name of the module or package of the + application. Once it is created it will act as a central registry for + the view functions, the URL rules, template configuration and much more. + + The name of the package is used to resolve resources from inside the + package or the folder the module is contained in depending on if the + package parameter resolves to an actual python package (a folder with + an :file:`__init__.py` file inside) or a standard module (just a ``.py`` file). + + For more information about resource loading, see :func:`open_resource`. + + Usually you create a :class:`Flask` instance in your main module or + in the :file:`__init__.py` file of your package like this:: + + from flask import Flask + app = Flask(__name__) + + .. admonition:: About the First Parameter + + The idea of the first parameter is to give Flask an idea of what + belongs to your application. This name is used to find resources + on the filesystem, can be used by extensions to improve debugging + information and a lot more. + + So it's important what you provide there. If you are using a single + module, `__name__` is always the correct value. If you however are + using a package, it's usually recommended to hardcode the name of + your package there. + + For example if your application is defined in :file:`yourapplication/app.py` + you should create it with one of the two versions below:: + + app = Flask('yourapplication') + app = Flask(__name__.split('.')[0]) + + Why is that? The application will work even with `__name__`, thanks + to how resources are looked up. However it will make debugging more + painful. Certain extensions can make assumptions based on the + import name of your application. For example the Flask-SQLAlchemy + extension will look for the code in your application that triggered + an SQL query in debug mode. If the import name is not properly set + up, that debugging information is lost. (For example it would only + pick up SQL queries in `yourapplication.app` and not + `yourapplication.views.frontend`) + + .. versionadded:: 0.7 + The `static_url_path`, `static_folder`, and `template_folder` + parameters were added. + + .. versionadded:: 0.8 + The `instance_path` and `instance_relative_config` parameters were + added. + + .. versionadded:: 0.11 + The `root_path` parameter was added. + + .. versionadded:: 1.0 + The ``host_matching`` and ``static_host`` parameters were added. + + .. versionadded:: 1.0 + The ``subdomain_matching`` parameter was added. Subdomain + matching needs to be enabled manually now. Setting + :data:`SERVER_NAME` does not implicitly enable it. + + :param import_name: the name of the application package + :param static_url_path: can be used to specify a different path for the + static files on the web. Defaults to the name + of the `static_folder` folder. + :param static_folder: The folder with static files that is served at + ``static_url_path``. Relative to the application ``root_path`` + or an absolute path. Defaults to ``'static'``. + :param static_host: the host to use when adding the static route. + Defaults to None. Required when using ``host_matching=True`` + with a ``static_folder`` configured. + :param host_matching: set ``url_map.host_matching`` attribute. + Defaults to False. + :param subdomain_matching: consider the subdomain relative to + :data:`SERVER_NAME` when matching routes. Defaults to False. + :param template_folder: the folder that contains the templates that should + be used by the application. Defaults to + ``'templates'`` folder in the root path of the + application. + :param instance_path: An alternative instance path for the application. + By default the folder ``'instance'`` next to the + package or module is assumed to be the instance + path. + :param instance_relative_config: if set to ``True`` relative filenames + for loading the config are assumed to + be relative to the instance path instead + of the application root. + :param root_path: The path to the root of the application files. + This should only be set manually when it can't be detected + automatically, such as for namespace packages. + """ + + default_config = ImmutableDict( + { + "DEBUG": None, + "TESTING": False, + "PROPAGATE_EXCEPTIONS": None, + "SECRET_KEY": None, + "PERMANENT_SESSION_LIFETIME": timedelta(days=31), + "USE_X_SENDFILE": False, + "SERVER_NAME": None, + "APPLICATION_ROOT": "/", + "SESSION_COOKIE_NAME": "session", + "SESSION_COOKIE_DOMAIN": None, + "SESSION_COOKIE_PATH": None, + "SESSION_COOKIE_HTTPONLY": True, + "SESSION_COOKIE_SECURE": False, + "SESSION_COOKIE_SAMESITE": None, + "SESSION_REFRESH_EACH_REQUEST": True, + "MAX_CONTENT_LENGTH": None, + "SEND_FILE_MAX_AGE_DEFAULT": None, + "TRAP_BAD_REQUEST_ERRORS": None, + "TRAP_HTTP_EXCEPTIONS": False, + "EXPLAIN_TEMPLATE_LOADING": False, + "PREFERRED_URL_SCHEME": "http", + "TEMPLATES_AUTO_RELOAD": None, + "MAX_COOKIE_SIZE": 4093, + } + ) + + #: The class that is used for request objects. See :class:`~flask.Request` + #: for more information. + request_class = Request + + #: The class that is used for response objects. See + #: :class:`~flask.Response` for more information. + response_class = Response + + #: the session interface to use. By default an instance of + #: :class:`~flask.sessions.SecureCookieSessionInterface` is used here. + #: + #: .. versionadded:: 0.8 + session_interface: SessionInterface = SecureCookieSessionInterface() + + def __init__( + self, + import_name: str, + static_url_path: str | None = None, + static_folder: str | os.PathLike | None = "static", + static_host: str | None = None, + host_matching: bool = False, + subdomain_matching: bool = False, + template_folder: str | os.PathLike | None = "templates", + instance_path: str | None = None, + instance_relative_config: bool = False, + root_path: str | None = None, + ): + super().__init__( + import_name=import_name, + static_url_path=static_url_path, + static_folder=static_folder, + static_host=static_host, + host_matching=host_matching, + subdomain_matching=subdomain_matching, + template_folder=template_folder, + instance_path=instance_path, + instance_relative_config=instance_relative_config, + root_path=root_path, + ) + + # Add a static route using the provided static_url_path, static_host, + # and static_folder if there is a configured static_folder. + # Note we do this without checking if static_folder exists. + # For one, it might be created while the server is running (e.g. during + # development). Also, Google App Engine stores static files somewhere + if self.has_static_folder: + assert ( + bool(static_host) == host_matching + ), "Invalid static_host/host_matching combination" + # Use a weakref to avoid creating a reference cycle between the app + # and the view function (see #3761). + self_ref = weakref.ref(self) + self.add_url_rule( + f"{self.static_url_path}/", + endpoint="static", + host=static_host, + view_func=lambda **kw: self_ref().send_static_file(**kw), # type: ignore # noqa: B950 + ) + + def get_send_file_max_age(self, filename: str | None) -> int | None: + """Used by :func:`send_file` to determine the ``max_age`` cache + value for a given file path if it wasn't passed. + + By default, this returns :data:`SEND_FILE_MAX_AGE_DEFAULT` from + the configuration of :data:`~flask.current_app`. This defaults + to ``None``, which tells the browser to use conditional requests + instead of a timed cache, which is usually preferable. + + Note this is a duplicate of the same method in the Flask + class. + + .. versionchanged:: 2.0 + The default configuration is ``None`` instead of 12 hours. + + .. versionadded:: 0.9 + """ + value = current_app.config["SEND_FILE_MAX_AGE_DEFAULT"] + + if value is None: + return None + + if isinstance(value, timedelta): + return int(value.total_seconds()) + + return value + + def send_static_file(self, filename: str) -> Response: + """The view function used to serve files from + :attr:`static_folder`. A route is automatically registered for + this view at :attr:`static_url_path` if :attr:`static_folder` is + set. + + Note this is a duplicate of the same method in the Flask + class. + + .. versionadded:: 0.5 + + """ + if not self.has_static_folder: + raise RuntimeError("'static_folder' must be set to serve static_files.") + + # send_file only knows to call get_send_file_max_age on the app, + # call it here so it works for blueprints too. + max_age = self.get_send_file_max_age(filename) + return send_from_directory( + t.cast(str, self.static_folder), filename, max_age=max_age + ) + + def open_resource(self, resource: str, mode: str = "rb") -> t.IO[t.AnyStr]: + """Open a resource file relative to :attr:`root_path` for + reading. + + For example, if the file ``schema.sql`` is next to the file + ``app.py`` where the ``Flask`` app is defined, it can be opened + with: + + .. code-block:: python + + with app.open_resource("schema.sql") as f: + conn.executescript(f.read()) + + :param resource: Path to the resource relative to + :attr:`root_path`. + :param mode: Open the file in this mode. Only reading is + supported, valid values are "r" (or "rt") and "rb". + + Note this is a duplicate of the same method in the Flask + class. + + """ + if mode not in {"r", "rt", "rb"}: + raise ValueError("Resources can only be opened for reading.") + + return open(os.path.join(self.root_path, resource), mode) + + def open_instance_resource(self, resource: str, mode: str = "rb") -> t.IO[t.AnyStr]: + """Opens a resource from the application's instance folder + (:attr:`instance_path`). Otherwise works like + :meth:`open_resource`. Instance resources can also be opened for + writing. + + :param resource: the name of the resource. To access resources within + subfolders use forward slashes as separator. + :param mode: resource file opening mode, default is 'rb'. + """ + return open(os.path.join(self.instance_path, resource), mode) + + def create_jinja_environment(self) -> Environment: + """Create the Jinja environment based on :attr:`jinja_options` + and the various Jinja-related methods of the app. Changing + :attr:`jinja_options` after this will have no effect. Also adds + Flask-related globals and filters to the environment. + + .. versionchanged:: 0.11 + ``Environment.auto_reload`` set in accordance with + ``TEMPLATES_AUTO_RELOAD`` configuration option. + + .. versionadded:: 0.5 + """ + options = dict(self.jinja_options) + + if "autoescape" not in options: + options["autoescape"] = self.select_jinja_autoescape + + if "auto_reload" not in options: + auto_reload = self.config["TEMPLATES_AUTO_RELOAD"] + + if auto_reload is None: + auto_reload = self.debug + + options["auto_reload"] = auto_reload + + rv = self.jinja_environment(self, **options) + rv.globals.update( + url_for=self.url_for, + get_flashed_messages=get_flashed_messages, + config=self.config, + # request, session and g are normally added with the + # context processor for efficiency reasons but for imported + # templates we also want the proxies in there. + request=request, + session=session, + g=g, + ) + rv.policies["json.dumps_function"] = self.json.dumps + return rv + + def create_url_adapter(self, request: Request | None) -> MapAdapter | None: + """Creates a URL adapter for the given request. The URL adapter + is created at a point where the request context is not yet set + up so the request is passed explicitly. + + .. versionadded:: 0.6 + + .. versionchanged:: 0.9 + This can now also be called without a request object when the + URL adapter is created for the application context. + + .. versionchanged:: 1.0 + :data:`SERVER_NAME` no longer implicitly enables subdomain + matching. Use :attr:`subdomain_matching` instead. + """ + if request is not None: + # If subdomain matching is disabled (the default), use the + # default subdomain in all cases. This should be the default + # in Werkzeug but it currently does not have that feature. + if not self.subdomain_matching: + subdomain = self.url_map.default_subdomain or None + else: + subdomain = None + + return self.url_map.bind_to_environ( + request.environ, + server_name=self.config["SERVER_NAME"], + subdomain=subdomain, + ) + # We need at the very least the server name to be set for this + # to work. + if self.config["SERVER_NAME"] is not None: + return self.url_map.bind( + self.config["SERVER_NAME"], + script_name=self.config["APPLICATION_ROOT"], + url_scheme=self.config["PREFERRED_URL_SCHEME"], + ) + + return None + + def raise_routing_exception(self, request: Request) -> t.NoReturn: + """Intercept routing exceptions and possibly do something else. + + In debug mode, intercept a routing redirect and replace it with + an error if the body will be discarded. + + With modern Werkzeug this shouldn't occur, since it now uses a + 308 status which tells the browser to resend the method and + body. + + .. versionchanged:: 2.1 + Don't intercept 307 and 308 redirects. + + :meta private: + :internal: + """ + if ( + not self.debug + or not isinstance(request.routing_exception, RequestRedirect) + or request.routing_exception.code in {307, 308} + or request.method in {"GET", "HEAD", "OPTIONS"} + ): + raise request.routing_exception # type: ignore + + from .debughelpers import FormDataRoutingRedirect + + raise FormDataRoutingRedirect(request) + + def update_template_context(self, context: dict) -> None: + """Update the template context with some commonly used variables. + This injects request, session, config and g into the template + context as well as everything template context processors want + to inject. Note that the as of Flask 0.6, the original values + in the context will not be overridden if a context processor + decides to return a value with the same key. + + :param context: the context as a dictionary that is updated in place + to add extra variables. + """ + names: t.Iterable[str | None] = (None,) + + # A template may be rendered outside a request context. + if request: + names = chain(names, reversed(request.blueprints)) + + # The values passed to render_template take precedence. Keep a + # copy to re-apply after all context functions. + orig_ctx = context.copy() + + for name in names: + if name in self.template_context_processors: + for func in self.template_context_processors[name]: + context.update(self.ensure_sync(func)()) + + context.update(orig_ctx) + + def make_shell_context(self) -> dict: + """Returns the shell context for an interactive shell for this + application. This runs all the registered shell context + processors. + + .. versionadded:: 0.11 + """ + rv = {"app": self, "g": g} + for processor in self.shell_context_processors: + rv.update(processor()) + return rv + + def run( + self, + host: str | None = None, + port: int | None = None, + debug: bool | None = None, + load_dotenv: bool = True, + **options: t.Any, + ) -> None: + """Runs the application on a local development server. + + Do not use ``run()`` in a production setting. It is not intended to + meet security and performance requirements for a production server. + Instead, see :doc:`/deploying/index` for WSGI server recommendations. + + If the :attr:`debug` flag is set the server will automatically reload + for code changes and show a debugger in case an exception happened. + + If you want to run the application in debug mode, but disable the + code execution on the interactive debugger, you can pass + ``use_evalex=False`` as parameter. This will keep the debugger's + traceback screen active, but disable code execution. + + It is not recommended to use this function for development with + automatic reloading as this is badly supported. Instead you should + be using the :command:`flask` command line script's ``run`` support. + + .. admonition:: Keep in Mind + + Flask will suppress any server error with a generic error page + unless it is in debug mode. As such to enable just the + interactive debugger without the code reloading, you have to + invoke :meth:`run` with ``debug=True`` and ``use_reloader=False``. + Setting ``use_debugger`` to ``True`` without being in debug mode + won't catch any exceptions because there won't be any to + catch. + + :param host: the hostname to listen on. Set this to ``'0.0.0.0'`` to + have the server available externally as well. Defaults to + ``'127.0.0.1'`` or the host in the ``SERVER_NAME`` config variable + if present. + :param port: the port of the webserver. Defaults to ``5000`` or the + port defined in the ``SERVER_NAME`` config variable if present. + :param debug: if given, enable or disable debug mode. See + :attr:`debug`. + :param load_dotenv: Load the nearest :file:`.env` and :file:`.flaskenv` + files to set environment variables. Will also change the working + directory to the directory containing the first file found. + :param options: the options to be forwarded to the underlying Werkzeug + server. See :func:`werkzeug.serving.run_simple` for more + information. + + .. versionchanged:: 1.0 + If installed, python-dotenv will be used to load environment + variables from :file:`.env` and :file:`.flaskenv` files. + + The :envvar:`FLASK_DEBUG` environment variable will override :attr:`debug`. + + Threaded mode is enabled by default. + + .. versionchanged:: 0.10 + The default port is now picked from the ``SERVER_NAME`` + variable. + """ + # Ignore this call so that it doesn't start another server if + # the 'flask run' command is used. + if os.environ.get("FLASK_RUN_FROM_CLI") == "true": + if not is_running_from_reloader(): + click.secho( + " * Ignoring a call to 'app.run()' that would block" + " the current 'flask' CLI command.\n" + " Only call 'app.run()' in an 'if __name__ ==" + ' "__main__"\' guard.', + fg="red", + ) + + return + + if get_load_dotenv(load_dotenv): + cli.load_dotenv() + + # if set, env var overrides existing value + if "FLASK_DEBUG" in os.environ: + self.debug = get_debug_flag() + + # debug passed to method overrides all other sources + if debug is not None: + self.debug = bool(debug) + + server_name = self.config.get("SERVER_NAME") + sn_host = sn_port = None + + if server_name: + sn_host, _, sn_port = server_name.partition(":") + + if not host: + if sn_host: + host = sn_host + else: + host = "127.0.0.1" + + if port or port == 0: + port = int(port) + elif sn_port: + port = int(sn_port) + else: + port = 5000 + + options.setdefault("use_reloader", self.debug) + options.setdefault("use_debugger", self.debug) + options.setdefault("threaded", True) + + cli.show_server_banner(self.debug, self.name) + + from werkzeug.serving import run_simple + + try: + run_simple(t.cast(str, host), port, self, **options) + finally: + # reset the first request information if the development server + # reset normally. This makes it possible to restart the server + # without reloader and that stuff from an interactive shell. + self._got_first_request = False + + def test_client(self, use_cookies: bool = True, **kwargs: t.Any) -> FlaskClient: + """Creates a test client for this application. For information + about unit testing head over to :doc:`/testing`. + + Note that if you are testing for assertions or exceptions in your + application code, you must set ``app.testing = True`` in order for the + exceptions to propagate to the test client. Otherwise, the exception + will be handled by the application (not visible to the test client) and + the only indication of an AssertionError or other exception will be a + 500 status code response to the test client. See the :attr:`testing` + attribute. For example:: + + app.testing = True + client = app.test_client() + + The test client can be used in a ``with`` block to defer the closing down + of the context until the end of the ``with`` block. This is useful if + you want to access the context locals for testing:: + + with app.test_client() as c: + rv = c.get('/?vodka=42') + assert request.args['vodka'] == '42' + + Additionally, you may pass optional keyword arguments that will then + be passed to the application's :attr:`test_client_class` constructor. + For example:: + + from flask.testing import FlaskClient + + class CustomClient(FlaskClient): + def __init__(self, *args, **kwargs): + self._authentication = kwargs.pop("authentication") + super(CustomClient,self).__init__( *args, **kwargs) + + app.test_client_class = CustomClient + client = app.test_client(authentication='Basic ....') + + See :class:`~flask.testing.FlaskClient` for more information. + + .. versionchanged:: 0.4 + added support for ``with`` block usage for the client. + + .. versionadded:: 0.7 + The `use_cookies` parameter was added as well as the ability + to override the client to be used by setting the + :attr:`test_client_class` attribute. + + .. versionchanged:: 0.11 + Added `**kwargs` to support passing additional keyword arguments to + the constructor of :attr:`test_client_class`. + """ + cls = self.test_client_class + if cls is None: + from .testing import FlaskClient as cls + return cls( # type: ignore + self, self.response_class, use_cookies=use_cookies, **kwargs + ) + + def test_cli_runner(self, **kwargs: t.Any) -> FlaskCliRunner: + """Create a CLI runner for testing CLI commands. + See :ref:`testing-cli`. + + Returns an instance of :attr:`test_cli_runner_class`, by default + :class:`~flask.testing.FlaskCliRunner`. The Flask app object is + passed as the first argument. + + .. versionadded:: 1.0 + """ + cls = self.test_cli_runner_class + + if cls is None: + from .testing import FlaskCliRunner as cls + + return cls(self, **kwargs) # type: ignore + + def handle_http_exception( + self, e: HTTPException + ) -> HTTPException | ft.ResponseReturnValue: + """Handles an HTTP exception. By default this will invoke the + registered error handlers and fall back to returning the + exception as response. + + .. versionchanged:: 1.0.3 + ``RoutingException``, used internally for actions such as + slash redirects during routing, is not passed to error + handlers. + + .. versionchanged:: 1.0 + Exceptions are looked up by code *and* by MRO, so + ``HTTPException`` subclasses can be handled with a catch-all + handler for the base ``HTTPException``. + + .. versionadded:: 0.3 + """ + # Proxy exceptions don't have error codes. We want to always return + # those unchanged as errors + if e.code is None: + return e + + # RoutingExceptions are used internally to trigger routing + # actions, such as slash redirects raising RequestRedirect. They + # are not raised or handled in user code. + if isinstance(e, RoutingException): + return e + + handler = self._find_error_handler(e, request.blueprints) + if handler is None: + return e + return self.ensure_sync(handler)(e) + + def handle_user_exception( + self, e: Exception + ) -> HTTPException | ft.ResponseReturnValue: + """This method is called whenever an exception occurs that + should be handled. A special case is :class:`~werkzeug + .exceptions.HTTPException` which is forwarded to the + :meth:`handle_http_exception` method. This function will either + return a response value or reraise the exception with the same + traceback. + + .. versionchanged:: 1.0 + Key errors raised from request data like ``form`` show the + bad key in debug mode rather than a generic bad request + message. + + .. versionadded:: 0.7 + """ + if isinstance(e, BadRequestKeyError) and ( + self.debug or self.config["TRAP_BAD_REQUEST_ERRORS"] + ): + e.show_exception = True + + if isinstance(e, HTTPException) and not self.trap_http_exception(e): + return self.handle_http_exception(e) + + handler = self._find_error_handler(e, request.blueprints) + + if handler is None: + raise + + return self.ensure_sync(handler)(e) + + def handle_exception(self, e: Exception) -> Response: + """Handle an exception that did not have an error handler + associated with it, or that was raised from an error handler. + This always causes a 500 ``InternalServerError``. + + Always sends the :data:`got_request_exception` signal. + + If :data:`PROPAGATE_EXCEPTIONS` is ``True``, such as in debug + mode, the error will be re-raised so that the debugger can + display it. Otherwise, the original exception is logged, and + an :exc:`~werkzeug.exceptions.InternalServerError` is returned. + + If an error handler is registered for ``InternalServerError`` or + ``500``, it will be used. For consistency, the handler will + always receive the ``InternalServerError``. The original + unhandled exception is available as ``e.original_exception``. + + .. versionchanged:: 1.1.0 + Always passes the ``InternalServerError`` instance to the + handler, setting ``original_exception`` to the unhandled + error. + + .. versionchanged:: 1.1.0 + ``after_request`` functions and other finalization is done + even for the default 500 response when there is no handler. + + .. versionadded:: 0.3 + """ + exc_info = sys.exc_info() + got_request_exception.send(self, _async_wrapper=self.ensure_sync, exception=e) + propagate = self.config["PROPAGATE_EXCEPTIONS"] + + if propagate is None: + propagate = self.testing or self.debug + + if propagate: + # Re-raise if called with an active exception, otherwise + # raise the passed in exception. + if exc_info[1] is e: + raise + + raise e + + self.log_exception(exc_info) + server_error: InternalServerError | ft.ResponseReturnValue + server_error = InternalServerError(original_exception=e) + handler = self._find_error_handler(server_error, request.blueprints) + + if handler is not None: + server_error = self.ensure_sync(handler)(server_error) + + return self.finalize_request(server_error, from_error_handler=True) + + def log_exception( + self, + exc_info: (tuple[type, BaseException, TracebackType] | tuple[None, None, None]), + ) -> None: + """Logs an exception. This is called by :meth:`handle_exception` + if debugging is disabled and right before the handler is called. + The default implementation logs the exception as error on the + :attr:`logger`. + + .. versionadded:: 0.8 + """ + self.logger.error( + f"Exception on {request.path} [{request.method}]", exc_info=exc_info + ) + + def dispatch_request(self) -> ft.ResponseReturnValue: + """Does the request dispatching. Matches the URL and returns the + return value of the view or error handler. This does not have to + be a response object. In order to convert the return value to a + proper response object, call :func:`make_response`. + + .. versionchanged:: 0.7 + This no longer does the exception handling, this code was + moved to the new :meth:`full_dispatch_request`. + """ + req = request_ctx.request + if req.routing_exception is not None: + self.raise_routing_exception(req) + rule: Rule = req.url_rule # type: ignore[assignment] + # if we provide automatic options for this URL and the + # request came with the OPTIONS method, reply automatically + if ( + getattr(rule, "provide_automatic_options", False) + and req.method == "OPTIONS" + ): + return self.make_default_options_response() + # otherwise dispatch to the handler for that endpoint + view_args: dict[str, t.Any] = req.view_args # type: ignore[assignment] + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) + + def full_dispatch_request(self) -> Response: + """Dispatches the request and on top of that performs request + pre and postprocessing as well as HTTP exception catching and + error handling. + + .. versionadded:: 0.7 + """ + self._got_first_request = True + + try: + request_started.send(self, _async_wrapper=self.ensure_sync) + rv = self.preprocess_request() + if rv is None: + rv = self.dispatch_request() + except Exception as e: + rv = self.handle_user_exception(e) + return self.finalize_request(rv) + + def finalize_request( + self, + rv: ft.ResponseReturnValue | HTTPException, + from_error_handler: bool = False, + ) -> Response: + """Given the return value from a view function this finalizes + the request by converting it into a response and invoking the + postprocessing functions. This is invoked for both normal + request dispatching as well as error handlers. + + Because this means that it might be called as a result of a + failure a special safe mode is available which can be enabled + with the `from_error_handler` flag. If enabled, failures in + response processing will be logged and otherwise ignored. + + :internal: + """ + response = self.make_response(rv) + try: + response = self.process_response(response) + request_finished.send( + self, _async_wrapper=self.ensure_sync, response=response + ) + except Exception: + if not from_error_handler: + raise + self.logger.exception( + "Request finalizing failed with an error while handling an error" + ) + return response + + def make_default_options_response(self) -> Response: + """This method is called to create the default ``OPTIONS`` response. + This can be changed through subclassing to change the default + behavior of ``OPTIONS`` responses. + + .. versionadded:: 0.7 + """ + adapter = request_ctx.url_adapter + methods = adapter.allowed_methods() # type: ignore[union-attr] + rv = self.response_class() + rv.allow.update(methods) + return rv + + def ensure_sync(self, func: t.Callable) -> t.Callable: + """Ensure that the function is synchronous for WSGI workers. + Plain ``def`` functions are returned as-is. ``async def`` + functions are wrapped to run and wait for the response. + + Override this method to change how the app runs async views. + + .. versionadded:: 2.0 + """ + if iscoroutinefunction(func): + return self.async_to_sync(func) + + return func + + def async_to_sync( + self, func: t.Callable[..., t.Coroutine] + ) -> t.Callable[..., t.Any]: + """Return a sync function that will run the coroutine function. + + .. code-block:: python + + result = app.async_to_sync(func)(*args, **kwargs) + + Override this method to change how the app converts async code + to be synchronously callable. + + .. versionadded:: 2.0 + """ + try: + from asgiref.sync import async_to_sync as asgiref_async_to_sync + except ImportError: + raise RuntimeError( + "Install Flask with the 'async' extra in order to use async views." + ) from None + + return asgiref_async_to_sync(func) + + def url_for( + self, + /, + endpoint: str, + *, + _anchor: str | None = None, + _method: str | None = None, + _scheme: str | None = None, + _external: bool | None = None, + **values: t.Any, + ) -> str: + """Generate a URL to the given endpoint with the given values. + + This is called by :func:`flask.url_for`, and can be called + directly as well. + + An *endpoint* is the name of a URL rule, usually added with + :meth:`@app.route() `, and usually the same name as the + view function. A route defined in a :class:`~flask.Blueprint` + will prepend the blueprint's name separated by a ``.`` to the + endpoint. + + In some cases, such as email messages, you want URLs to include + the scheme and domain, like ``https://example.com/hello``. When + not in an active request, URLs will be external by default, but + this requires setting :data:`SERVER_NAME` so Flask knows what + domain to use. :data:`APPLICATION_ROOT` and + :data:`PREFERRED_URL_SCHEME` should also be configured as + needed. This config is only used when not in an active request. + + Functions can be decorated with :meth:`url_defaults` to modify + keyword arguments before the URL is built. + + If building fails for some reason, such as an unknown endpoint + or incorrect values, the app's :meth:`handle_url_build_error` + method is called. If that returns a string, that is returned, + otherwise a :exc:`~werkzeug.routing.BuildError` is raised. + + :param endpoint: The endpoint name associated with the URL to + generate. If this starts with a ``.``, the current blueprint + name (if any) will be used. + :param _anchor: If given, append this as ``#anchor`` to the URL. + :param _method: If given, generate the URL associated with this + method for the endpoint. + :param _scheme: If given, the URL will have this scheme if it + is external. + :param _external: If given, prefer the URL to be internal + (False) or require it to be external (True). External URLs + include the scheme and domain. When not in an active + request, URLs are external by default. + :param values: Values to use for the variable parts of the URL + rule. Unknown keys are appended as query string arguments, + like ``?a=b&c=d``. + + .. versionadded:: 2.2 + Moved from ``flask.url_for``, which calls this method. + """ + req_ctx = _cv_request.get(None) + + if req_ctx is not None: + url_adapter = req_ctx.url_adapter + blueprint_name = req_ctx.request.blueprint + + # If the endpoint starts with "." and the request matches a + # blueprint, the endpoint is relative to the blueprint. + if endpoint[:1] == ".": + if blueprint_name is not None: + endpoint = f"{blueprint_name}{endpoint}" + else: + endpoint = endpoint[1:] + + # When in a request, generate a URL without scheme and + # domain by default, unless a scheme is given. + if _external is None: + _external = _scheme is not None + else: + app_ctx = _cv_app.get(None) + + # If called by helpers.url_for, an app context is active, + # use its url_adapter. Otherwise, app.url_for was called + # directly, build an adapter. + if app_ctx is not None: + url_adapter = app_ctx.url_adapter + else: + url_adapter = self.create_url_adapter(None) + + if url_adapter is None: + raise RuntimeError( + "Unable to build URLs outside an active request" + " without 'SERVER_NAME' configured. Also configure" + " 'APPLICATION_ROOT' and 'PREFERRED_URL_SCHEME' as" + " needed." + ) + + # When outside a request, generate a URL with scheme and + # domain by default. + if _external is None: + _external = True + + # It is an error to set _scheme when _external=False, in order + # to avoid accidental insecure URLs. + if _scheme is not None and not _external: + raise ValueError("When specifying '_scheme', '_external' must be True.") + + self.inject_url_defaults(endpoint, values) + + try: + rv = url_adapter.build( # type: ignore[union-attr] + endpoint, + values, + method=_method, + url_scheme=_scheme, + force_external=_external, + ) + except BuildError as error: + values.update( + _anchor=_anchor, _method=_method, _scheme=_scheme, _external=_external + ) + return self.handle_url_build_error(error, endpoint, values) + + if _anchor is not None: + _anchor = _url_quote(_anchor, safe="%!#$&'()*+,/:;=?@") + rv = f"{rv}#{_anchor}" + + return rv + + def make_response(self, rv: ft.ResponseReturnValue) -> Response: + """Convert the return value from a view function to an instance of + :attr:`response_class`. + + :param rv: the return value from the view function. The view function + must return a response. Returning ``None``, or the view ending + without returning, is not allowed. The following types are allowed + for ``view_rv``: + + ``str`` + A response object is created with the string encoded to UTF-8 + as the body. + + ``bytes`` + A response object is created with the bytes as the body. + + ``dict`` + A dictionary that will be jsonify'd before being returned. + + ``list`` + A list that will be jsonify'd before being returned. + + ``generator`` or ``iterator`` + A generator that returns ``str`` or ``bytes`` to be + streamed as the response. + + ``tuple`` + Either ``(body, status, headers)``, ``(body, status)``, or + ``(body, headers)``, where ``body`` is any of the other types + allowed here, ``status`` is a string or an integer, and + ``headers`` is a dictionary or a list of ``(key, value)`` + tuples. If ``body`` is a :attr:`response_class` instance, + ``status`` overwrites the exiting value and ``headers`` are + extended. + + :attr:`response_class` + The object is returned unchanged. + + other :class:`~werkzeug.wrappers.Response` class + The object is coerced to :attr:`response_class`. + + :func:`callable` + The function is called as a WSGI application. The result is + used to create a response object. + + .. versionchanged:: 2.2 + A generator will be converted to a streaming response. + A list will be converted to a JSON response. + + .. versionchanged:: 1.1 + A dict will be converted to a JSON response. + + .. versionchanged:: 0.9 + Previously a tuple was interpreted as the arguments for the + response object. + """ + + status = headers = None + + # unpack tuple returns + if isinstance(rv, tuple): + len_rv = len(rv) + + # a 3-tuple is unpacked directly + if len_rv == 3: + rv, status, headers = rv # type: ignore[misc] + # decide if a 2-tuple has status or headers + elif len_rv == 2: + if isinstance(rv[1], (Headers, dict, tuple, list)): + rv, headers = rv + else: + rv, status = rv # type: ignore[assignment,misc] + # other sized tuples are not allowed + else: + raise TypeError( + "The view function did not return a valid response tuple." + " The tuple must have the form (body, status, headers)," + " (body, status), or (body, headers)." + ) + + # the body must not be None + if rv is None: + raise TypeError( + f"The view function for {request.endpoint!r} did not" + " return a valid response. The function either returned" + " None or ended without a return statement." + ) + + # make sure the body is an instance of the response class + if not isinstance(rv, self.response_class): + if isinstance(rv, (str, bytes, bytearray)) or isinstance(rv, _abc_Iterator): + # let the response class set the status and headers instead of + # waiting to do it manually, so that the class can handle any + # special logic + rv = self.response_class( + rv, + status=status, + headers=headers, # type: ignore[arg-type] + ) + status = headers = None + elif isinstance(rv, (dict, list)): + rv = self.json.response(rv) + elif isinstance(rv, BaseResponse) or callable(rv): + # evaluate a WSGI callable, or coerce a different response + # class to the correct type + try: + rv = self.response_class.force_type( + rv, request.environ # type: ignore[arg-type] + ) + except TypeError as e: + raise TypeError( + f"{e}\nThe view function did not return a valid" + " response. The return type must be a string," + " dict, list, tuple with headers or status," + " Response instance, or WSGI callable, but it" + f" was a {type(rv).__name__}." + ).with_traceback(sys.exc_info()[2]) from None + else: + raise TypeError( + "The view function did not return a valid" + " response. The return type must be a string," + " dict, list, tuple with headers or status," + " Response instance, or WSGI callable, but it was a" + f" {type(rv).__name__}." + ) + + rv = t.cast(Response, rv) + # prefer the status if it was provided + if status is not None: + if isinstance(status, (str, bytes, bytearray)): + rv.status = status + else: + rv.status_code = status + + # extend existing headers with provided headers + if headers: + rv.headers.update(headers) # type: ignore[arg-type] + + return rv + + def preprocess_request(self) -> ft.ResponseReturnValue | None: + """Called before the request is dispatched. Calls + :attr:`url_value_preprocessors` registered with the app and the + current blueprint (if any). Then calls :attr:`before_request_funcs` + registered with the app and the blueprint. + + If any :meth:`before_request` handler returns a non-None value, the + value is handled as if it was the return value from the view, and + further request handling is stopped. + """ + names = (None, *reversed(request.blueprints)) + + for name in names: + if name in self.url_value_preprocessors: + for url_func in self.url_value_preprocessors[name]: + url_func(request.endpoint, request.view_args) + + for name in names: + if name in self.before_request_funcs: + for before_func in self.before_request_funcs[name]: + rv = self.ensure_sync(before_func)() + + if rv is not None: + return rv + + return None + + def process_response(self, response: Response) -> Response: + """Can be overridden in order to modify the response object + before it's sent to the WSGI server. By default this will + call all the :meth:`after_request` decorated functions. + + .. versionchanged:: 0.5 + As of Flask 0.5 the functions registered for after request + execution are called in reverse order of registration. + + :param response: a :attr:`response_class` object. + :return: a new response object or the same, has to be an + instance of :attr:`response_class`. + """ + ctx = request_ctx._get_current_object() # type: ignore[attr-defined] + + for func in ctx._after_request_functions: + response = self.ensure_sync(func)(response) + + for name in chain(request.blueprints, (None,)): + if name in self.after_request_funcs: + for func in reversed(self.after_request_funcs[name]): + response = self.ensure_sync(func)(response) + + if not self.session_interface.is_null_session(ctx.session): + self.session_interface.save_session(self, ctx.session, response) + + return response + + def do_teardown_request( + self, exc: BaseException | None = _sentinel # type: ignore + ) -> None: + """Called after the request is dispatched and the response is + returned, right before the request context is popped. + + This calls all functions decorated with + :meth:`teardown_request`, and :meth:`Blueprint.teardown_request` + if a blueprint handled the request. Finally, the + :data:`request_tearing_down` signal is sent. + + This is called by + :meth:`RequestContext.pop() `, + which may be delayed during testing to maintain access to + resources. + + :param exc: An unhandled exception raised while dispatching the + request. Detected from the current exception information if + not passed. Passed to each teardown function. + + .. versionchanged:: 0.9 + Added the ``exc`` argument. + """ + if exc is _sentinel: + exc = sys.exc_info()[1] + + for name in chain(request.blueprints, (None,)): + if name in self.teardown_request_funcs: + for func in reversed(self.teardown_request_funcs[name]): + self.ensure_sync(func)(exc) + + request_tearing_down.send(self, _async_wrapper=self.ensure_sync, exc=exc) + + def do_teardown_appcontext( + self, exc: BaseException | None = _sentinel # type: ignore + ) -> None: + """Called right before the application context is popped. + + When handling a request, the application context is popped + after the request context. See :meth:`do_teardown_request`. + + This calls all functions decorated with + :meth:`teardown_appcontext`. Then the + :data:`appcontext_tearing_down` signal is sent. + + This is called by + :meth:`AppContext.pop() `. + + .. versionadded:: 0.9 + """ + if exc is _sentinel: + exc = sys.exc_info()[1] + + for func in reversed(self.teardown_appcontext_funcs): + self.ensure_sync(func)(exc) + + appcontext_tearing_down.send(self, _async_wrapper=self.ensure_sync, exc=exc) + + def app_context(self) -> AppContext: + """Create an :class:`~flask.ctx.AppContext`. Use as a ``with`` + block to push the context, which will make :data:`current_app` + point at this application. + + An application context is automatically pushed by + :meth:`RequestContext.push() ` + when handling a request, and when running a CLI command. Use + this to manually create a context outside of these situations. + + :: + + with app.app_context(): + init_db() + + See :doc:`/appcontext`. + + .. versionadded:: 0.9 + """ + return AppContext(self) + + def request_context(self, environ: dict) -> RequestContext: + """Create a :class:`~flask.ctx.RequestContext` representing a + WSGI environment. Use a ``with`` block to push the context, + which will make :data:`request` point at this request. + + See :doc:`/reqcontext`. + + Typically you should not call this from your own code. A request + context is automatically pushed by the :meth:`wsgi_app` when + handling a request. Use :meth:`test_request_context` to create + an environment and context instead of this method. + + :param environ: a WSGI environment + """ + return RequestContext(self, environ) + + def test_request_context(self, *args: t.Any, **kwargs: t.Any) -> RequestContext: + """Create a :class:`~flask.ctx.RequestContext` for a WSGI + environment created from the given values. This is mostly useful + during testing, where you may want to run a function that uses + request data without dispatching a full request. + + See :doc:`/reqcontext`. + + Use a ``with`` block to push the context, which will make + :data:`request` point at the request for the created + environment. :: + + with app.test_request_context(...): + generate_report() + + When using the shell, it may be easier to push and pop the + context manually to avoid indentation. :: + + ctx = app.test_request_context(...) + ctx.push() + ... + ctx.pop() + + Takes the same arguments as Werkzeug's + :class:`~werkzeug.test.EnvironBuilder`, with some defaults from + the application. See the linked Werkzeug docs for most of the + available arguments. Flask-specific behavior is listed here. + + :param path: URL path being requested. + :param base_url: Base URL where the app is being served, which + ``path`` is relative to. If not given, built from + :data:`PREFERRED_URL_SCHEME`, ``subdomain``, + :data:`SERVER_NAME`, and :data:`APPLICATION_ROOT`. + :param subdomain: Subdomain name to append to + :data:`SERVER_NAME`. + :param url_scheme: Scheme to use instead of + :data:`PREFERRED_URL_SCHEME`. + :param data: The request body, either as a string or a dict of + form keys and values. + :param json: If given, this is serialized as JSON and passed as + ``data``. Also defaults ``content_type`` to + ``application/json``. + :param args: other positional arguments passed to + :class:`~werkzeug.test.EnvironBuilder`. + :param kwargs: other keyword arguments passed to + :class:`~werkzeug.test.EnvironBuilder`. + """ + from .testing import EnvironBuilder + + builder = EnvironBuilder(self, *args, **kwargs) + + try: + return self.request_context(builder.get_environ()) + finally: + builder.close() + + def wsgi_app(self, environ: dict, start_response: t.Callable) -> t.Any: + """The actual WSGI application. This is not implemented in + :meth:`__call__` so that middlewares can be applied without + losing a reference to the app object. Instead of doing this:: + + app = MyMiddleware(app) + + It's a better idea to do this instead:: + + app.wsgi_app = MyMiddleware(app.wsgi_app) + + Then you still have the original application object around and + can continue to call methods on it. + + .. versionchanged:: 0.7 + Teardown events for the request and app contexts are called + even if an unhandled error occurs. Other events may not be + called depending on when an error occurs during dispatch. + See :ref:`callbacks-and-errors`. + + :param environ: A WSGI environment. + :param start_response: A callable accepting a status code, + a list of headers, and an optional exception context to + start the response. + """ + ctx = self.request_context(environ) + error: BaseException | None = None + try: + try: + ctx.push() + response = self.full_dispatch_request() + except Exception as e: + error = e + response = self.handle_exception(e) + except: # noqa: B001 + error = sys.exc_info()[1] + raise + return response(environ, start_response) + finally: + if "werkzeug.debug.preserve_context" in environ: + environ["werkzeug.debug.preserve_context"](_cv_app.get()) + environ["werkzeug.debug.preserve_context"](_cv_request.get()) + + if error is not None and self.should_ignore_error(error): + error = None + + ctx.pop(error) + + def __call__(self, environ: dict, start_response: t.Callable) -> t.Any: + """The WSGI server calls the Flask application object as the + WSGI application. This calls :meth:`wsgi_app`, which can be + wrapped to apply middleware. + """ + return self.wsgi_app(environ, start_response) diff --git a/server/venv/lib/python3.10/site-packages/flask/blueprints.py b/server/venv/lib/python3.10/site-packages/flask/blueprints.py new file mode 100644 index 0000000..3a37a2c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/blueprints.py @@ -0,0 +1,91 @@ +from __future__ import annotations + +import os +import typing as t +from datetime import timedelta + +from .globals import current_app +from .helpers import send_from_directory +from .sansio.blueprints import Blueprint as SansioBlueprint +from .sansio.blueprints import BlueprintSetupState as BlueprintSetupState # noqa + +if t.TYPE_CHECKING: # pragma: no cover + from .wrappers import Response + + +class Blueprint(SansioBlueprint): + def get_send_file_max_age(self, filename: str | None) -> int | None: + """Used by :func:`send_file` to determine the ``max_age`` cache + value for a given file path if it wasn't passed. + + By default, this returns :data:`SEND_FILE_MAX_AGE_DEFAULT` from + the configuration of :data:`~flask.current_app`. This defaults + to ``None``, which tells the browser to use conditional requests + instead of a timed cache, which is usually preferable. + + Note this is a duplicate of the same method in the Flask + class. + + .. versionchanged:: 2.0 + The default configuration is ``None`` instead of 12 hours. + + .. versionadded:: 0.9 + """ + value = current_app.config["SEND_FILE_MAX_AGE_DEFAULT"] + + if value is None: + return None + + if isinstance(value, timedelta): + return int(value.total_seconds()) + + return value + + def send_static_file(self, filename: str) -> Response: + """The view function used to serve files from + :attr:`static_folder`. A route is automatically registered for + this view at :attr:`static_url_path` if :attr:`static_folder` is + set. + + Note this is a duplicate of the same method in the Flask + class. + + .. versionadded:: 0.5 + + """ + if not self.has_static_folder: + raise RuntimeError("'static_folder' must be set to serve static_files.") + + # send_file only knows to call get_send_file_max_age on the app, + # call it here so it works for blueprints too. + max_age = self.get_send_file_max_age(filename) + return send_from_directory( + t.cast(str, self.static_folder), filename, max_age=max_age + ) + + def open_resource(self, resource: str, mode: str = "rb") -> t.IO[t.AnyStr]: + """Open a resource file relative to :attr:`root_path` for + reading. + + For example, if the file ``schema.sql`` is next to the file + ``app.py`` where the ``Flask`` app is defined, it can be opened + with: + + .. code-block:: python + + with app.open_resource("schema.sql") as f: + conn.executescript(f.read()) + + :param resource: Path to the resource relative to + :attr:`root_path`. + :param mode: Open the file in this mode. Only reading is + supported, valid values are "r" (or "rt") and "rb". + + Note this is a duplicate of the same method in the Flask + class. + + """ + if mode not in {"r", "rt", "rb"}: + raise ValueError("Resources can only be opened for reading.") + + return open(os.path.join(self.root_path, resource), mode) diff --git a/server/venv/lib/python3.10/site-packages/flask/cli.py b/server/venv/lib/python3.10/site-packages/flask/cli.py new file mode 100644 index 0000000..dda266b --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/cli.py @@ -0,0 +1,1068 @@ +from __future__ import annotations + +import ast +import importlib.metadata +import inspect +import os +import platform +import re +import sys +import traceback +import typing as t +from functools import update_wrapper +from operator import itemgetter + +import click +from click.core import ParameterSource +from werkzeug import run_simple +from werkzeug.serving import is_running_from_reloader +from werkzeug.utils import import_string + +from .globals import current_app +from .helpers import get_debug_flag +from .helpers import get_load_dotenv + +if t.TYPE_CHECKING: + from .app import Flask + + +class NoAppException(click.UsageError): + """Raised if an application cannot be found or loaded.""" + + +def find_best_app(module): + """Given a module instance this tries to find the best possible + application in the module or raises an exception. + """ + from . import Flask + + # Search for the most common names first. + for attr_name in ("app", "application"): + app = getattr(module, attr_name, None) + + if isinstance(app, Flask): + return app + + # Otherwise find the only object that is a Flask instance. + matches = [v for v in module.__dict__.values() if isinstance(v, Flask)] + + if len(matches) == 1: + return matches[0] + elif len(matches) > 1: + raise NoAppException( + "Detected multiple Flask applications in module" + f" '{module.__name__}'. Use '{module.__name__}:name'" + " to specify the correct one." + ) + + # Search for app factory functions. + for attr_name in ("create_app", "make_app"): + app_factory = getattr(module, attr_name, None) + + if inspect.isfunction(app_factory): + try: + app = app_factory() + + if isinstance(app, Flask): + return app + except TypeError as e: + if not _called_with_wrong_args(app_factory): + raise + + raise NoAppException( + f"Detected factory '{attr_name}' in module '{module.__name__}'," + " but could not call it without arguments. Use" + f" '{module.__name__}:{attr_name}(args)'" + " to specify arguments." + ) from e + + raise NoAppException( + "Failed to find Flask application or factory in module" + f" '{module.__name__}'. Use '{module.__name__}:name'" + " to specify one." + ) + + +def _called_with_wrong_args(f): + """Check whether calling a function raised a ``TypeError`` because + the call failed or because something in the factory raised the + error. + + :param f: The function that was called. + :return: ``True`` if the call failed. + """ + tb = sys.exc_info()[2] + + try: + while tb is not None: + if tb.tb_frame.f_code is f.__code__: + # In the function, it was called successfully. + return False + + tb = tb.tb_next + + # Didn't reach the function. + return True + finally: + # Delete tb to break a circular reference. + # https://docs.python.org/2/library/sys.html#sys.exc_info + del tb + + +def find_app_by_string(module, app_name): + """Check if the given string is a variable name or a function. Call + a function to get the app instance, or return the variable directly. + """ + from . import Flask + + # Parse app_name as a single expression to determine if it's a valid + # attribute name or function call. + try: + expr = ast.parse(app_name.strip(), mode="eval").body + except SyntaxError: + raise NoAppException( + f"Failed to parse {app_name!r} as an attribute name or function call." + ) from None + + if isinstance(expr, ast.Name): + name = expr.id + args = [] + kwargs = {} + elif isinstance(expr, ast.Call): + # Ensure the function name is an attribute name only. + if not isinstance(expr.func, ast.Name): + raise NoAppException( + f"Function reference must be a simple name: {app_name!r}." + ) + + name = expr.func.id + + # Parse the positional and keyword arguments as literals. + try: + args = [ast.literal_eval(arg) for arg in expr.args] + kwargs = {kw.arg: ast.literal_eval(kw.value) for kw in expr.keywords} + except ValueError: + # literal_eval gives cryptic error messages, show a generic + # message with the full expression instead. + raise NoAppException( + f"Failed to parse arguments as literal values: {app_name!r}." + ) from None + else: + raise NoAppException( + f"Failed to parse {app_name!r} as an attribute name or function call." + ) + + try: + attr = getattr(module, name) + except AttributeError as e: + raise NoAppException( + f"Failed to find attribute {name!r} in {module.__name__!r}." + ) from e + + # If the attribute is a function, call it with any args and kwargs + # to get the real application. + if inspect.isfunction(attr): + try: + app = attr(*args, **kwargs) + except TypeError as e: + if not _called_with_wrong_args(attr): + raise + + raise NoAppException( + f"The factory {app_name!r} in module" + f" {module.__name__!r} could not be called with the" + " specified arguments." + ) from e + else: + app = attr + + if isinstance(app, Flask): + return app + + raise NoAppException( + "A valid Flask application was not obtained from" + f" '{module.__name__}:{app_name}'." + ) + + +def prepare_import(path): + """Given a filename this will try to calculate the python path, add it + to the search path and return the actual module name that is expected. + """ + path = os.path.realpath(path) + + fname, ext = os.path.splitext(path) + if ext == ".py": + path = fname + + if os.path.basename(path) == "__init__": + path = os.path.dirname(path) + + module_name = [] + + # move up until outside package structure (no __init__.py) + while True: + path, name = os.path.split(path) + module_name.append(name) + + if not os.path.exists(os.path.join(path, "__init__.py")): + break + + if sys.path[0] != path: + sys.path.insert(0, path) + + return ".".join(module_name[::-1]) + + +def locate_app(module_name, app_name, raise_if_not_found=True): + try: + __import__(module_name) + except ImportError: + # Reraise the ImportError if it occurred within the imported module. + # Determine this by checking whether the trace has a depth > 1. + if sys.exc_info()[2].tb_next: + raise NoAppException( + f"While importing {module_name!r}, an ImportError was" + f" raised:\n\n{traceback.format_exc()}" + ) from None + elif raise_if_not_found: + raise NoAppException(f"Could not import {module_name!r}.") from None + else: + return + + module = sys.modules[module_name] + + if app_name is None: + return find_best_app(module) + else: + return find_app_by_string(module, app_name) + + +def get_version(ctx, param, value): + if not value or ctx.resilient_parsing: + return + + flask_version = importlib.metadata.version("flask") + werkzeug_version = importlib.metadata.version("werkzeug") + + click.echo( + f"Python {platform.python_version()}\n" + f"Flask {flask_version}\n" + f"Werkzeug {werkzeug_version}", + color=ctx.color, + ) + ctx.exit() + + +version_option = click.Option( + ["--version"], + help="Show the Flask version.", + expose_value=False, + callback=get_version, + is_flag=True, + is_eager=True, +) + + +class ScriptInfo: + """Helper object to deal with Flask applications. This is usually not + necessary to interface with as it's used internally in the dispatching + to click. In future versions of Flask this object will most likely play + a bigger role. Typically it's created automatically by the + :class:`FlaskGroup` but you can also manually create it and pass it + onwards as click object. + """ + + def __init__( + self, + app_import_path: str | None = None, + create_app: t.Callable[..., Flask] | None = None, + set_debug_flag: bool = True, + ) -> None: + #: Optionally the import path for the Flask application. + self.app_import_path = app_import_path + #: Optionally a function that is passed the script info to create + #: the instance of the application. + self.create_app = create_app + #: A dictionary with arbitrary data that can be associated with + #: this script info. + self.data: dict[t.Any, t.Any] = {} + self.set_debug_flag = set_debug_flag + self._loaded_app: Flask | None = None + + def load_app(self) -> Flask: + """Loads the Flask app (if not yet loaded) and returns it. Calling + this multiple times will just result in the already loaded app to + be returned. + """ + if self._loaded_app is not None: + return self._loaded_app + + if self.create_app is not None: + app = self.create_app() + else: + if self.app_import_path: + path, name = ( + re.split(r":(?![\\/])", self.app_import_path, maxsplit=1) + [None] + )[:2] + import_name = prepare_import(path) + app = locate_app(import_name, name) + else: + for path in ("wsgi.py", "app.py"): + import_name = prepare_import(path) + app = locate_app(import_name, None, raise_if_not_found=False) + + if app: + break + + if not app: + raise NoAppException( + "Could not locate a Flask application. Use the" + " 'flask --app' option, 'FLASK_APP' environment" + " variable, or a 'wsgi.py' or 'app.py' file in the" + " current directory." + ) + + if self.set_debug_flag: + # Update the app's debug flag through the descriptor so that + # other values repopulate as well. + app.debug = get_debug_flag() + + self._loaded_app = app + return app + + +pass_script_info = click.make_pass_decorator(ScriptInfo, ensure=True) + + +def with_appcontext(f): + """Wraps a callback so that it's guaranteed to be executed with the + script's application context. + + Custom commands (and their options) registered under ``app.cli`` or + ``blueprint.cli`` will always have an app context available, this + decorator is not required in that case. + + .. versionchanged:: 2.2 + The app context is active for subcommands as well as the + decorated callback. The app context is always available to + ``app.cli`` command and parameter callbacks. + """ + + @click.pass_context + def decorator(__ctx, *args, **kwargs): + if not current_app: + app = __ctx.ensure_object(ScriptInfo).load_app() + __ctx.with_resource(app.app_context()) + + return __ctx.invoke(f, *args, **kwargs) + + return update_wrapper(decorator, f) + + +class AppGroup(click.Group): + """This works similar to a regular click :class:`~click.Group` but it + changes the behavior of the :meth:`command` decorator so that it + automatically wraps the functions in :func:`with_appcontext`. + + Not to be confused with :class:`FlaskGroup`. + """ + + def command(self, *args, **kwargs): + """This works exactly like the method of the same name on a regular + :class:`click.Group` but it wraps callbacks in :func:`with_appcontext` + unless it's disabled by passing ``with_appcontext=False``. + """ + wrap_for_ctx = kwargs.pop("with_appcontext", True) + + def decorator(f): + if wrap_for_ctx: + f = with_appcontext(f) + return click.Group.command(self, *args, **kwargs)(f) + + return decorator + + def group(self, *args, **kwargs): + """This works exactly like the method of the same name on a regular + :class:`click.Group` but it defaults the group class to + :class:`AppGroup`. + """ + kwargs.setdefault("cls", AppGroup) + return click.Group.group(self, *args, **kwargs) + + +def _set_app(ctx: click.Context, param: click.Option, value: str | None) -> str | None: + if value is None: + return None + + info = ctx.ensure_object(ScriptInfo) + info.app_import_path = value + return value + + +# This option is eager so the app will be available if --help is given. +# --help is also eager, so --app must be before it in the param list. +# no_args_is_help bypasses eager processing, so this option must be +# processed manually in that case to ensure FLASK_APP gets picked up. +_app_option = click.Option( + ["-A", "--app"], + metavar="IMPORT", + help=( + "The Flask application or factory function to load, in the form 'module:name'." + " Module can be a dotted import or file path. Name is not required if it is" + " 'app', 'application', 'create_app', or 'make_app', and can be 'name(args)' to" + " pass arguments." + ), + is_eager=True, + expose_value=False, + callback=_set_app, +) + + +def _set_debug(ctx: click.Context, param: click.Option, value: bool) -> bool | None: + # If the flag isn't provided, it will default to False. Don't use + # that, let debug be set by env in that case. + source = ctx.get_parameter_source(param.name) # type: ignore[arg-type] + + if source is not None and source in ( + ParameterSource.DEFAULT, + ParameterSource.DEFAULT_MAP, + ): + return None + + # Set with env var instead of ScriptInfo.load so that it can be + # accessed early during a factory function. + os.environ["FLASK_DEBUG"] = "1" if value else "0" + return value + + +_debug_option = click.Option( + ["--debug/--no-debug"], + help="Set debug mode.", + expose_value=False, + callback=_set_debug, +) + + +def _env_file_callback( + ctx: click.Context, param: click.Option, value: str | None +) -> str | None: + if value is None: + return None + + import importlib + + try: + importlib.import_module("dotenv") + except ImportError: + raise click.BadParameter( + "python-dotenv must be installed to load an env file.", + ctx=ctx, + param=param, + ) from None + + # Don't check FLASK_SKIP_DOTENV, that only disables automatically + # loading .env and .flaskenv files. + load_dotenv(value) + return value + + +# This option is eager so env vars are loaded as early as possible to be +# used by other options. +_env_file_option = click.Option( + ["-e", "--env-file"], + type=click.Path(exists=True, dir_okay=False), + help="Load environment variables from this file. python-dotenv must be installed.", + is_eager=True, + expose_value=False, + callback=_env_file_callback, +) + + +class FlaskGroup(AppGroup): + """Special subclass of the :class:`AppGroup` group that supports + loading more commands from the configured Flask app. Normally a + developer does not have to interface with this class but there are + some very advanced use cases for which it makes sense to create an + instance of this. see :ref:`custom-scripts`. + + :param add_default_commands: if this is True then the default run and + shell commands will be added. + :param add_version_option: adds the ``--version`` option. + :param create_app: an optional callback that is passed the script info and + returns the loaded app. + :param load_dotenv: Load the nearest :file:`.env` and :file:`.flaskenv` + files to set environment variables. Will also change the working + directory to the directory containing the first file found. + :param set_debug_flag: Set the app's debug flag. + + .. versionchanged:: 2.2 + Added the ``-A/--app``, ``--debug/--no-debug``, ``-e/--env-file`` options. + + .. versionchanged:: 2.2 + An app context is pushed when running ``app.cli`` commands, so + ``@with_appcontext`` is no longer required for those commands. + + .. versionchanged:: 1.0 + If installed, python-dotenv will be used to load environment variables + from :file:`.env` and :file:`.flaskenv` files. + """ + + def __init__( + self, + add_default_commands: bool = True, + create_app: t.Callable[..., Flask] | None = None, + add_version_option: bool = True, + load_dotenv: bool = True, + set_debug_flag: bool = True, + **extra: t.Any, + ) -> None: + params = list(extra.pop("params", None) or ()) + # Processing is done with option callbacks instead of a group + # callback. This allows users to make a custom group callback + # without losing the behavior. --env-file must come first so + # that it is eagerly evaluated before --app. + params.extend((_env_file_option, _app_option, _debug_option)) + + if add_version_option: + params.append(version_option) + + if "context_settings" not in extra: + extra["context_settings"] = {} + + extra["context_settings"].setdefault("auto_envvar_prefix", "FLASK") + + super().__init__(params=params, **extra) + + self.create_app = create_app + self.load_dotenv = load_dotenv + self.set_debug_flag = set_debug_flag + + if add_default_commands: + self.add_command(run_command) + self.add_command(shell_command) + self.add_command(routes_command) + + self._loaded_plugin_commands = False + + def _load_plugin_commands(self): + if self._loaded_plugin_commands: + return + + if sys.version_info >= (3, 10): + from importlib import metadata + else: + # Use a backport on Python < 3.10. We technically have + # importlib.metadata on 3.8+, but the API changed in 3.10, + # so use the backport for consistency. + import importlib_metadata as metadata + + for ep in metadata.entry_points(group="flask.commands"): + self.add_command(ep.load(), ep.name) + + self._loaded_plugin_commands = True + + def get_command(self, ctx, name): + self._load_plugin_commands() + # Look up built-in and plugin commands, which should be + # available even if the app fails to load. + rv = super().get_command(ctx, name) + + if rv is not None: + return rv + + info = ctx.ensure_object(ScriptInfo) + + # Look up commands provided by the app, showing an error and + # continuing if the app couldn't be loaded. + try: + app = info.load_app() + except NoAppException as e: + click.secho(f"Error: {e.format_message()}\n", err=True, fg="red") + return None + + # Push an app context for the loaded app unless it is already + # active somehow. This makes the context available to parameter + # and command callbacks without needing @with_appcontext. + if not current_app or current_app._get_current_object() is not app: + ctx.with_resource(app.app_context()) + + return app.cli.get_command(ctx, name) + + def list_commands(self, ctx): + self._load_plugin_commands() + # Start with the built-in and plugin commands. + rv = set(super().list_commands(ctx)) + info = ctx.ensure_object(ScriptInfo) + + # Add commands provided by the app, showing an error and + # continuing if the app couldn't be loaded. + try: + rv.update(info.load_app().cli.list_commands(ctx)) + except NoAppException as e: + # When an app couldn't be loaded, show the error message + # without the traceback. + click.secho(f"Error: {e.format_message()}\n", err=True, fg="red") + except Exception: + # When any other errors occurred during loading, show the + # full traceback. + click.secho(f"{traceback.format_exc()}\n", err=True, fg="red") + + return sorted(rv) + + def make_context( + self, + info_name: str | None, + args: list[str], + parent: click.Context | None = None, + **extra: t.Any, + ) -> click.Context: + # Set a flag to tell app.run to become a no-op. If app.run was + # not in a __name__ == __main__ guard, it would start the server + # when importing, blocking whatever command is being called. + os.environ["FLASK_RUN_FROM_CLI"] = "true" + + # Attempt to load .env and .flask env files. The --env-file + # option can cause another file to be loaded. + if get_load_dotenv(self.load_dotenv): + load_dotenv() + + if "obj" not in extra and "obj" not in self.context_settings: + extra["obj"] = ScriptInfo( + create_app=self.create_app, set_debug_flag=self.set_debug_flag + ) + + return super().make_context(info_name, args, parent=parent, **extra) + + def parse_args(self, ctx: click.Context, args: list[str]) -> list[str]: + if not args and self.no_args_is_help: + # Attempt to load --env-file and --app early in case they + # were given as env vars. Otherwise no_args_is_help will not + # see commands from app.cli. + _env_file_option.handle_parse_result(ctx, {}, []) + _app_option.handle_parse_result(ctx, {}, []) + + return super().parse_args(ctx, args) + + +def _path_is_ancestor(path, other): + """Take ``other`` and remove the length of ``path`` from it. Then join it + to ``path``. If it is the original value, ``path`` is an ancestor of + ``other``.""" + return os.path.join(path, other[len(path) :].lstrip(os.sep)) == other + + +def load_dotenv(path: str | os.PathLike | None = None) -> bool: + """Load "dotenv" files in order of precedence to set environment variables. + + If an env var is already set it is not overwritten, so earlier files in the + list are preferred over later files. + + This is a no-op if `python-dotenv`_ is not installed. + + .. _python-dotenv: https://github.com/theskumar/python-dotenv#readme + + :param path: Load the file at this location instead of searching. + :return: ``True`` if a file was loaded. + + .. versionchanged:: 2.0 + The current directory is not changed to the location of the + loaded file. + + .. versionchanged:: 2.0 + When loading the env files, set the default encoding to UTF-8. + + .. versionchanged:: 1.1.0 + Returns ``False`` when python-dotenv is not installed, or when + the given path isn't a file. + + .. versionadded:: 1.0 + """ + try: + import dotenv + except ImportError: + if path or os.path.isfile(".env") or os.path.isfile(".flaskenv"): + click.secho( + " * Tip: There are .env or .flaskenv files present." + ' Do "pip install python-dotenv" to use them.', + fg="yellow", + err=True, + ) + + return False + + # Always return after attempting to load a given path, don't load + # the default files. + if path is not None: + if os.path.isfile(path): + return dotenv.load_dotenv(path, encoding="utf-8") + + return False + + loaded = False + + for name in (".env", ".flaskenv"): + path = dotenv.find_dotenv(name, usecwd=True) + + if not path: + continue + + dotenv.load_dotenv(path, encoding="utf-8") + loaded = True + + return loaded # True if at least one file was located and loaded. + + +def show_server_banner(debug, app_import_path): + """Show extra startup messages the first time the server is run, + ignoring the reloader. + """ + if is_running_from_reloader(): + return + + if app_import_path is not None: + click.echo(f" * Serving Flask app '{app_import_path}'") + + if debug is not None: + click.echo(f" * Debug mode: {'on' if debug else 'off'}") + + +class CertParamType(click.ParamType): + """Click option type for the ``--cert`` option. Allows either an + existing file, the string ``'adhoc'``, or an import for a + :class:`~ssl.SSLContext` object. + """ + + name = "path" + + def __init__(self): + self.path_type = click.Path(exists=True, dir_okay=False, resolve_path=True) + + def convert(self, value, param, ctx): + try: + import ssl + except ImportError: + raise click.BadParameter( + 'Using "--cert" requires Python to be compiled with SSL support.', + ctx, + param, + ) from None + + try: + return self.path_type(value, param, ctx) + except click.BadParameter: + value = click.STRING(value, param, ctx).lower() + + if value == "adhoc": + try: + import cryptography # noqa: F401 + except ImportError: + raise click.BadParameter( + "Using ad-hoc certificates requires the cryptography library.", + ctx, + param, + ) from None + + return value + + obj = import_string(value, silent=True) + + if isinstance(obj, ssl.SSLContext): + return obj + + raise + + +def _validate_key(ctx, param, value): + """The ``--key`` option must be specified when ``--cert`` is a file. + Modifies the ``cert`` param to be a ``(cert, key)`` pair if needed. + """ + cert = ctx.params.get("cert") + is_adhoc = cert == "adhoc" + + try: + import ssl + except ImportError: + is_context = False + else: + is_context = isinstance(cert, ssl.SSLContext) + + if value is not None: + if is_adhoc: + raise click.BadParameter( + 'When "--cert" is "adhoc", "--key" is not used.', ctx, param + ) + + if is_context: + raise click.BadParameter( + 'When "--cert" is an SSLContext object, "--key is not used.', ctx, param + ) + + if not cert: + raise click.BadParameter('"--cert" must also be specified.', ctx, param) + + ctx.params["cert"] = cert, value + + else: + if cert and not (is_adhoc or is_context): + raise click.BadParameter('Required when using "--cert".', ctx, param) + + return value + + +class SeparatedPathType(click.Path): + """Click option type that accepts a list of values separated by the + OS's path separator (``:``, ``;`` on Windows). Each value is + validated as a :class:`click.Path` type. + """ + + def convert(self, value, param, ctx): + items = self.split_envvar_value(value) + super_convert = super().convert + return [super_convert(item, param, ctx) for item in items] + + +@click.command("run", short_help="Run a development server.") +@click.option("--host", "-h", default="127.0.0.1", help="The interface to bind to.") +@click.option("--port", "-p", default=5000, help="The port to bind to.") +@click.option( + "--cert", + type=CertParamType(), + help="Specify a certificate file to use HTTPS.", + is_eager=True, +) +@click.option( + "--key", + type=click.Path(exists=True, dir_okay=False, resolve_path=True), + callback=_validate_key, + expose_value=False, + help="The key file to use when specifying a certificate.", +) +@click.option( + "--reload/--no-reload", + default=None, + help="Enable or disable the reloader. By default the reloader " + "is active if debug is enabled.", +) +@click.option( + "--debugger/--no-debugger", + default=None, + help="Enable or disable the debugger. By default the debugger " + "is active if debug is enabled.", +) +@click.option( + "--with-threads/--without-threads", + default=True, + help="Enable or disable multithreading.", +) +@click.option( + "--extra-files", + default=None, + type=SeparatedPathType(), + help=( + "Extra files that trigger a reload on change. Multiple paths" + f" are separated by {os.path.pathsep!r}." + ), +) +@click.option( + "--exclude-patterns", + default=None, + type=SeparatedPathType(), + help=( + "Files matching these fnmatch patterns will not trigger a reload" + " on change. Multiple patterns are separated by" + f" {os.path.pathsep!r}." + ), +) +@pass_script_info +def run_command( + info, + host, + port, + reload, + debugger, + with_threads, + cert, + extra_files, + exclude_patterns, +): + """Run a local development server. + + This server is for development purposes only. It does not provide + the stability, security, or performance of production WSGI servers. + + The reloader and debugger are enabled by default with the '--debug' + option. + """ + try: + app = info.load_app() + except Exception as e: + if is_running_from_reloader(): + # When reloading, print out the error immediately, but raise + # it later so the debugger or server can handle it. + traceback.print_exc() + err = e + + def app(environ, start_response): + raise err from None + + else: + # When not reloading, raise the error immediately so the + # command fails. + raise e from None + + debug = get_debug_flag() + + if reload is None: + reload = debug + + if debugger is None: + debugger = debug + + show_server_banner(debug, info.app_import_path) + + run_simple( + host, + port, + app, + use_reloader=reload, + use_debugger=debugger, + threaded=with_threads, + ssl_context=cert, + extra_files=extra_files, + exclude_patterns=exclude_patterns, + ) + + +run_command.params.insert(0, _debug_option) + + +@click.command("shell", short_help="Run a shell in the app context.") +@with_appcontext +def shell_command() -> None: + """Run an interactive Python shell in the context of a given + Flask application. The application will populate the default + namespace of this shell according to its configuration. + + This is useful for executing small snippets of management code + without having to manually configure the application. + """ + import code + + banner = ( + f"Python {sys.version} on {sys.platform}\n" + f"App: {current_app.import_name}\n" + f"Instance: {current_app.instance_path}" + ) + ctx: dict = {} + + # Support the regular Python interpreter startup script if someone + # is using it. + startup = os.environ.get("PYTHONSTARTUP") + if startup and os.path.isfile(startup): + with open(startup) as f: + eval(compile(f.read(), startup, "exec"), ctx) + + ctx.update(current_app.make_shell_context()) + + # Site, customize, or startup script can set a hook to call when + # entering interactive mode. The default one sets up readline with + # tab and history completion. + interactive_hook = getattr(sys, "__interactivehook__", None) + + if interactive_hook is not None: + try: + import readline + from rlcompleter import Completer + except ImportError: + pass + else: + # rlcompleter uses __main__.__dict__ by default, which is + # flask.__main__. Use the shell context instead. + readline.set_completer(Completer(ctx).complete) + + interactive_hook() + + code.interact(banner=banner, local=ctx) + + +@click.command("routes", short_help="Show the routes for the app.") +@click.option( + "--sort", + "-s", + type=click.Choice(("endpoint", "methods", "domain", "rule", "match")), + default="endpoint", + help=( + "Method to sort routes by. 'match' is the order that Flask will match routes" + " when dispatching a request." + ), +) +@click.option("--all-methods", is_flag=True, help="Show HEAD and OPTIONS methods.") +@with_appcontext +def routes_command(sort: str, all_methods: bool) -> None: + """Show all registered routes with endpoints and methods.""" + rules = list(current_app.url_map.iter_rules()) + + if not rules: + click.echo("No routes were registered.") + return + + ignored_methods = set() if all_methods else {"HEAD", "OPTIONS"} + host_matching = current_app.url_map.host_matching + has_domain = any(rule.host if host_matching else rule.subdomain for rule in rules) + rows = [] + + for rule in rules: + row = [ + rule.endpoint, + ", ".join(sorted((rule.methods or set()) - ignored_methods)), + ] + + if has_domain: + row.append((rule.host if host_matching else rule.subdomain) or "") + + row.append(rule.rule) + rows.append(row) + + headers = ["Endpoint", "Methods"] + sorts = ["endpoint", "methods"] + + if has_domain: + headers.append("Host" if host_matching else "Subdomain") + sorts.append("domain") + + headers.append("Rule") + sorts.append("rule") + + try: + rows.sort(key=itemgetter(sorts.index(sort))) + except ValueError: + pass + + rows.insert(0, headers) + widths = [max(len(row[i]) for row in rows) for i in range(len(headers))] + rows.insert(1, ["-" * w for w in widths]) + template = " ".join(f"{{{i}:<{w}}}" for i, w in enumerate(widths)) + + for row in rows: + click.echo(template.format(*row)) + + +cli = FlaskGroup( + name="flask", + help="""\ +A general utility script for Flask applications. + +An application to load must be given with the '--app' option, +'FLASK_APP' environment variable, or with a 'wsgi.py' or 'app.py' file +in the current directory. +""", +) + + +def main() -> None: + cli.main() + + +if __name__ == "__main__": + main() diff --git a/server/venv/lib/python3.10/site-packages/flask/config.py b/server/venv/lib/python3.10/site-packages/flask/config.py new file mode 100644 index 0000000..5f921b4 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/config.py @@ -0,0 +1,347 @@ +from __future__ import annotations + +import errno +import json +import os +import types +import typing as t + +from werkzeug.utils import import_string + + +class ConfigAttribute: + """Makes an attribute forward to the config""" + + def __init__(self, name: str, get_converter: t.Callable | None = None) -> None: + self.__name__ = name + self.get_converter = get_converter + + def __get__(self, obj: t.Any, owner: t.Any = None) -> t.Any: + if obj is None: + return self + rv = obj.config[self.__name__] + if self.get_converter is not None: + rv = self.get_converter(rv) + return rv + + def __set__(self, obj: t.Any, value: t.Any) -> None: + obj.config[self.__name__] = value + + +class Config(dict): + """Works exactly like a dict but provides ways to fill it from files + or special dictionaries. There are two common patterns to populate the + config. + + Either you can fill the config from a config file:: + + app.config.from_pyfile('yourconfig.cfg') + + Or alternatively you can define the configuration options in the + module that calls :meth:`from_object` or provide an import path to + a module that should be loaded. It is also possible to tell it to + use the same module and with that provide the configuration values + just before the call:: + + DEBUG = True + SECRET_KEY = 'development key' + app.config.from_object(__name__) + + In both cases (loading from any Python file or loading from modules), + only uppercase keys are added to the config. This makes it possible to use + lowercase values in the config file for temporary values that are not added + to the config or to define the config keys in the same file that implements + the application. + + Probably the most interesting way to load configurations is from an + environment variable pointing to a file:: + + app.config.from_envvar('YOURAPPLICATION_SETTINGS') + + In this case before launching the application you have to set this + environment variable to the file you want to use. On Linux and OS X + use the export statement:: + + export YOURAPPLICATION_SETTINGS='/path/to/config/file' + + On windows use `set` instead. + + :param root_path: path to which files are read relative from. When the + config object is created by the application, this is + the application's :attr:`~flask.Flask.root_path`. + :param defaults: an optional dictionary of default values + """ + + def __init__( + self, root_path: str | os.PathLike, defaults: dict | None = None + ) -> None: + super().__init__(defaults or {}) + self.root_path = root_path + + def from_envvar(self, variable_name: str, silent: bool = False) -> bool: + """Loads a configuration from an environment variable pointing to + a configuration file. This is basically just a shortcut with nicer + error messages for this line of code:: + + app.config.from_pyfile(os.environ['YOURAPPLICATION_SETTINGS']) + + :param variable_name: name of the environment variable + :param silent: set to ``True`` if you want silent failure for missing + files. + :return: ``True`` if the file was loaded successfully. + """ + rv = os.environ.get(variable_name) + if not rv: + if silent: + return False + raise RuntimeError( + f"The environment variable {variable_name!r} is not set" + " and as such configuration could not be loaded. Set" + " this variable and make it point to a configuration" + " file" + ) + return self.from_pyfile(rv, silent=silent) + + def from_prefixed_env( + self, prefix: str = "FLASK", *, loads: t.Callable[[str], t.Any] = json.loads + ) -> bool: + """Load any environment variables that start with ``FLASK_``, + dropping the prefix from the env key for the config key. Values + are passed through a loading function to attempt to convert them + to more specific types than strings. + + Keys are loaded in :func:`sorted` order. + + The default loading function attempts to parse values as any + valid JSON type, including dicts and lists. + + Specific items in nested dicts can be set by separating the + keys with double underscores (``__``). If an intermediate key + doesn't exist, it will be initialized to an empty dict. + + :param prefix: Load env vars that start with this prefix, + separated with an underscore (``_``). + :param loads: Pass each string value to this function and use + the returned value as the config value. If any error is + raised it is ignored and the value remains a string. The + default is :func:`json.loads`. + + .. versionadded:: 2.1 + """ + prefix = f"{prefix}_" + len_prefix = len(prefix) + + for key in sorted(os.environ): + if not key.startswith(prefix): + continue + + value = os.environ[key] + + try: + value = loads(value) + except Exception: + # Keep the value as a string if loading failed. + pass + + # Change to key.removeprefix(prefix) on Python >= 3.9. + key = key[len_prefix:] + + if "__" not in key: + # A non-nested key, set directly. + self[key] = value + continue + + # Traverse nested dictionaries with keys separated by "__". + current = self + *parts, tail = key.split("__") + + for part in parts: + # If an intermediate dict does not exist, create it. + if part not in current: + current[part] = {} + + current = current[part] + + current[tail] = value + + return True + + def from_pyfile(self, filename: str | os.PathLike, silent: bool = False) -> bool: + """Updates the values in the config from a Python file. This function + behaves as if the file was imported as module with the + :meth:`from_object` function. + + :param filename: the filename of the config. This can either be an + absolute filename or a filename relative to the + root path. + :param silent: set to ``True`` if you want silent failure for missing + files. + :return: ``True`` if the file was loaded successfully. + + .. versionadded:: 0.7 + `silent` parameter. + """ + filename = os.path.join(self.root_path, filename) + d = types.ModuleType("config") + d.__file__ = filename + try: + with open(filename, mode="rb") as config_file: + exec(compile(config_file.read(), filename, "exec"), d.__dict__) + except OSError as e: + if silent and e.errno in (errno.ENOENT, errno.EISDIR, errno.ENOTDIR): + return False + e.strerror = f"Unable to load configuration file ({e.strerror})" + raise + self.from_object(d) + return True + + def from_object(self, obj: object | str) -> None: + """Updates the values from the given object. An object can be of one + of the following two types: + + - a string: in this case the object with that name will be imported + - an actual object reference: that object is used directly + + Objects are usually either modules or classes. :meth:`from_object` + loads only the uppercase attributes of the module/class. A ``dict`` + object will not work with :meth:`from_object` because the keys of a + ``dict`` are not attributes of the ``dict`` class. + + Example of module-based configuration:: + + app.config.from_object('yourapplication.default_config') + from yourapplication import default_config + app.config.from_object(default_config) + + Nothing is done to the object before loading. If the object is a + class and has ``@property`` attributes, it needs to be + instantiated before being passed to this method. + + You should not use this function to load the actual configuration but + rather configuration defaults. The actual config should be loaded + with :meth:`from_pyfile` and ideally from a location not within the + package because the package might be installed system wide. + + See :ref:`config-dev-prod` for an example of class-based configuration + using :meth:`from_object`. + + :param obj: an import name or object + """ + if isinstance(obj, str): + obj = import_string(obj) + for key in dir(obj): + if key.isupper(): + self[key] = getattr(obj, key) + + def from_file( + self, + filename: str | os.PathLike, + load: t.Callable[[t.IO[t.Any]], t.Mapping], + silent: bool = False, + text: bool = True, + ) -> bool: + """Update the values in the config from a file that is loaded + using the ``load`` parameter. The loaded data is passed to the + :meth:`from_mapping` method. + + .. code-block:: python + + import json + app.config.from_file("config.json", load=json.load) + + import tomllib + app.config.from_file("config.toml", load=tomllib.load, text=False) + + :param filename: The path to the data file. This can be an + absolute path or relative to the config root path. + :param load: A callable that takes a file handle and returns a + mapping of loaded data from the file. + :type load: ``Callable[[Reader], Mapping]`` where ``Reader`` + implements a ``read`` method. + :param silent: Ignore the file if it doesn't exist. + :param text: Open the file in text or binary mode. + :return: ``True`` if the file was loaded successfully. + + .. versionchanged:: 2.3 + The ``text`` parameter was added. + + .. versionadded:: 2.0 + """ + filename = os.path.join(self.root_path, filename) + + try: + with open(filename, "r" if text else "rb") as f: + obj = load(f) + except OSError as e: + if silent and e.errno in (errno.ENOENT, errno.EISDIR): + return False + + e.strerror = f"Unable to load configuration file ({e.strerror})" + raise + + return self.from_mapping(obj) + + def from_mapping( + self, mapping: t.Mapping[str, t.Any] | None = None, **kwargs: t.Any + ) -> bool: + """Updates the config like :meth:`update` ignoring items with + non-upper keys. + + :return: Always returns ``True``. + + .. versionadded:: 0.11 + """ + mappings: dict[str, t.Any] = {} + if mapping is not None: + mappings.update(mapping) + mappings.update(kwargs) + for key, value in mappings.items(): + if key.isupper(): + self[key] = value + return True + + def get_namespace( + self, namespace: str, lowercase: bool = True, trim_namespace: bool = True + ) -> dict[str, t.Any]: + """Returns a dictionary containing a subset of configuration options + that match the specified namespace/prefix. Example usage:: + + app.config['IMAGE_STORE_TYPE'] = 'fs' + app.config['IMAGE_STORE_PATH'] = '/var/app/images' + app.config['IMAGE_STORE_BASE_URL'] = 'http://img.website.com' + image_store_config = app.config.get_namespace('IMAGE_STORE_') + + The resulting dictionary `image_store_config` would look like:: + + { + 'type': 'fs', + 'path': '/var/app/images', + 'base_url': 'http://img.website.com' + } + + This is often useful when configuration options map directly to + keyword arguments in functions or class constructors. + + :param namespace: a configuration namespace + :param lowercase: a flag indicating if the keys of the resulting + dictionary should be lowercase + :param trim_namespace: a flag indicating if the keys of the resulting + dictionary should not include the namespace + + .. versionadded:: 0.11 + """ + rv = {} + for k, v in self.items(): + if not k.startswith(namespace): + continue + if trim_namespace: + key = k[len(namespace) :] + else: + key = k + if lowercase: + key = key.lower() + rv[key] = v + return rv + + def __repr__(self) -> str: + return f"<{type(self).__name__} {dict.__repr__(self)}>" diff --git a/server/venv/lib/python3.10/site-packages/flask/ctx.py b/server/venv/lib/python3.10/site-packages/flask/ctx.py new file mode 100644 index 0000000..b37e4e0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/ctx.py @@ -0,0 +1,440 @@ +from __future__ import annotations + +import contextvars +import sys +import typing as t +from functools import update_wrapper +from types import TracebackType + +from werkzeug.exceptions import HTTPException + +from . import typing as ft +from .globals import _cv_app +from .globals import _cv_request +from .signals import appcontext_popped +from .signals import appcontext_pushed + +if t.TYPE_CHECKING: # pragma: no cover + from .app import Flask + from .sessions import SessionMixin + from .wrappers import Request + + +# a singleton sentinel value for parameter defaults +_sentinel = object() + + +class _AppCtxGlobals: + """A plain object. Used as a namespace for storing data during an + application context. + + Creating an app context automatically creates this object, which is + made available as the :data:`g` proxy. + + .. describe:: 'key' in g + + Check whether an attribute is present. + + .. versionadded:: 0.10 + + .. describe:: iter(g) + + Return an iterator over the attribute names. + + .. versionadded:: 0.10 + """ + + # Define attr methods to let mypy know this is a namespace object + # that has arbitrary attributes. + + def __getattr__(self, name: str) -> t.Any: + try: + return self.__dict__[name] + except KeyError: + raise AttributeError(name) from None + + def __setattr__(self, name: str, value: t.Any) -> None: + self.__dict__[name] = value + + def __delattr__(self, name: str) -> None: + try: + del self.__dict__[name] + except KeyError: + raise AttributeError(name) from None + + def get(self, name: str, default: t.Any | None = None) -> t.Any: + """Get an attribute by name, or a default value. Like + :meth:`dict.get`. + + :param name: Name of attribute to get. + :param default: Value to return if the attribute is not present. + + .. versionadded:: 0.10 + """ + return self.__dict__.get(name, default) + + def pop(self, name: str, default: t.Any = _sentinel) -> t.Any: + """Get and remove an attribute by name. Like :meth:`dict.pop`. + + :param name: Name of attribute to pop. + :param default: Value to return if the attribute is not present, + instead of raising a ``KeyError``. + + .. versionadded:: 0.11 + """ + if default is _sentinel: + return self.__dict__.pop(name) + else: + return self.__dict__.pop(name, default) + + def setdefault(self, name: str, default: t.Any = None) -> t.Any: + """Get the value of an attribute if it is present, otherwise + set and return a default value. Like :meth:`dict.setdefault`. + + :param name: Name of attribute to get. + :param default: Value to set and return if the attribute is not + present. + + .. versionadded:: 0.11 + """ + return self.__dict__.setdefault(name, default) + + def __contains__(self, item: str) -> bool: + return item in self.__dict__ + + def __iter__(self) -> t.Iterator[str]: + return iter(self.__dict__) + + def __repr__(self) -> str: + ctx = _cv_app.get(None) + if ctx is not None: + return f"" + return object.__repr__(self) + + +def after_this_request(f: ft.AfterRequestCallable) -> ft.AfterRequestCallable: + """Executes a function after this request. This is useful to modify + response objects. The function is passed the response object and has + to return the same or a new one. + + Example:: + + @app.route('/') + def index(): + @after_this_request + def add_header(response): + response.headers['X-Foo'] = 'Parachute' + return response + return 'Hello World!' + + This is more useful if a function other than the view function wants to + modify a response. For instance think of a decorator that wants to add + some headers without converting the return value into a response object. + + .. versionadded:: 0.9 + """ + ctx = _cv_request.get(None) + + if ctx is None: + raise RuntimeError( + "'after_this_request' can only be used when a request" + " context is active, such as in a view function." + ) + + ctx._after_request_functions.append(f) + return f + + +def copy_current_request_context(f: t.Callable) -> t.Callable: + """A helper function that decorates a function to retain the current + request context. This is useful when working with greenlets. The moment + the function is decorated a copy of the request context is created and + then pushed when the function is called. The current session is also + included in the copied request context. + + Example:: + + import gevent + from flask import copy_current_request_context + + @app.route('/') + def index(): + @copy_current_request_context + def do_some_work(): + # do some work here, it can access flask.request or + # flask.session like you would otherwise in the view function. + ... + gevent.spawn(do_some_work) + return 'Regular response' + + .. versionadded:: 0.10 + """ + ctx = _cv_request.get(None) + + if ctx is None: + raise RuntimeError( + "'copy_current_request_context' can only be used when a" + " request context is active, such as in a view function." + ) + + ctx = ctx.copy() + + def wrapper(*args, **kwargs): + with ctx: + return ctx.app.ensure_sync(f)(*args, **kwargs) + + return update_wrapper(wrapper, f) + + +def has_request_context() -> bool: + """If you have code that wants to test if a request context is there or + not this function can be used. For instance, you may want to take advantage + of request information if the request object is available, but fail + silently if it is unavailable. + + :: + + class User(db.Model): + + def __init__(self, username, remote_addr=None): + self.username = username + if remote_addr is None and has_request_context(): + remote_addr = request.remote_addr + self.remote_addr = remote_addr + + Alternatively you can also just test any of the context bound objects + (such as :class:`request` or :class:`g`) for truthness:: + + class User(db.Model): + + def __init__(self, username, remote_addr=None): + self.username = username + if remote_addr is None and request: + remote_addr = request.remote_addr + self.remote_addr = remote_addr + + .. versionadded:: 0.7 + """ + return _cv_request.get(None) is not None + + +def has_app_context() -> bool: + """Works like :func:`has_request_context` but for the application + context. You can also just do a boolean check on the + :data:`current_app` object instead. + + .. versionadded:: 0.9 + """ + return _cv_app.get(None) is not None + + +class AppContext: + """The app context contains application-specific information. An app + context is created and pushed at the beginning of each request if + one is not already active. An app context is also pushed when + running CLI commands. + """ + + def __init__(self, app: Flask) -> None: + self.app = app + self.url_adapter = app.create_url_adapter(None) + self.g: _AppCtxGlobals = app.app_ctx_globals_class() + self._cv_tokens: list[contextvars.Token] = [] + + def push(self) -> None: + """Binds the app context to the current context.""" + self._cv_tokens.append(_cv_app.set(self)) + appcontext_pushed.send(self.app, _async_wrapper=self.app.ensure_sync) + + def pop(self, exc: BaseException | None = _sentinel) -> None: # type: ignore + """Pops the app context.""" + try: + if len(self._cv_tokens) == 1: + if exc is _sentinel: + exc = sys.exc_info()[1] + self.app.do_teardown_appcontext(exc) + finally: + ctx = _cv_app.get() + _cv_app.reset(self._cv_tokens.pop()) + + if ctx is not self: + raise AssertionError( + f"Popped wrong app context. ({ctx!r} instead of {self!r})" + ) + + appcontext_popped.send(self.app, _async_wrapper=self.app.ensure_sync) + + def __enter__(self) -> AppContext: + self.push() + return self + + def __exit__( + self, + exc_type: type | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.pop(exc_value) + + +class RequestContext: + """The request context contains per-request information. The Flask + app creates and pushes it at the beginning of the request, then pops + it at the end of the request. It will create the URL adapter and + request object for the WSGI environment provided. + + Do not attempt to use this class directly, instead use + :meth:`~flask.Flask.test_request_context` and + :meth:`~flask.Flask.request_context` to create this object. + + When the request context is popped, it will evaluate all the + functions registered on the application for teardown execution + (:meth:`~flask.Flask.teardown_request`). + + The request context is automatically popped at the end of the + request. When using the interactive debugger, the context will be + restored so ``request`` is still accessible. Similarly, the test + client can preserve the context after the request ends. However, + teardown functions may already have closed some resources such as + database connections. + """ + + def __init__( + self, + app: Flask, + environ: dict, + request: Request | None = None, + session: SessionMixin | None = None, + ) -> None: + self.app = app + if request is None: + request = app.request_class(environ) + request.json_module = app.json + self.request: Request = request + self.url_adapter = None + try: + self.url_adapter = app.create_url_adapter(self.request) + except HTTPException as e: + self.request.routing_exception = e + self.flashes: list[tuple[str, str]] | None = None + self.session: SessionMixin | None = session + # Functions that should be executed after the request on the response + # object. These will be called before the regular "after_request" + # functions. + self._after_request_functions: list[ft.AfterRequestCallable] = [] + + self._cv_tokens: list[tuple[contextvars.Token, AppContext | None]] = [] + + def copy(self) -> RequestContext: + """Creates a copy of this request context with the same request object. + This can be used to move a request context to a different greenlet. + Because the actual request object is the same this cannot be used to + move a request context to a different thread unless access to the + request object is locked. + + .. versionadded:: 0.10 + + .. versionchanged:: 1.1 + The current session object is used instead of reloading the original + data. This prevents `flask.session` pointing to an out-of-date object. + """ + return self.__class__( + self.app, + environ=self.request.environ, + request=self.request, + session=self.session, + ) + + def match_request(self) -> None: + """Can be overridden by a subclass to hook into the matching + of the request. + """ + try: + result = self.url_adapter.match(return_rule=True) # type: ignore + self.request.url_rule, self.request.view_args = result # type: ignore + except HTTPException as e: + self.request.routing_exception = e + + def push(self) -> None: + # Before we push the request context we have to ensure that there + # is an application context. + app_ctx = _cv_app.get(None) + + if app_ctx is None or app_ctx.app is not self.app: + app_ctx = self.app.app_context() + app_ctx.push() + else: + app_ctx = None + + self._cv_tokens.append((_cv_request.set(self), app_ctx)) + + # Open the session at the moment that the request context is available. + # This allows a custom open_session method to use the request context. + # Only open a new session if this is the first time the request was + # pushed, otherwise stream_with_context loses the session. + if self.session is None: + session_interface = self.app.session_interface + self.session = session_interface.open_session(self.app, self.request) + + if self.session is None: + self.session = session_interface.make_null_session(self.app) + + # Match the request URL after loading the session, so that the + # session is available in custom URL converters. + if self.url_adapter is not None: + self.match_request() + + def pop(self, exc: BaseException | None = _sentinel) -> None: # type: ignore + """Pops the request context and unbinds it by doing that. This will + also trigger the execution of functions registered by the + :meth:`~flask.Flask.teardown_request` decorator. + + .. versionchanged:: 0.9 + Added the `exc` argument. + """ + clear_request = len(self._cv_tokens) == 1 + + try: + if clear_request: + if exc is _sentinel: + exc = sys.exc_info()[1] + self.app.do_teardown_request(exc) + + request_close = getattr(self.request, "close", None) + if request_close is not None: + request_close() + finally: + ctx = _cv_request.get() + token, app_ctx = self._cv_tokens.pop() + _cv_request.reset(token) + + # get rid of circular dependencies at the end of the request + # so that we don't require the GC to be active. + if clear_request: + ctx.request.environ["werkzeug.request"] = None + + if app_ctx is not None: + app_ctx.pop(exc) + + if ctx is not self: + raise AssertionError( + f"Popped wrong request context. ({ctx!r} instead of {self!r})" + ) + + def __enter__(self) -> RequestContext: + self.push() + return self + + def __exit__( + self, + exc_type: type | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.pop(exc_value) + + def __repr__(self) -> str: + return ( + f"<{type(self).__name__} {self.request.url!r}" + f" [{self.request.method}] of {self.app.name}>" + ) diff --git a/server/venv/lib/python3.10/site-packages/flask/debughelpers.py b/server/venv/lib/python3.10/site-packages/flask/debughelpers.py new file mode 100644 index 0000000..e836004 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/debughelpers.py @@ -0,0 +1,160 @@ +from __future__ import annotations + +import typing as t + +from .blueprints import Blueprint +from .globals import request_ctx +from .sansio.app import App + + +class UnexpectedUnicodeError(AssertionError, UnicodeError): + """Raised in places where we want some better error reporting for + unexpected unicode or binary data. + """ + + +class DebugFilesKeyError(KeyError, AssertionError): + """Raised from request.files during debugging. The idea is that it can + provide a better error message than just a generic KeyError/BadRequest. + """ + + def __init__(self, request, key): + form_matches = request.form.getlist(key) + buf = [ + f"You tried to access the file {key!r} in the request.files" + " dictionary but it does not exist. The mimetype for the" + f" request is {request.mimetype!r} instead of" + " 'multipart/form-data' which means that no file contents" + " were transmitted. To fix this error you should provide" + ' enctype="multipart/form-data" in your form.' + ] + if form_matches: + names = ", ".join(repr(x) for x in form_matches) + buf.append( + "\n\nThe browser instead transmitted some file names. " + f"This was submitted: {names}" + ) + self.msg = "".join(buf) + + def __str__(self): + return self.msg + + +class FormDataRoutingRedirect(AssertionError): + """This exception is raised in debug mode if a routing redirect + would cause the browser to drop the method or body. This happens + when method is not GET, HEAD or OPTIONS and the status code is not + 307 or 308. + """ + + def __init__(self, request): + exc = request.routing_exception + buf = [ + f"A request was sent to '{request.url}', but routing issued" + f" a redirect to the canonical URL '{exc.new_url}'." + ] + + if f"{request.base_url}/" == exc.new_url.partition("?")[0]: + buf.append( + " The URL was defined with a trailing slash. Flask" + " will redirect to the URL with a trailing slash if it" + " was accessed without one." + ) + + buf.append( + " Send requests to the canonical URL, or use 307 or 308 for" + " routing redirects. Otherwise, browsers will drop form" + " data.\n\n" + "This exception is only raised in debug mode." + ) + super().__init__("".join(buf)) + + +def attach_enctype_error_multidict(request): + """Patch ``request.files.__getitem__`` to raise a descriptive error + about ``enctype=multipart/form-data``. + + :param request: The request to patch. + :meta private: + """ + oldcls = request.files.__class__ + + class newcls(oldcls): + def __getitem__(self, key): + try: + return super().__getitem__(key) + except KeyError as e: + if key not in request.form: + raise + + raise DebugFilesKeyError(request, key).with_traceback( + e.__traceback__ + ) from None + + newcls.__name__ = oldcls.__name__ + newcls.__module__ = oldcls.__module__ + request.files.__class__ = newcls + + +def _dump_loader_info(loader) -> t.Generator: + yield f"class: {type(loader).__module__}.{type(loader).__name__}" + for key, value in sorted(loader.__dict__.items()): + if key.startswith("_"): + continue + if isinstance(value, (tuple, list)): + if not all(isinstance(x, str) for x in value): + continue + yield f"{key}:" + for item in value: + yield f" - {item}" + continue + elif not isinstance(value, (str, int, float, bool)): + continue + yield f"{key}: {value!r}" + + +def explain_template_loading_attempts(app: App, template, attempts) -> None: + """This should help developers understand what failed""" + info = [f"Locating template {template!r}:"] + total_found = 0 + blueprint = None + if request_ctx and request_ctx.request.blueprint is not None: + blueprint = request_ctx.request.blueprint + + for idx, (loader, srcobj, triple) in enumerate(attempts): + if isinstance(srcobj, App): + src_info = f"application {srcobj.import_name!r}" + elif isinstance(srcobj, Blueprint): + src_info = f"blueprint {srcobj.name!r} ({srcobj.import_name})" + else: + src_info = repr(srcobj) + + info.append(f"{idx + 1:5}: trying loader of {src_info}") + + for line in _dump_loader_info(loader): + info.append(f" {line}") + + if triple is None: + detail = "no match" + else: + detail = f"found ({triple[1] or ''!r})" + total_found += 1 + info.append(f" -> {detail}") + + seems_fishy = False + if total_found == 0: + info.append("Error: the template could not be found.") + seems_fishy = True + elif total_found > 1: + info.append("Warning: multiple loaders returned a match for the template.") + seems_fishy = True + + if blueprint is not None and seems_fishy: + info.append( + " The template was looked up from an endpoint that belongs" + f" to the blueprint {blueprint!r}." + ) + info.append(" Maybe you did not place a template in the right folder?") + info.append(" See https://flask.palletsprojects.com/blueprints/#templates") + + app.logger.info("\n".join(info)) diff --git a/server/venv/lib/python3.10/site-packages/flask/globals.py b/server/venv/lib/python3.10/site-packages/flask/globals.py new file mode 100644 index 0000000..e2c410c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/globals.py @@ -0,0 +1,51 @@ +from __future__ import annotations + +import typing as t +from contextvars import ContextVar + +from werkzeug.local import LocalProxy + +if t.TYPE_CHECKING: # pragma: no cover + from .app import Flask + from .ctx import _AppCtxGlobals + from .ctx import AppContext + from .ctx import RequestContext + from .sessions import SessionMixin + from .wrappers import Request + + +_no_app_msg = """\ +Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information.\ +""" +_cv_app: ContextVar[AppContext] = ContextVar("flask.app_ctx") +app_ctx: AppContext = LocalProxy( # type: ignore[assignment] + _cv_app, unbound_message=_no_app_msg +) +current_app: Flask = LocalProxy( # type: ignore[assignment] + _cv_app, "app", unbound_message=_no_app_msg +) +g: _AppCtxGlobals = LocalProxy( # type: ignore[assignment] + _cv_app, "g", unbound_message=_no_app_msg +) + +_no_req_msg = """\ +Working outside of request context. + +This typically means that you attempted to use functionality that needed +an active HTTP request. Consult the documentation on testing for +information about how to avoid this problem.\ +""" +_cv_request: ContextVar[RequestContext] = ContextVar("flask.request_ctx") +request_ctx: RequestContext = LocalProxy( # type: ignore[assignment] + _cv_request, unbound_message=_no_req_msg +) +request: Request = LocalProxy( # type: ignore[assignment] + _cv_request, "request", unbound_message=_no_req_msg +) +session: SessionMixin = LocalProxy( # type: ignore[assignment] + _cv_request, "session", unbound_message=_no_req_msg +) diff --git a/server/venv/lib/python3.10/site-packages/flask/helpers.py b/server/venv/lib/python3.10/site-packages/flask/helpers.py new file mode 100644 index 0000000..13a5aa2 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/helpers.py @@ -0,0 +1,623 @@ +from __future__ import annotations + +import importlib.util +import os +import sys +import typing as t +from datetime import datetime +from functools import lru_cache +from functools import update_wrapper + +import werkzeug.utils +from werkzeug.exceptions import abort as _wz_abort +from werkzeug.utils import redirect as _wz_redirect + +from .globals import _cv_request +from .globals import current_app +from .globals import request +from .globals import request_ctx +from .globals import session +from .signals import message_flashed + +if t.TYPE_CHECKING: # pragma: no cover + from werkzeug.wrappers import Response as BaseResponse + from .wrappers import Response + + +def get_debug_flag() -> bool: + """Get whether debug mode should be enabled for the app, indicated by the + :envvar:`FLASK_DEBUG` environment variable. The default is ``False``. + """ + val = os.environ.get("FLASK_DEBUG") + return bool(val and val.lower() not in {"0", "false", "no"}) + + +def get_load_dotenv(default: bool = True) -> bool: + """Get whether the user has disabled loading default dotenv files by + setting :envvar:`FLASK_SKIP_DOTENV`. The default is ``True``, load + the files. + + :param default: What to return if the env var isn't set. + """ + val = os.environ.get("FLASK_SKIP_DOTENV") + + if not val: + return default + + return val.lower() in ("0", "false", "no") + + +def stream_with_context( + generator_or_function: ( + t.Iterator[t.AnyStr] | t.Callable[..., t.Iterator[t.AnyStr]] + ) +) -> t.Iterator[t.AnyStr]: + """Request contexts disappear when the response is started on the server. + This is done for efficiency reasons and to make it less likely to encounter + memory leaks with badly written WSGI middlewares. The downside is that if + you are using streamed responses, the generator cannot access request bound + information any more. + + This function however can help you keep the context around for longer:: + + from flask import stream_with_context, request, Response + + @app.route('/stream') + def streamed_response(): + @stream_with_context + def generate(): + yield 'Hello ' + yield request.args['name'] + yield '!' + return Response(generate()) + + Alternatively it can also be used around a specific generator:: + + from flask import stream_with_context, request, Response + + @app.route('/stream') + def streamed_response(): + def generate(): + yield 'Hello ' + yield request.args['name'] + yield '!' + return Response(stream_with_context(generate())) + + .. versionadded:: 0.9 + """ + try: + gen = iter(generator_or_function) # type: ignore + except TypeError: + + def decorator(*args: t.Any, **kwargs: t.Any) -> t.Any: + gen = generator_or_function(*args, **kwargs) # type: ignore + return stream_with_context(gen) + + return update_wrapper(decorator, generator_or_function) # type: ignore + + def generator() -> t.Generator: + ctx = _cv_request.get(None) + if ctx is None: + raise RuntimeError( + "'stream_with_context' can only be used when a request" + " context is active, such as in a view function." + ) + with ctx: + # Dummy sentinel. Has to be inside the context block or we're + # not actually keeping the context around. + yield None + + # The try/finally is here so that if someone passes a WSGI level + # iterator in we're still running the cleanup logic. Generators + # don't need that because they are closed on their destruction + # automatically. + try: + yield from gen + finally: + if hasattr(gen, "close"): + gen.close() + + # The trick is to start the generator. Then the code execution runs until + # the first dummy None is yielded at which point the context was already + # pushed. This item is discarded. Then when the iteration continues the + # real generator is executed. + wrapped_g = generator() + next(wrapped_g) + return wrapped_g + + +def make_response(*args: t.Any) -> Response: + """Sometimes it is necessary to set additional headers in a view. Because + views do not have to return response objects but can return a value that + is converted into a response object by Flask itself, it becomes tricky to + add headers to it. This function can be called instead of using a return + and you will get a response object which you can use to attach headers. + + If view looked like this and you want to add a new header:: + + def index(): + return render_template('index.html', foo=42) + + You can now do something like this:: + + def index(): + response = make_response(render_template('index.html', foo=42)) + response.headers['X-Parachutes'] = 'parachutes are cool' + return response + + This function accepts the very same arguments you can return from a + view function. This for example creates a response with a 404 error + code:: + + response = make_response(render_template('not_found.html'), 404) + + The other use case of this function is to force the return value of a + view function into a response which is helpful with view + decorators:: + + response = make_response(view_function()) + response.headers['X-Parachutes'] = 'parachutes are cool' + + Internally this function does the following things: + + - if no arguments are passed, it creates a new response argument + - if one argument is passed, :meth:`flask.Flask.make_response` + is invoked with it. + - if more than one argument is passed, the arguments are passed + to the :meth:`flask.Flask.make_response` function as tuple. + + .. versionadded:: 0.6 + """ + if not args: + return current_app.response_class() + if len(args) == 1: + args = args[0] + return current_app.make_response(args) # type: ignore + + +def url_for( + endpoint: str, + *, + _anchor: str | None = None, + _method: str | None = None, + _scheme: str | None = None, + _external: bool | None = None, + **values: t.Any, +) -> str: + """Generate a URL to the given endpoint with the given values. + + This requires an active request or application context, and calls + :meth:`current_app.url_for() `. See that method + for full documentation. + + :param endpoint: The endpoint name associated with the URL to + generate. If this starts with a ``.``, the current blueprint + name (if any) will be used. + :param _anchor: If given, append this as ``#anchor`` to the URL. + :param _method: If given, generate the URL associated with this + method for the endpoint. + :param _scheme: If given, the URL will have this scheme if it is + external. + :param _external: If given, prefer the URL to be internal (False) or + require it to be external (True). External URLs include the + scheme and domain. When not in an active request, URLs are + external by default. + :param values: Values to use for the variable parts of the URL rule. + Unknown keys are appended as query string arguments, like + ``?a=b&c=d``. + + .. versionchanged:: 2.2 + Calls ``current_app.url_for``, allowing an app to override the + behavior. + + .. versionchanged:: 0.10 + The ``_scheme`` parameter was added. + + .. versionchanged:: 0.9 + The ``_anchor`` and ``_method`` parameters were added. + + .. versionchanged:: 0.9 + Calls ``app.handle_url_build_error`` on build errors. + """ + return current_app.url_for( + endpoint, + _anchor=_anchor, + _method=_method, + _scheme=_scheme, + _external=_external, + **values, + ) + + +def redirect( + location: str, code: int = 302, Response: type[BaseResponse] | None = None +) -> BaseResponse: + """Create a redirect response object. + + If :data:`~flask.current_app` is available, it will use its + :meth:`~flask.Flask.redirect` method, otherwise it will use + :func:`werkzeug.utils.redirect`. + + :param location: The URL to redirect to. + :param code: The status code for the redirect. + :param Response: The response class to use. Not used when + ``current_app`` is active, which uses ``app.response_class``. + + .. versionadded:: 2.2 + Calls ``current_app.redirect`` if available instead of always + using Werkzeug's default ``redirect``. + """ + if current_app: + return current_app.redirect(location, code=code) + + return _wz_redirect(location, code=code, Response=Response) + + +def abort(code: int | BaseResponse, *args: t.Any, **kwargs: t.Any) -> t.NoReturn: + """Raise an :exc:`~werkzeug.exceptions.HTTPException` for the given + status code. + + If :data:`~flask.current_app` is available, it will call its + :attr:`~flask.Flask.aborter` object, otherwise it will use + :func:`werkzeug.exceptions.abort`. + + :param code: The status code for the exception, which must be + registered in ``app.aborter``. + :param args: Passed to the exception. + :param kwargs: Passed to the exception. + + .. versionadded:: 2.2 + Calls ``current_app.aborter`` if available instead of always + using Werkzeug's default ``abort``. + """ + if current_app: + current_app.aborter(code, *args, **kwargs) + + _wz_abort(code, *args, **kwargs) + + +def get_template_attribute(template_name: str, attribute: str) -> t.Any: + """Loads a macro (or variable) a template exports. This can be used to + invoke a macro from within Python code. If you for example have a + template named :file:`_cider.html` with the following contents: + + .. sourcecode:: html+jinja + + {% macro hello(name) %}Hello {{ name }}!{% endmacro %} + + You can access this from Python code like this:: + + hello = get_template_attribute('_cider.html', 'hello') + return hello('World') + + .. versionadded:: 0.2 + + :param template_name: the name of the template + :param attribute: the name of the variable of macro to access + """ + return getattr(current_app.jinja_env.get_template(template_name).module, attribute) + + +def flash(message: str, category: str = "message") -> None: + """Flashes a message to the next request. In order to remove the + flashed message from the session and to display it to the user, + the template has to call :func:`get_flashed_messages`. + + .. versionchanged:: 0.3 + `category` parameter added. + + :param message: the message to be flashed. + :param category: the category for the message. The following values + are recommended: ``'message'`` for any kind of message, + ``'error'`` for errors, ``'info'`` for information + messages and ``'warning'`` for warnings. However any + kind of string can be used as category. + """ + # Original implementation: + # + # session.setdefault('_flashes', []).append((category, message)) + # + # This assumed that changes made to mutable structures in the session are + # always in sync with the session object, which is not true for session + # implementations that use external storage for keeping their keys/values. + flashes = session.get("_flashes", []) + flashes.append((category, message)) + session["_flashes"] = flashes + app = current_app._get_current_object() # type: ignore + message_flashed.send( + app, + _async_wrapper=app.ensure_sync, + message=message, + category=category, + ) + + +def get_flashed_messages( + with_categories: bool = False, category_filter: t.Iterable[str] = () +) -> list[str] | list[tuple[str, str]]: + """Pulls all flashed messages from the session and returns them. + Further calls in the same request to the function will return + the same messages. By default just the messages are returned, + but when `with_categories` is set to ``True``, the return value will + be a list of tuples in the form ``(category, message)`` instead. + + Filter the flashed messages to one or more categories by providing those + categories in `category_filter`. This allows rendering categories in + separate html blocks. The `with_categories` and `category_filter` + arguments are distinct: + + * `with_categories` controls whether categories are returned with message + text (``True`` gives a tuple, where ``False`` gives just the message text). + * `category_filter` filters the messages down to only those matching the + provided categories. + + See :doc:`/patterns/flashing` for examples. + + .. versionchanged:: 0.3 + `with_categories` parameter added. + + .. versionchanged:: 0.9 + `category_filter` parameter added. + + :param with_categories: set to ``True`` to also receive categories. + :param category_filter: filter of categories to limit return values. Only + categories in the list will be returned. + """ + flashes = request_ctx.flashes + if flashes is None: + flashes = session.pop("_flashes") if "_flashes" in session else [] + request_ctx.flashes = flashes + if category_filter: + flashes = list(filter(lambda f: f[0] in category_filter, flashes)) + if not with_categories: + return [x[1] for x in flashes] + return flashes + + +def _prepare_send_file_kwargs(**kwargs: t.Any) -> dict[str, t.Any]: + if kwargs.get("max_age") is None: + kwargs["max_age"] = current_app.get_send_file_max_age + + kwargs.update( + environ=request.environ, + use_x_sendfile=current_app.config["USE_X_SENDFILE"], + response_class=current_app.response_class, + _root_path=current_app.root_path, # type: ignore + ) + return kwargs + + +def send_file( + path_or_file: os.PathLike | str | t.BinaryIO, + mimetype: str | None = None, + as_attachment: bool = False, + download_name: str | None = None, + conditional: bool = True, + etag: bool | str = True, + last_modified: datetime | int | float | None = None, + max_age: None | (int | t.Callable[[str | None], int | None]) = None, +) -> Response: + """Send the contents of a file to the client. + + The first argument can be a file path or a file-like object. Paths + are preferred in most cases because Werkzeug can manage the file and + get extra information from the path. Passing a file-like object + requires that the file is opened in binary mode, and is mostly + useful when building a file in memory with :class:`io.BytesIO`. + + Never pass file paths provided by a user. The path is assumed to be + trusted, so a user could craft a path to access a file you didn't + intend. Use :func:`send_from_directory` to safely serve + user-requested paths from within a directory. + + If the WSGI server sets a ``file_wrapper`` in ``environ``, it is + used, otherwise Werkzeug's built-in wrapper is used. Alternatively, + if the HTTP server supports ``X-Sendfile``, configuring Flask with + ``USE_X_SENDFILE = True`` will tell the server to send the given + path, which is much more efficient than reading it in Python. + + :param path_or_file: The path to the file to send, relative to the + current working directory if a relative path is given. + Alternatively, a file-like object opened in binary mode. Make + sure the file pointer is seeked to the start of the data. + :param mimetype: The MIME type to send for the file. If not + provided, it will try to detect it from the file name. + :param as_attachment: Indicate to a browser that it should offer to + save the file instead of displaying it. + :param download_name: The default name browsers will use when saving + the file. Defaults to the passed file name. + :param conditional: Enable conditional and range responses based on + request headers. Requires passing a file path and ``environ``. + :param etag: Calculate an ETag for the file, which requires passing + a file path. Can also be a string to use instead. + :param last_modified: The last modified time to send for the file, + in seconds. If not provided, it will try to detect it from the + file path. + :param max_age: How long the client should cache the file, in + seconds. If set, ``Cache-Control`` will be ``public``, otherwise + it will be ``no-cache`` to prefer conditional caching. + + .. versionchanged:: 2.0 + ``download_name`` replaces the ``attachment_filename`` + parameter. If ``as_attachment=False``, it is passed with + ``Content-Disposition: inline`` instead. + + .. versionchanged:: 2.0 + ``max_age`` replaces the ``cache_timeout`` parameter. + ``conditional`` is enabled and ``max_age`` is not set by + default. + + .. versionchanged:: 2.0 + ``etag`` replaces the ``add_etags`` parameter. It can be a + string to use instead of generating one. + + .. versionchanged:: 2.0 + Passing a file-like object that inherits from + :class:`~io.TextIOBase` will raise a :exc:`ValueError` rather + than sending an empty file. + + .. versionadded:: 2.0 + Moved the implementation to Werkzeug. This is now a wrapper to + pass some Flask-specific arguments. + + .. versionchanged:: 1.1 + ``filename`` may be a :class:`~os.PathLike` object. + + .. versionchanged:: 1.1 + Passing a :class:`~io.BytesIO` object supports range requests. + + .. versionchanged:: 1.0.3 + Filenames are encoded with ASCII instead of Latin-1 for broader + compatibility with WSGI servers. + + .. versionchanged:: 1.0 + UTF-8 filenames as specified in :rfc:`2231` are supported. + + .. versionchanged:: 0.12 + The filename is no longer automatically inferred from file + objects. If you want to use automatic MIME and etag support, + pass a filename via ``filename_or_fp`` or + ``attachment_filename``. + + .. versionchanged:: 0.12 + ``attachment_filename`` is preferred over ``filename`` for MIME + detection. + + .. versionchanged:: 0.9 + ``cache_timeout`` defaults to + :meth:`Flask.get_send_file_max_age`. + + .. versionchanged:: 0.7 + MIME guessing and etag support for file-like objects was + removed because it was unreliable. Pass a filename if you are + able to, otherwise attach an etag yourself. + + .. versionchanged:: 0.5 + The ``add_etags``, ``cache_timeout`` and ``conditional`` + parameters were added. The default behavior is to add etags. + + .. versionadded:: 0.2 + """ + return werkzeug.utils.send_file( # type: ignore[return-value] + **_prepare_send_file_kwargs( + path_or_file=path_or_file, + environ=request.environ, + mimetype=mimetype, + as_attachment=as_attachment, + download_name=download_name, + conditional=conditional, + etag=etag, + last_modified=last_modified, + max_age=max_age, + ) + ) + + +def send_from_directory( + directory: os.PathLike | str, + path: os.PathLike | str, + **kwargs: t.Any, +) -> Response: + """Send a file from within a directory using :func:`send_file`. + + .. code-block:: python + + @app.route("/uploads/") + def download_file(name): + return send_from_directory( + app.config['UPLOAD_FOLDER'], name, as_attachment=True + ) + + This is a secure way to serve files from a folder, such as static + files or uploads. Uses :func:`~werkzeug.security.safe_join` to + ensure the path coming from the client is not maliciously crafted to + point outside the specified directory. + + If the final path does not point to an existing regular file, + raises a 404 :exc:`~werkzeug.exceptions.NotFound` error. + + :param directory: The directory that ``path`` must be located under, + relative to the current application's root path. + :param path: The path to the file to send, relative to + ``directory``. + :param kwargs: Arguments to pass to :func:`send_file`. + + .. versionchanged:: 2.0 + ``path`` replaces the ``filename`` parameter. + + .. versionadded:: 2.0 + Moved the implementation to Werkzeug. This is now a wrapper to + pass some Flask-specific arguments. + + .. versionadded:: 0.5 + """ + return werkzeug.utils.send_from_directory( # type: ignore[return-value] + directory, path, **_prepare_send_file_kwargs(**kwargs) + ) + + +def get_root_path(import_name: str) -> str: + """Find the root path of a package, or the path that contains a + module. If it cannot be found, returns the current working + directory. + + Not to be confused with the value returned by :func:`find_package`. + + :meta private: + """ + # Module already imported and has a file attribute. Use that first. + mod = sys.modules.get(import_name) + + if mod is not None and hasattr(mod, "__file__") and mod.__file__ is not None: + return os.path.dirname(os.path.abspath(mod.__file__)) + + # Next attempt: check the loader. + try: + spec = importlib.util.find_spec(import_name) + + if spec is None: + raise ValueError + except (ImportError, ValueError): + loader = None + else: + loader = spec.loader + + # Loader does not exist or we're referring to an unloaded main + # module or a main module without path (interactive sessions), go + # with the current working directory. + if loader is None: + return os.getcwd() + + if hasattr(loader, "get_filename"): + filepath = loader.get_filename(import_name) + else: + # Fall back to imports. + __import__(import_name) + mod = sys.modules[import_name] + filepath = getattr(mod, "__file__", None) + + # If we don't have a file path it might be because it is a + # namespace package. In this case pick the root path from the + # first module that is contained in the package. + if filepath is None: + raise RuntimeError( + "No root path can be found for the provided module" + f" {import_name!r}. This can happen because the module" + " came from an import hook that does not provide file" + " name information or because it's a namespace package." + " In this case the root path needs to be explicitly" + " provided." + ) + + # filepath is import_name.py for a module, or __init__.py for a package. + return os.path.dirname(os.path.abspath(filepath)) + + +@lru_cache(maxsize=None) +def _split_blueprint_path(name: str) -> list[str]: + out: list[str] = [name] + + if "." in name: + out.extend(_split_blueprint_path(name.rpartition(".")[0])) + + return out diff --git a/server/venv/lib/python3.10/site-packages/flask/json/__init__.py b/server/venv/lib/python3.10/site-packages/flask/json/__init__.py new file mode 100644 index 0000000..f15296f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/json/__init__.py @@ -0,0 +1,170 @@ +from __future__ import annotations + +import json as _json +import typing as t + +from ..globals import current_app +from .provider import _default + +if t.TYPE_CHECKING: # pragma: no cover + from ..wrappers import Response + + +def dumps(obj: t.Any, **kwargs: t.Any) -> str: + """Serialize data as JSON. + + If :data:`~flask.current_app` is available, it will use its + :meth:`app.json.dumps() ` + method, otherwise it will use :func:`json.dumps`. + + :param obj: The data to serialize. + :param kwargs: Arguments passed to the ``dumps`` implementation. + + .. versionchanged:: 2.3 + The ``app`` parameter was removed. + + .. versionchanged:: 2.2 + Calls ``current_app.json.dumps``, allowing an app to override + the behavior. + + .. versionchanged:: 2.0.2 + :class:`decimal.Decimal` is supported by converting to a string. + + .. versionchanged:: 2.0 + ``encoding`` will be removed in Flask 2.1. + + .. versionchanged:: 1.0.3 + ``app`` can be passed directly, rather than requiring an app + context for configuration. + """ + if current_app: + return current_app.json.dumps(obj, **kwargs) + + kwargs.setdefault("default", _default) + return _json.dumps(obj, **kwargs) + + +def dump(obj: t.Any, fp: t.IO[str], **kwargs: t.Any) -> None: + """Serialize data as JSON and write to a file. + + If :data:`~flask.current_app` is available, it will use its + :meth:`app.json.dump() ` + method, otherwise it will use :func:`json.dump`. + + :param obj: The data to serialize. + :param fp: A file opened for writing text. Should use the UTF-8 + encoding to be valid JSON. + :param kwargs: Arguments passed to the ``dump`` implementation. + + .. versionchanged:: 2.3 + The ``app`` parameter was removed. + + .. versionchanged:: 2.2 + Calls ``current_app.json.dump``, allowing an app to override + the behavior. + + .. versionchanged:: 2.0 + Writing to a binary file, and the ``encoding`` argument, will be + removed in Flask 2.1. + """ + if current_app: + current_app.json.dump(obj, fp, **kwargs) + else: + kwargs.setdefault("default", _default) + _json.dump(obj, fp, **kwargs) + + +def loads(s: str | bytes, **kwargs: t.Any) -> t.Any: + """Deserialize data as JSON. + + If :data:`~flask.current_app` is available, it will use its + :meth:`app.json.loads() ` + method, otherwise it will use :func:`json.loads`. + + :param s: Text or UTF-8 bytes. + :param kwargs: Arguments passed to the ``loads`` implementation. + + .. versionchanged:: 2.3 + The ``app`` parameter was removed. + + .. versionchanged:: 2.2 + Calls ``current_app.json.loads``, allowing an app to override + the behavior. + + .. versionchanged:: 2.0 + ``encoding`` will be removed in Flask 2.1. The data must be a + string or UTF-8 bytes. + + .. versionchanged:: 1.0.3 + ``app`` can be passed directly, rather than requiring an app + context for configuration. + """ + if current_app: + return current_app.json.loads(s, **kwargs) + + return _json.loads(s, **kwargs) + + +def load(fp: t.IO[t.AnyStr], **kwargs: t.Any) -> t.Any: + """Deserialize data as JSON read from a file. + + If :data:`~flask.current_app` is available, it will use its + :meth:`app.json.load() ` + method, otherwise it will use :func:`json.load`. + + :param fp: A file opened for reading text or UTF-8 bytes. + :param kwargs: Arguments passed to the ``load`` implementation. + + .. versionchanged:: 2.3 + The ``app`` parameter was removed. + + .. versionchanged:: 2.2 + Calls ``current_app.json.load``, allowing an app to override + the behavior. + + .. versionchanged:: 2.2 + The ``app`` parameter will be removed in Flask 2.3. + + .. versionchanged:: 2.0 + ``encoding`` will be removed in Flask 2.1. The file must be text + mode, or binary mode with UTF-8 bytes. + """ + if current_app: + return current_app.json.load(fp, **kwargs) + + return _json.load(fp, **kwargs) + + +def jsonify(*args: t.Any, **kwargs: t.Any) -> Response: + """Serialize the given arguments as JSON, and return a + :class:`~flask.Response` object with the ``application/json`` + mimetype. A dict or list returned from a view will be converted to a + JSON response automatically without needing to call this. + + This requires an active request or application context, and calls + :meth:`app.json.response() `. + + In debug mode, the output is formatted with indentation to make it + easier to read. This may also be controlled by the provider. + + Either positional or keyword arguments can be given, not both. + If no arguments are given, ``None`` is serialized. + + :param args: A single value to serialize, or multiple values to + treat as a list to serialize. + :param kwargs: Treat as a dict to serialize. + + .. versionchanged:: 2.2 + Calls ``current_app.json.response``, allowing an app to override + the behavior. + + .. versionchanged:: 2.0.2 + :class:`decimal.Decimal` is supported by converting to a string. + + .. versionchanged:: 0.11 + Added support for serializing top-level arrays. This was a + security risk in ancient browsers. See :ref:`security-json`. + + .. versionadded:: 0.2 + """ + return current_app.json.response(*args, **kwargs) diff --git a/server/venv/lib/python3.10/site-packages/flask/json/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/json/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0a54a4351ec4994ded4d6f92c9fe683e958af5f GIT binary patch literal 6007 zcmd5=&u=416?WTB;_)Pz-R!XQW7*kamjgygJDHIXvQ{I8*%=sCWL6{y5rpirtL${r z?ry5eHbxOAP8_&%1BnX<{tNyEE`8-RXKp$1y{hiECvl?8D7zXOx=7M^UfUnaS^Dn{Opt@gak1TWtR@JD-V}&QI*SJ-T5|>n-*~4Msy;nq~>tS_+04 zSeJD=c1s-`dzgfhhS=-Q7V~{JmP+IPdxtz4NYQGshyEkG0%?*q&>=-YfL%};sn`VS zR&p4RrMOhi!$Qte9)=o{<}PARwVlo;!+>}aL<7bnhV^LwkgpVUTu7k$%+2eGP}fNjBV8ZXC%T;Z6P_=q<44$9Mqt+{&@%#Os%VK4n55Kq>(8q+a~Qa=b~cJW^aHeDH--U^xC4w(80K#9@8S)9lSE=D#;IT&S%s;b z%OpI$4iEl97LoOv$R)yu`lcH|p-tethnWi>JhiUM#z>tjxjZmepNy(?zcP z5juWOu1iTm_1AH={mLKdPFkk4n>OMv{JbwQYcSMfE5kpiw1eAS^@sy5y zrFcpM-^x4BIOpO(NvF*N7`)FpwOX9>h ze$PM+_LanTu&uch&<5z@ok~d7;!;DtpDRI7KKOACDK8=>WOp=R&a6m}I7NbkV6Vu( zaX=!w*1m#BFjJ1 zNh>it0yRA=i{zz?MY3nTZitdrfVzn5*En+FnFeP!WXar_ z7qn5#U6?xU&n8&Ae0_qIyC}v#oU2t_SSHDD`ue%T-0Hb+UVo)z+uzwK6#GO7*iBY? zv8*uHs||Q@vK7j)3~}{}PjzN}RC1cjqa+GRftfNDpsIrM3XggLteJIHJb^UK+LMyC zl zXl$hQcDp}96b5df0EWF3IK@9uyMv#YAm0#xuK#kWVJL$1S#SuVuNYzb0F9#l#hw)Y05lTOSN(h Vq;S<+#xf?$~iY((%+leT~e}yrfG94Z7yeb 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

$nXe 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/json/provider.py b/server/venv/lib/python3.10/site-packages/flask/json/provider.py new file mode 100644 index 0000000..3c22bc8 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/json/provider.py @@ -0,0 +1,216 @@ +from __future__ import annotations + +import dataclasses +import decimal +import json +import typing as t +import uuid +import weakref +from datetime import date + +from werkzeug.http import http_date + +if t.TYPE_CHECKING: # pragma: no cover + from ..sansio.app import App + from ..wrappers import Response + + +class JSONProvider: + """A standard set of JSON operations for an application. Subclasses + of this can be used to customize JSON behavior or use different + JSON libraries. + + To implement a provider for a specific library, subclass this base + class and implement at least :meth:`dumps` and :meth:`loads`. All + other methods have default implementations. + + To use a different provider, either subclass ``Flask`` and set + :attr:`~flask.Flask.json_provider_class` to a provider class, or set + :attr:`app.json ` to an instance of the class. + + :param app: An application instance. This will be stored as a + :class:`weakref.proxy` on the :attr:`_app` attribute. + + .. versionadded:: 2.2 + """ + + def __init__(self, app: App) -> None: + self._app = weakref.proxy(app) + + def dumps(self, obj: t.Any, **kwargs: t.Any) -> str: + """Serialize data as JSON. + + :param obj: The data to serialize. + :param kwargs: May be passed to the underlying JSON library. + """ + raise NotImplementedError + + def dump(self, obj: t.Any, fp: t.IO[str], **kwargs: t.Any) -> None: + """Serialize data as JSON and write to a file. + + :param obj: The data to serialize. + :param fp: A file opened for writing text. Should use the UTF-8 + encoding to be valid JSON. + :param kwargs: May be passed to the underlying JSON library. + """ + fp.write(self.dumps(obj, **kwargs)) + + def loads(self, s: str | bytes, **kwargs: t.Any) -> t.Any: + """Deserialize data as JSON. + + :param s: Text or UTF-8 bytes. + :param kwargs: May be passed to the underlying JSON library. + """ + raise NotImplementedError + + def load(self, fp: t.IO[t.AnyStr], **kwargs: t.Any) -> t.Any: + """Deserialize data as JSON read from a file. + + :param fp: A file opened for reading text or UTF-8 bytes. + :param kwargs: May be passed to the underlying JSON library. + """ + return self.loads(fp.read(), **kwargs) + + def _prepare_response_obj( + self, args: tuple[t.Any, ...], kwargs: dict[str, t.Any] + ) -> t.Any: + if args and kwargs: + raise TypeError("app.json.response() takes either args or kwargs, not both") + + if not args and not kwargs: + return None + + if len(args) == 1: + return args[0] + + return args or kwargs + + def response(self, *args: t.Any, **kwargs: t.Any) -> Response: + """Serialize the given arguments as JSON, and return a + :class:`~flask.Response` object with the ``application/json`` + mimetype. + + The :func:`~flask.json.jsonify` function calls this method for + the current application. + + Either positional or keyword arguments can be given, not both. + If no arguments are given, ``None`` is serialized. + + :param args: A single value to serialize, or multiple values to + treat as a list to serialize. + :param kwargs: Treat as a dict to serialize. + """ + obj = self._prepare_response_obj(args, kwargs) + return self._app.response_class(self.dumps(obj), mimetype="application/json") + + +def _default(o: t.Any) -> t.Any: + if isinstance(o, date): + return http_date(o) + + if isinstance(o, (decimal.Decimal, uuid.UUID)): + return str(o) + + if dataclasses and dataclasses.is_dataclass(o): + return dataclasses.asdict(o) + + if hasattr(o, "__html__"): + return str(o.__html__()) + + raise TypeError(f"Object of type {type(o).__name__} is not JSON serializable") + + +class DefaultJSONProvider(JSONProvider): + """Provide JSON operations using Python's built-in :mod:`json` + library. Serializes the following additional data types: + + - :class:`datetime.datetime` and :class:`datetime.date` are + serialized to :rfc:`822` strings. This is the same as the HTTP + date format. + - :class:`uuid.UUID` is serialized to a string. + - :class:`dataclasses.dataclass` is passed to + :func:`dataclasses.asdict`. + - :class:`~markupsafe.Markup` (or any object with a ``__html__`` + method) will call the ``__html__`` method to get a string. + """ + + default: t.Callable[[t.Any], t.Any] = staticmethod( + _default + ) # type: ignore[assignment] + """Apply this function to any object that :meth:`json.dumps` does + not know how to serialize. It should return a valid JSON type or + raise a ``TypeError``. + """ + + ensure_ascii = True + """Replace non-ASCII characters with escape sequences. This may be + more compatible with some clients, but can be disabled for better + performance and size. + """ + + sort_keys = True + """Sort the keys in any serialized dicts. This may be useful for + some caching situations, but can be disabled for better performance. + When enabled, keys must all be strings, they are not converted + before sorting. + """ + + compact: bool | None = None + """If ``True``, or ``None`` out of debug mode, the :meth:`response` + output will not add indentation, newlines, or spaces. If ``False``, + or ``None`` in debug mode, it will use a non-compact representation. + """ + + mimetype = "application/json" + """The mimetype set in :meth:`response`.""" + + def dumps(self, obj: t.Any, **kwargs: t.Any) -> str: + """Serialize data as JSON to a string. + + Keyword arguments are passed to :func:`json.dumps`. Sets some + parameter defaults from the :attr:`default`, + :attr:`ensure_ascii`, and :attr:`sort_keys` attributes. + + :param obj: The data to serialize. + :param kwargs: Passed to :func:`json.dumps`. + """ + kwargs.setdefault("default", self.default) + kwargs.setdefault("ensure_ascii", self.ensure_ascii) + kwargs.setdefault("sort_keys", self.sort_keys) + return json.dumps(obj, **kwargs) + + def loads(self, s: str | bytes, **kwargs: t.Any) -> t.Any: + """Deserialize data as JSON from a string or bytes. + + :param s: Text or UTF-8 bytes. + :param kwargs: Passed to :func:`json.loads`. + """ + return json.loads(s, **kwargs) + + def response(self, *args: t.Any, **kwargs: t.Any) -> Response: + """Serialize the given arguments as JSON, and return a + :class:`~flask.Response` object with it. The response mimetype + will be "application/json" and can be changed with + :attr:`mimetype`. + + If :attr:`compact` is ``False`` or debug mode is enabled, the + output will be formatted to be easier to read. + + Either positional or keyword arguments can be given, not both. + If no arguments are given, ``None`` is serialized. + + :param args: A single value to serialize, or multiple values to + treat as a list to serialize. + :param kwargs: Treat as a dict to serialize. + """ + obj = self._prepare_response_obj(args, kwargs) + dump_args: dict[str, t.Any] = {} + + if (self.compact is None and self._app.debug) or self.compact is False: + dump_args.setdefault("indent", 2) + else: + dump_args.setdefault("separators", (",", ":")) + + return self._app.response_class( + f"{self.dumps(obj, **dump_args)}\n", mimetype=self.mimetype + ) diff --git a/server/venv/lib/python3.10/site-packages/flask/json/tag.py b/server/venv/lib/python3.10/site-packages/flask/json/tag.py new file mode 100644 index 0000000..91cc441 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/json/tag.py @@ -0,0 +1,314 @@ +""" +Tagged JSON +~~~~~~~~~~~ + +A compact representation for lossless serialization of non-standard JSON +types. :class:`~flask.sessions.SecureCookieSessionInterface` uses this +to serialize the session data, but it may be useful in other places. It +can be extended to support other types. + +.. autoclass:: TaggedJSONSerializer + :members: + +.. autoclass:: JSONTag + :members: + +Let's see an example that adds support for +:class:`~collections.OrderedDict`. Dicts don't have an order in JSON, so +to handle this we will dump the items as a list of ``[key, value]`` +pairs. Subclass :class:`JSONTag` and give it the new key ``' od'`` to +identify the type. The session serializer processes dicts first, so +insert the new tag at the front of the order since ``OrderedDict`` must +be processed before ``dict``. + +.. code-block:: python + + from flask.json.tag import JSONTag + + class TagOrderedDict(JSONTag): + __slots__ = ('serializer',) + key = ' od' + + def check(self, value): + return isinstance(value, OrderedDict) + + def to_json(self, value): + return [[k, self.serializer.tag(v)] for k, v in iteritems(value)] + + def to_python(self, value): + return OrderedDict(value) + + app.session_interface.serializer.register(TagOrderedDict, index=0) +""" +from __future__ import annotations + +import typing as t +from base64 import b64decode +from base64 import b64encode +from datetime import datetime +from uuid import UUID + +from markupsafe import Markup +from werkzeug.http import http_date +from werkzeug.http import parse_date + +from ..json import dumps +from ..json import loads + + +class JSONTag: + """Base class for defining type tags for :class:`TaggedJSONSerializer`.""" + + __slots__ = ("serializer",) + + #: The tag to mark the serialized object with. If ``None``, this tag is + #: only used as an intermediate step during tagging. + key: str | None = None + + def __init__(self, serializer: TaggedJSONSerializer) -> None: + """Create a tagger for the given serializer.""" + self.serializer = serializer + + def check(self, value: t.Any) -> bool: + """Check if the given value should be tagged by this tag.""" + raise NotImplementedError + + def to_json(self, value: t.Any) -> t.Any: + """Convert the Python object to an object that is a valid JSON type. + The tag will be added later.""" + raise NotImplementedError + + def to_python(self, value: t.Any) -> t.Any: + """Convert the JSON representation back to the correct type. The tag + will already be removed.""" + raise NotImplementedError + + def tag(self, value: t.Any) -> t.Any: + """Convert the value to a valid JSON type and add the tag structure + around it.""" + return {self.key: self.to_json(value)} + + +class TagDict(JSONTag): + """Tag for 1-item dicts whose only key matches a registered tag. + + Internally, the dict key is suffixed with `__`, and the suffix is removed + when deserializing. + """ + + __slots__ = () + key = " di" + + def check(self, value: t.Any) -> bool: + return ( + isinstance(value, dict) + and len(value) == 1 + and next(iter(value)) in self.serializer.tags + ) + + def to_json(self, value: t.Any) -> t.Any: + key = next(iter(value)) + return {f"{key}__": self.serializer.tag(value[key])} + + def to_python(self, value: t.Any) -> t.Any: + key = next(iter(value)) + return {key[:-2]: value[key]} + + +class PassDict(JSONTag): + __slots__ = () + + def check(self, value: t.Any) -> bool: + return isinstance(value, dict) + + def to_json(self, value: t.Any) -> t.Any: + # JSON objects may only have string keys, so don't bother tagging the + # key here. + return {k: self.serializer.tag(v) for k, v in value.items()} + + tag = to_json + + +class TagTuple(JSONTag): + __slots__ = () + key = " t" + + def check(self, value: t.Any) -> bool: + return isinstance(value, tuple) + + def to_json(self, value: t.Any) -> t.Any: + return [self.serializer.tag(item) for item in value] + + def to_python(self, value: t.Any) -> t.Any: + return tuple(value) + + +class PassList(JSONTag): + __slots__ = () + + def check(self, value: t.Any) -> bool: + return isinstance(value, list) + + def to_json(self, value: t.Any) -> t.Any: + return [self.serializer.tag(item) for item in value] + + tag = to_json + + +class TagBytes(JSONTag): + __slots__ = () + key = " b" + + def check(self, value: t.Any) -> bool: + return isinstance(value, bytes) + + def to_json(self, value: t.Any) -> t.Any: + return b64encode(value).decode("ascii") + + def to_python(self, value: t.Any) -> t.Any: + return b64decode(value) + + +class TagMarkup(JSONTag): + """Serialize anything matching the :class:`~markupsafe.Markup` API by + having a ``__html__`` method to the result of that method. Always + deserializes to an instance of :class:`~markupsafe.Markup`.""" + + __slots__ = () + key = " m" + + def check(self, value: t.Any) -> bool: + return callable(getattr(value, "__html__", None)) + + def to_json(self, value: t.Any) -> t.Any: + return str(value.__html__()) + + def to_python(self, value: t.Any) -> t.Any: + return Markup(value) + + +class TagUUID(JSONTag): + __slots__ = () + key = " u" + + def check(self, value: t.Any) -> bool: + return isinstance(value, UUID) + + def to_json(self, value: t.Any) -> t.Any: + return value.hex + + def to_python(self, value: t.Any) -> t.Any: + return UUID(value) + + +class TagDateTime(JSONTag): + __slots__ = () + key = " d" + + def check(self, value: t.Any) -> bool: + return isinstance(value, datetime) + + def to_json(self, value: t.Any) -> t.Any: + return http_date(value) + + def to_python(self, value: t.Any) -> t.Any: + return parse_date(value) + + +class TaggedJSONSerializer: + """Serializer that uses a tag system to compactly represent objects that + are not JSON types. Passed as the intermediate serializer to + :class:`itsdangerous.Serializer`. + + The following extra types are supported: + + * :class:`dict` + * :class:`tuple` + * :class:`bytes` + * :class:`~markupsafe.Markup` + * :class:`~uuid.UUID` + * :class:`~datetime.datetime` + """ + + __slots__ = ("tags", "order") + + #: Tag classes to bind when creating the serializer. Other tags can be + #: added later using :meth:`~register`. + default_tags = [ + TagDict, + PassDict, + TagTuple, + PassList, + TagBytes, + TagMarkup, + TagUUID, + TagDateTime, + ] + + def __init__(self) -> None: + self.tags: dict[str, JSONTag] = {} + self.order: list[JSONTag] = [] + + for cls in self.default_tags: + self.register(cls) + + def register( + self, + tag_class: type[JSONTag], + force: bool = False, + index: int | None = None, + ) -> None: + """Register a new tag with this serializer. + + :param tag_class: tag class to register. Will be instantiated with this + serializer instance. + :param force: overwrite an existing tag. If false (default), a + :exc:`KeyError` is raised. + :param index: index to insert the new tag in the tag order. Useful when + the new tag is a special case of an existing tag. If ``None`` + (default), the tag is appended to the end of the order. + + :raise KeyError: if the tag key is already registered and ``force`` is + not true. + """ + tag = tag_class(self) + key = tag.key + + if key is not None: + if not force and key in self.tags: + raise KeyError(f"Tag '{key}' is already registered.") + + self.tags[key] = tag + + if index is None: + self.order.append(tag) + else: + self.order.insert(index, tag) + + def tag(self, value: t.Any) -> dict[str, t.Any]: + """Convert a value to a tagged representation if necessary.""" + for tag in self.order: + if tag.check(value): + return tag.tag(value) + + return value + + def untag(self, value: dict[str, t.Any]) -> t.Any: + """Convert a tagged representation back to the original type.""" + if len(value) != 1: + return value + + key = next(iter(value)) + + if key not in self.tags: + return value + + return self.tags[key].to_python(value[key]) + + def dumps(self, value: t.Any) -> str: + """Tag the value and dump it to a compact JSON string.""" + return dumps(self.tag(value), separators=(",", ":")) + + def loads(self, value: str) -> t.Any: + """Load data from a JSON string and deserialized any tagged objects.""" + return loads(value, object_hook=self.untag) diff --git a/server/venv/lib/python3.10/site-packages/flask/logging.py b/server/venv/lib/python3.10/site-packages/flask/logging.py new file mode 100644 index 0000000..b452f71 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/logging.py @@ -0,0 +1,76 @@ +from __future__ import annotations + +import logging +import sys +import typing as t + +from werkzeug.local import LocalProxy + +from .globals import request + +if t.TYPE_CHECKING: # pragma: no cover + from .sansio.app import App + + +@LocalProxy +def wsgi_errors_stream() -> t.TextIO: + """Find the most appropriate error stream for the application. If a request + is active, log to ``wsgi.errors``, otherwise use ``sys.stderr``. + + If you configure your own :class:`logging.StreamHandler`, you may want to + use this for the stream. If you are using file or dict configuration and + can't import this directly, you can refer to it as + ``ext://flask.logging.wsgi_errors_stream``. + """ + return request.environ["wsgi.errors"] if request else sys.stderr + + +def has_level_handler(logger: logging.Logger) -> bool: + """Check if there is a handler in the logging chain that will handle the + given logger's :meth:`effective level <~logging.Logger.getEffectiveLevel>`. + """ + level = logger.getEffectiveLevel() + current = logger + + while current: + if any(handler.level <= level for handler in current.handlers): + return True + + if not current.propagate: + break + + current = current.parent # type: ignore + + return False + + +#: Log messages to :func:`~flask.logging.wsgi_errors_stream` with the format +#: ``[%(asctime)s] %(levelname)s in %(module)s: %(message)s``. +default_handler = logging.StreamHandler(wsgi_errors_stream) # type: ignore +default_handler.setFormatter( + logging.Formatter("[%(asctime)s] %(levelname)s in %(module)s: %(message)s") +) + + +def create_logger(app: App) -> logging.Logger: + """Get the Flask app's logger and configure it if needed. + + The logger name will be the same as + :attr:`app.import_name `. + + When :attr:`~flask.Flask.debug` is enabled, set the logger level to + :data:`logging.DEBUG` if it is not set. + + If there is no handler for the logger's effective level, add a + :class:`~logging.StreamHandler` for + :func:`~flask.logging.wsgi_errors_stream` with a basic format. + """ + logger = logging.getLogger(app.name) + + if app.debug and not logger.level: + logger.setLevel(logging.DEBUG) + + if not has_level_handler(logger): + logger.addHandler(default_handler) + + return logger diff --git a/server/venv/lib/python3.10/site-packages/flask/py.typed b/server/venv/lib/python3.10/site-packages/flask/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/README.md b/server/venv/lib/python3.10/site-packages/flask/sansio/README.md new file mode 100644 index 0000000..623ac19 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/sansio/README.md @@ -0,0 +1,6 @@ +# Sansio + +This folder contains code that can be used by alternative Flask +implementations, for example Quart. The code therefore cannot do any +IO, nor be part of a likely IO path. Finally this code cannot use the +Flask globals. diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/app.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/app.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..735b7e18a241250db01530bded1b57ead49fc4d2 GIT binary patch literal 28550 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/scaffold.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask/sansio/__pycache__/scaffold.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76adb115fef6366381c94bbb79dae86c7c845dbb GIT binary patch literal 23942 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 I4UJ9xe>!ezS^xk5 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/app.py b/server/venv/lib/python3.10/site-packages/flask/sansio/app.py new file mode 100644 index 0000000..0f7d2cb --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/sansio/app.py @@ -0,0 +1,964 @@ +from __future__ import annotations + +import logging +import os +import sys +import typing as t +from datetime import timedelta +from itertools import chain + +from werkzeug.exceptions import Aborter +from werkzeug.exceptions import BadRequest +from werkzeug.exceptions import BadRequestKeyError +from werkzeug.routing import BuildError +from werkzeug.routing import Map +from werkzeug.routing import Rule +from werkzeug.sansio.response import Response +from werkzeug.utils import cached_property +from werkzeug.utils import redirect as _wz_redirect + +from .. import typing as ft +from ..config import Config +from ..config import ConfigAttribute +from ..ctx import _AppCtxGlobals +from ..helpers import _split_blueprint_path +from ..helpers import get_debug_flag +from ..json.provider import DefaultJSONProvider +from ..json.provider import JSONProvider +from ..logging import create_logger +from ..templating import DispatchingJinjaLoader +from ..templating import Environment +from .scaffold import _endpoint_from_view_func +from .scaffold import find_package +from .scaffold import Scaffold +from .scaffold import setupmethod + +if t.TYPE_CHECKING: # pragma: no cover + from werkzeug.wrappers import Response as BaseResponse + from .blueprints import Blueprint + from ..testing import FlaskClient + from ..testing import FlaskCliRunner + +T_shell_context_processor = t.TypeVar( + "T_shell_context_processor", bound=ft.ShellContextProcessorCallable +) +T_teardown = t.TypeVar("T_teardown", bound=ft.TeardownCallable) +T_template_filter = t.TypeVar("T_template_filter", bound=ft.TemplateFilterCallable) +T_template_global = t.TypeVar("T_template_global", bound=ft.TemplateGlobalCallable) +T_template_test = t.TypeVar("T_template_test", bound=ft.TemplateTestCallable) + + +def _make_timedelta(value: timedelta | int | None) -> timedelta | None: + if value is None or isinstance(value, timedelta): + return value + + return timedelta(seconds=value) + + +class App(Scaffold): + """The flask object implements a WSGI application and acts as the central + object. It is passed the name of the module or package of the + application. Once it is created it will act as a central registry for + the view functions, the URL rules, template configuration and much more. + + The name of the package is used to resolve resources from inside the + package or the folder the module is contained in depending on if the + package parameter resolves to an actual python package (a folder with + an :file:`__init__.py` file inside) or a standard module (just a ``.py`` file). + + For more information about resource loading, see :func:`open_resource`. + + Usually you create a :class:`Flask` instance in your main module or + in the :file:`__init__.py` file of your package like this:: + + from flask import Flask + app = Flask(__name__) + + .. admonition:: About the First Parameter + + The idea of the first parameter is to give Flask an idea of what + belongs to your application. This name is used to find resources + on the filesystem, can be used by extensions to improve debugging + information and a lot more. + + So it's important what you provide there. If you are using a single + module, `__name__` is always the correct value. If you however are + using a package, it's usually recommended to hardcode the name of + your package there. + + For example if your application is defined in :file:`yourapplication/app.py` + you should create it with one of the two versions below:: + + app = Flask('yourapplication') + app = Flask(__name__.split('.')[0]) + + Why is that? The application will work even with `__name__`, thanks + to how resources are looked up. However it will make debugging more + painful. Certain extensions can make assumptions based on the + import name of your application. For example the Flask-SQLAlchemy + extension will look for the code in your application that triggered + an SQL query in debug mode. If the import name is not properly set + up, that debugging information is lost. (For example it would only + pick up SQL queries in `yourapplication.app` and not + `yourapplication.views.frontend`) + + .. versionadded:: 0.7 + The `static_url_path`, `static_folder`, and `template_folder` + parameters were added. + + .. versionadded:: 0.8 + The `instance_path` and `instance_relative_config` parameters were + added. + + .. versionadded:: 0.11 + The `root_path` parameter was added. + + .. versionadded:: 1.0 + The ``host_matching`` and ``static_host`` parameters were added. + + .. versionadded:: 1.0 + The ``subdomain_matching`` parameter was added. Subdomain + matching needs to be enabled manually now. Setting + :data:`SERVER_NAME` does not implicitly enable it. + + :param import_name: the name of the application package + :param static_url_path: can be used to specify a different path for the + static files on the web. Defaults to the name + of the `static_folder` folder. + :param static_folder: The folder with static files that is served at + ``static_url_path``. Relative to the application ``root_path`` + or an absolute path. Defaults to ``'static'``. + :param static_host: the host to use when adding the static route. + Defaults to None. Required when using ``host_matching=True`` + with a ``static_folder`` configured. + :param host_matching: set ``url_map.host_matching`` attribute. + Defaults to False. + :param subdomain_matching: consider the subdomain relative to + :data:`SERVER_NAME` when matching routes. Defaults to False. + :param template_folder: the folder that contains the templates that should + be used by the application. Defaults to + ``'templates'`` folder in the root path of the + application. + :param instance_path: An alternative instance path for the application. + By default the folder ``'instance'`` next to the + package or module is assumed to be the instance + path. + :param instance_relative_config: if set to ``True`` relative filenames + for loading the config are assumed to + be relative to the instance path instead + of the application root. + :param root_path: The path to the root of the application files. + This should only be set manually when it can't be detected + automatically, such as for namespace packages. + """ + + #: The class of the object assigned to :attr:`aborter`, created by + #: :meth:`create_aborter`. That object is called by + #: :func:`flask.abort` to raise HTTP errors, and can be + #: called directly as well. + #: + #: Defaults to :class:`werkzeug.exceptions.Aborter`. + #: + #: .. versionadded:: 2.2 + aborter_class = Aborter + + #: The class that is used for the Jinja environment. + #: + #: .. versionadded:: 0.11 + jinja_environment = Environment + + #: The class that is used for the :data:`~flask.g` instance. + #: + #: Example use cases for a custom class: + #: + #: 1. Store arbitrary attributes on flask.g. + #: 2. Add a property for lazy per-request database connectors. + #: 3. Return None instead of AttributeError on unexpected attributes. + #: 4. Raise exception if an unexpected attr is set, a "controlled" flask.g. + #: + #: In Flask 0.9 this property was called `request_globals_class` but it + #: was changed in 0.10 to :attr:`app_ctx_globals_class` because the + #: flask.g object is now application context scoped. + #: + #: .. versionadded:: 0.10 + app_ctx_globals_class = _AppCtxGlobals + + #: The class that is used for the ``config`` attribute of this app. + #: Defaults to :class:`~flask.Config`. + #: + #: Example use cases for a custom class: + #: + #: 1. Default values for certain config options. + #: 2. Access to config values through attributes in addition to keys. + #: + #: .. versionadded:: 0.11 + config_class = Config + + #: The testing flag. Set this to ``True`` to enable the test mode of + #: Flask extensions (and in the future probably also Flask itself). + #: For example this might activate test helpers that have an + #: additional runtime cost which should not be enabled by default. + #: + #: If this is enabled and PROPAGATE_EXCEPTIONS is not changed from the + #: default it's implicitly enabled. + #: + #: This attribute can also be configured from the config with the + #: ``TESTING`` configuration key. Defaults to ``False``. + testing = ConfigAttribute("TESTING") + + #: If a secret key is set, cryptographic components can use this to + #: sign cookies and other things. Set this to a complex random value + #: when you want to use the secure cookie for instance. + #: + #: This attribute can also be configured from the config with the + #: :data:`SECRET_KEY` configuration key. Defaults to ``None``. + secret_key = ConfigAttribute("SECRET_KEY") + + #: A :class:`~datetime.timedelta` which is used to set the expiration + #: date of a permanent session. The default is 31 days which makes a + #: permanent session survive for roughly one month. + #: + #: This attribute can also be configured from the config with the + #: ``PERMANENT_SESSION_LIFETIME`` configuration key. Defaults to + #: ``timedelta(days=31)`` + permanent_session_lifetime = ConfigAttribute( + "PERMANENT_SESSION_LIFETIME", get_converter=_make_timedelta + ) + + json_provider_class: type[JSONProvider] = DefaultJSONProvider + """A subclass of :class:`~flask.json.provider.JSONProvider`. An + instance is created and assigned to :attr:`app.json` when creating + the app. + + The default, :class:`~flask.json.provider.DefaultJSONProvider`, uses + Python's built-in :mod:`json` library. A different provider can use + a different JSON library. + + .. versionadded:: 2.2 + """ + + #: Options that are passed to the Jinja environment in + #: :meth:`create_jinja_environment`. Changing these options after + #: the environment is created (accessing :attr:`jinja_env`) will + #: have no effect. + #: + #: .. versionchanged:: 1.1.0 + #: This is a ``dict`` instead of an ``ImmutableDict`` to allow + #: easier configuration. + #: + jinja_options: dict = {} + + #: The rule object to use for URL rules created. This is used by + #: :meth:`add_url_rule`. Defaults to :class:`werkzeug.routing.Rule`. + #: + #: .. versionadded:: 0.7 + url_rule_class = Rule + + #: The map object to use for storing the URL rules and routing + #: configuration parameters. Defaults to :class:`werkzeug.routing.Map`. + #: + #: .. versionadded:: 1.1.0 + url_map_class = Map + + #: The :meth:`test_client` method creates an instance of this test + #: client class. Defaults to :class:`~flask.testing.FlaskClient`. + #: + #: .. versionadded:: 0.7 + test_client_class: type[FlaskClient] | None = None + + #: The :class:`~click.testing.CliRunner` subclass, by default + #: :class:`~flask.testing.FlaskCliRunner` that is used by + #: :meth:`test_cli_runner`. Its ``__init__`` method should take a + #: Flask app object as the first argument. + #: + #: .. versionadded:: 1.0 + test_cli_runner_class: type[FlaskCliRunner] | None = None + + default_config: dict + response_class: type[Response] + + def __init__( + self, + import_name: str, + static_url_path: str | None = None, + static_folder: str | os.PathLike | None = "static", + static_host: str | None = None, + host_matching: bool = False, + subdomain_matching: bool = False, + template_folder: str | os.PathLike | None = "templates", + instance_path: str | None = None, + instance_relative_config: bool = False, + root_path: str | None = None, + ): + super().__init__( + import_name=import_name, + static_folder=static_folder, + static_url_path=static_url_path, + template_folder=template_folder, + root_path=root_path, + ) + + if instance_path is None: + instance_path = self.auto_find_instance_path() + elif not os.path.isabs(instance_path): + raise ValueError( + "If an instance path is provided it must be absolute." + " A relative path was given instead." + ) + + #: Holds the path to the instance folder. + #: + #: .. versionadded:: 0.8 + self.instance_path = instance_path + + #: The configuration dictionary as :class:`Config`. This behaves + #: exactly like a regular dictionary but supports additional methods + #: to load a config from files. + self.config = self.make_config(instance_relative_config) + + #: An instance of :attr:`aborter_class` created by + #: :meth:`make_aborter`. This is called by :func:`flask.abort` + #: to raise HTTP errors, and can be called directly as well. + #: + #: .. versionadded:: 2.2 + #: Moved from ``flask.abort``, which calls this object. + self.aborter = self.make_aborter() + + self.json: JSONProvider = self.json_provider_class(self) + """Provides access to JSON methods. Functions in ``flask.json`` + will call methods on this provider when the application context + is active. Used for handling JSON requests and responses. + + An instance of :attr:`json_provider_class`. Can be customized by + changing that attribute on a subclass, or by assigning to this + attribute afterwards. + + The default, :class:`~flask.json.provider.DefaultJSONProvider`, + uses Python's built-in :mod:`json` library. A different provider + can use a different JSON library. + + .. versionadded:: 2.2 + """ + + #: A list of functions that are called by + #: :meth:`handle_url_build_error` when :meth:`.url_for` raises a + #: :exc:`~werkzeug.routing.BuildError`. Each function is called + #: with ``error``, ``endpoint`` and ``values``. If a function + #: returns ``None`` or raises a ``BuildError``, it is skipped. + #: Otherwise, its return value is returned by ``url_for``. + #: + #: .. versionadded:: 0.9 + self.url_build_error_handlers: list[ + t.Callable[[Exception, str, dict[str, t.Any]], str] + ] = [] + + #: A list of functions that are called when the application context + #: is destroyed. Since the application context is also torn down + #: if the request ends this is the place to store code that disconnects + #: from databases. + #: + #: .. versionadded:: 0.9 + self.teardown_appcontext_funcs: list[ft.TeardownCallable] = [] + + #: A list of shell context processor functions that should be run + #: when a shell context is created. + #: + #: .. versionadded:: 0.11 + self.shell_context_processors: list[ft.ShellContextProcessorCallable] = [] + + #: Maps registered blueprint names to blueprint objects. The + #: dict retains the order the blueprints were registered in. + #: Blueprints can be registered multiple times, this dict does + #: not track how often they were attached. + #: + #: .. versionadded:: 0.7 + self.blueprints: dict[str, Blueprint] = {} + + #: a place where extensions can store application specific state. For + #: example this is where an extension could store database engines and + #: similar things. + #: + #: The key must match the name of the extension module. For example in + #: case of a "Flask-Foo" extension in `flask_foo`, the key would be + #: ``'foo'``. + #: + #: .. versionadded:: 0.7 + self.extensions: dict = {} + + #: The :class:`~werkzeug.routing.Map` for this instance. You can use + #: this to change the routing converters after the class was created + #: but before any routes are connected. Example:: + #: + #: from werkzeug.routing import BaseConverter + #: + #: class ListConverter(BaseConverter): + #: def to_python(self, value): + #: return value.split(',') + #: def to_url(self, values): + #: return ','.join(super(ListConverter, self).to_url(value) + #: for value in values) + #: + #: app = Flask(__name__) + #: app.url_map.converters['list'] = ListConverter + self.url_map = self.url_map_class(host_matching=host_matching) + + self.subdomain_matching = subdomain_matching + + # tracks internally if the application already handled at least one + # request. + self._got_first_request = False + + # Set the name of the Click group in case someone wants to add + # the app's commands to another CLI tool. + self.cli.name = self.name + + def _check_setup_finished(self, f_name: str) -> None: + if self._got_first_request: + raise AssertionError( + f"The setup method '{f_name}' can no longer be called" + " on the application. It has already handled its first" + " request, any changes will not be applied" + " consistently.\n" + "Make sure all imports, decorators, functions, etc." + " needed to set up the application are done before" + " running it." + ) + + @cached_property + def name(self) -> str: # type: ignore + """The name of the application. This is usually the import name + with the difference that it's guessed from the run file if the + import name is main. This name is used as a display name when + Flask needs the name of the application. It can be set and overridden + to change the value. + + .. versionadded:: 0.8 + """ + if self.import_name == "__main__": + fn = getattr(sys.modules["__main__"], "__file__", None) + if fn is None: + return "__main__" + return os.path.splitext(os.path.basename(fn))[0] + return self.import_name + + @cached_property + def logger(self) -> logging.Logger: + """A standard Python :class:`~logging.Logger` for the app, with + the same name as :attr:`name`. + + In debug mode, the logger's :attr:`~logging.Logger.level` will + be set to :data:`~logging.DEBUG`. + + If there are no handlers configured, a default handler will be + added. See :doc:`/logging` for more information. + + .. versionchanged:: 1.1.0 + The logger takes the same name as :attr:`name` rather than + hard-coding ``"flask.app"``. + + .. versionchanged:: 1.0.0 + Behavior was simplified. The logger is always named + ``"flask.app"``. The level is only set during configuration, + it doesn't check ``app.debug`` each time. Only one format is + used, not different ones depending on ``app.debug``. No + handlers are removed, and a handler is only added if no + handlers are already configured. + + .. versionadded:: 0.3 + """ + return create_logger(self) + + @cached_property + def jinja_env(self) -> Environment: + """The Jinja environment used to load templates. + + The environment is created the first time this property is + accessed. Changing :attr:`jinja_options` after that will have no + effect. + """ + return self.create_jinja_environment() + + def create_jinja_environment(self) -> Environment: + raise NotImplementedError() + + def make_config(self, instance_relative: bool = False) -> Config: + """Used to create the config attribute by the Flask constructor. + The `instance_relative` parameter is passed in from the constructor + of Flask (there named `instance_relative_config`) and indicates if + the config should be relative to the instance path or the root path + of the application. + + .. versionadded:: 0.8 + """ + root_path = self.root_path + if instance_relative: + root_path = self.instance_path + defaults = dict(self.default_config) + defaults["DEBUG"] = get_debug_flag() + return self.config_class(root_path, defaults) + + def make_aborter(self) -> Aborter: + """Create the object to assign to :attr:`aborter`. That object + is called by :func:`flask.abort` to raise HTTP errors, and can + be called directly as well. + + By default, this creates an instance of :attr:`aborter_class`, + which defaults to :class:`werkzeug.exceptions.Aborter`. + + .. versionadded:: 2.2 + """ + return self.aborter_class() + + def auto_find_instance_path(self) -> str: + """Tries to locate the instance path if it was not provided to the + constructor of the application class. It will basically calculate + the path to a folder named ``instance`` next to your main file or + the package. + + .. versionadded:: 0.8 + """ + prefix, package_path = find_package(self.import_name) + if prefix is None: + return os.path.join(package_path, "instance") + return os.path.join(prefix, "var", f"{self.name}-instance") + + def create_global_jinja_loader(self) -> DispatchingJinjaLoader: + """Creates the loader for the Jinja2 environment. Can be used to + override just the loader and keeping the rest unchanged. It's + discouraged to override this function. Instead one should override + the :meth:`jinja_loader` function instead. + + The global loader dispatches between the loaders of the application + and the individual blueprints. + + .. versionadded:: 0.7 + """ + return DispatchingJinjaLoader(self) + + def select_jinja_autoescape(self, filename: str) -> bool: + """Returns ``True`` if autoescaping should be active for the given + template name. If no template name is given, returns `True`. + + .. versionchanged:: 2.2 + Autoescaping is now enabled by default for ``.svg`` files. + + .. versionadded:: 0.5 + """ + if filename is None: + return True + return filename.endswith((".html", ".htm", ".xml", ".xhtml", ".svg")) + + @property + def debug(self) -> bool: + """Whether debug mode is enabled. When using ``flask run`` to start the + development server, an interactive debugger will be shown for unhandled + exceptions, and the server will be reloaded when code changes. This maps to the + :data:`DEBUG` config key. It may not behave as expected if set late. + + **Do not enable debug mode when deploying in production.** + + Default: ``False`` + """ + return self.config["DEBUG"] + + @debug.setter + def debug(self, value: bool) -> None: + self.config["DEBUG"] = value + + if self.config["TEMPLATES_AUTO_RELOAD"] is None: + self.jinja_env.auto_reload = value + + @setupmethod + def register_blueprint(self, blueprint: Blueprint, **options: t.Any) -> None: + """Register a :class:`~flask.Blueprint` on the application. Keyword + arguments passed to this method will override the defaults set on the + blueprint. + + Calls the blueprint's :meth:`~flask.Blueprint.register` method after + recording the blueprint in the application's :attr:`blueprints`. + + :param blueprint: The blueprint to register. + :param url_prefix: Blueprint routes will be prefixed with this. + :param subdomain: Blueprint routes will match on this subdomain. + :param url_defaults: Blueprint routes will use these default values for + view arguments. + :param options: Additional keyword arguments are passed to + :class:`~flask.blueprints.BlueprintSetupState`. They can be + accessed in :meth:`~flask.Blueprint.record` callbacks. + + .. versionchanged:: 2.0.1 + The ``name`` option can be used to change the (pre-dotted) + name the blueprint is registered with. This allows the same + blueprint to be registered multiple times with unique names + for ``url_for``. + + .. versionadded:: 0.7 + """ + blueprint.register(self, options) + + def iter_blueprints(self) -> t.ValuesView[Blueprint]: + """Iterates over all blueprints by the order they were registered. + + .. versionadded:: 0.11 + """ + return self.blueprints.values() + + @setupmethod + def add_url_rule( + self, + rule: str, + endpoint: str | None = None, + view_func: ft.RouteCallable | None = None, + provide_automatic_options: bool | None = None, + **options: t.Any, + ) -> None: + if endpoint is None: + endpoint = _endpoint_from_view_func(view_func) # type: ignore + options["endpoint"] = endpoint + methods = options.pop("methods", None) + + # if the methods are not given and the view_func object knows its + # methods we can use that instead. If neither exists, we go with + # a tuple of only ``GET`` as default. + if methods is None: + methods = getattr(view_func, "methods", None) or ("GET",) + if isinstance(methods, str): + raise TypeError( + "Allowed methods must be a list of strings, for" + ' example: @app.route(..., methods=["POST"])' + ) + methods = {item.upper() for item in methods} + + # Methods that should always be added + required_methods = set(getattr(view_func, "required_methods", ())) + + # starting with Flask 0.8 the view_func object can disable and + # force-enable the automatic options handling. + if provide_automatic_options is None: + provide_automatic_options = getattr( + view_func, "provide_automatic_options", None + ) + + if provide_automatic_options is None: + if "OPTIONS" not in methods: + provide_automatic_options = True + required_methods.add("OPTIONS") + else: + provide_automatic_options = False + + # Add the required methods now. + methods |= required_methods + + rule = self.url_rule_class(rule, methods=methods, **options) + rule.provide_automatic_options = provide_automatic_options # type: ignore + + self.url_map.add(rule) + if view_func is not None: + old_func = self.view_functions.get(endpoint) + if old_func is not None and old_func != view_func: + raise AssertionError( + "View function mapping is overwriting an existing" + f" endpoint function: {endpoint}" + ) + self.view_functions[endpoint] = view_func + + @setupmethod + def template_filter( + self, name: str | None = None + ) -> t.Callable[[T_template_filter], T_template_filter]: + """A decorator that is used to register custom template filter. + You can specify a name for the filter, otherwise the function + name will be used. Example:: + + @app.template_filter() + def reverse(s): + return s[::-1] + + :param name: the optional name of the filter, otherwise the + function name will be used. + """ + + def decorator(f: T_template_filter) -> T_template_filter: + self.add_template_filter(f, name=name) + return f + + return decorator + + @setupmethod + def add_template_filter( + self, f: ft.TemplateFilterCallable, name: str | None = None + ) -> None: + """Register a custom template filter. Works exactly like the + :meth:`template_filter` decorator. + + :param name: the optional name of the filter, otherwise the + function name will be used. + """ + self.jinja_env.filters[name or f.__name__] = f + + @setupmethod + def template_test( + self, name: str | None = None + ) -> t.Callable[[T_template_test], T_template_test]: + """A decorator that is used to register custom template test. + You can specify a name for the test, otherwise the function + name will be used. Example:: + + @app.template_test() + def is_prime(n): + if n == 2: + return True + for i in range(2, int(math.ceil(math.sqrt(n))) + 1): + if n % i == 0: + return False + return True + + .. versionadded:: 0.10 + + :param name: the optional name of the test, otherwise the + function name will be used. + """ + + def decorator(f: T_template_test) -> T_template_test: + self.add_template_test(f, name=name) + return f + + return decorator + + @setupmethod + def add_template_test( + self, f: ft.TemplateTestCallable, name: str | None = None + ) -> None: + """Register a custom template test. Works exactly like the + :meth:`template_test` decorator. + + .. versionadded:: 0.10 + + :param name: the optional name of the test, otherwise the + function name will be used. + """ + self.jinja_env.tests[name or f.__name__] = f + + @setupmethod + def template_global( + self, name: str | None = None + ) -> t.Callable[[T_template_global], T_template_global]: + """A decorator that is used to register a custom template global function. + You can specify a name for the global function, otherwise the function + name will be used. Example:: + + @app.template_global() + def double(n): + return 2 * n + + .. versionadded:: 0.10 + + :param name: the optional name of the global function, otherwise the + function name will be used. + """ + + def decorator(f: T_template_global) -> T_template_global: + self.add_template_global(f, name=name) + return f + + return decorator + + @setupmethod + def add_template_global( + self, f: ft.TemplateGlobalCallable, name: str | None = None + ) -> None: + """Register a custom template global function. Works exactly like the + :meth:`template_global` decorator. + + .. versionadded:: 0.10 + + :param name: the optional name of the global function, otherwise the + function name will be used. + """ + self.jinja_env.globals[name or f.__name__] = f + + @setupmethod + def teardown_appcontext(self, f: T_teardown) -> T_teardown: + """Registers a function to be called when the application + context is popped. The application context is typically popped + after the request context for each request, at the end of CLI + commands, or after a manually pushed context ends. + + .. code-block:: python + + with app.app_context(): + ... + + When the ``with`` block exits (or ``ctx.pop()`` is called), the + teardown functions are called just before the app context is + made inactive. Since a request context typically also manages an + application context it would also be called when you pop a + request context. + + When a teardown function was called because of an unhandled + exception it will be passed an error object. If an + :meth:`errorhandler` is registered, it will handle the exception + and the teardown will not receive it. + + Teardown functions must avoid raising exceptions. If they + execute code that might fail they must surround that code with a + ``try``/``except`` block and log any errors. + + The return values of teardown functions are ignored. + + .. versionadded:: 0.9 + """ + self.teardown_appcontext_funcs.append(f) + return f + + @setupmethod + def shell_context_processor( + self, f: T_shell_context_processor + ) -> T_shell_context_processor: + """Registers a shell context processor function. + + .. versionadded:: 0.11 + """ + self.shell_context_processors.append(f) + return f + + def _find_error_handler( + self, e: Exception, blueprints: list[str] + ) -> ft.ErrorHandlerCallable | None: + """Return a registered error handler for an exception in this order: + blueprint handler for a specific code, app handler for a specific code, + blueprint handler for an exception class, app handler for an exception + class, or ``None`` if a suitable handler is not found. + """ + exc_class, code = self._get_exc_class_and_code(type(e)) + names = (*blueprints, None) + + for c in (code, None) if code is not None else (None,): + for name in names: + handler_map = self.error_handler_spec[name][c] + + if not handler_map: + continue + + for cls in exc_class.__mro__: + handler = handler_map.get(cls) + + if handler is not None: + return handler + return None + + def trap_http_exception(self, e: Exception) -> bool: + """Checks if an HTTP exception should be trapped or not. By default + this will return ``False`` for all exceptions except for a bad request + key error if ``TRAP_BAD_REQUEST_ERRORS`` is set to ``True``. It + also returns ``True`` if ``TRAP_HTTP_EXCEPTIONS`` is set to ``True``. + + This is called for all HTTP exceptions raised by a view function. + If it returns ``True`` for any exception the error handler for this + exception is not called and it shows up as regular exception in the + traceback. This is helpful for debugging implicitly raised HTTP + exceptions. + + .. versionchanged:: 1.0 + Bad request errors are not trapped by default in debug mode. + + .. versionadded:: 0.8 + """ + if self.config["TRAP_HTTP_EXCEPTIONS"]: + return True + + trap_bad_request = self.config["TRAP_BAD_REQUEST_ERRORS"] + + # if unset, trap key errors in debug mode + if ( + trap_bad_request is None + and self.debug + and isinstance(e, BadRequestKeyError) + ): + return True + + if trap_bad_request: + return isinstance(e, BadRequest) + + return False + + def should_ignore_error(self, error: BaseException | None) -> bool: + """This is called to figure out if an error should be ignored + or not as far as the teardown system is concerned. If this + function returns ``True`` then the teardown handlers will not be + passed the error. + + .. versionadded:: 0.10 + """ + return False + + def redirect(self, location: str, code: int = 302) -> BaseResponse: + """Create a redirect response object. + + This is called by :func:`flask.redirect`, and can be called + directly as well. + + :param location: The URL to redirect to. + :param code: The status code for the redirect. + + .. versionadded:: 2.2 + Moved from ``flask.redirect``, which calls this method. + """ + return _wz_redirect( + location, code=code, Response=self.response_class # type: ignore[arg-type] + ) + + def inject_url_defaults(self, endpoint: str, values: dict) -> None: + """Injects the URL defaults for the given endpoint directly into + the values dictionary passed. This is used internally and + automatically called on URL building. + + .. versionadded:: 0.7 + """ + names: t.Iterable[str | None] = (None,) + + # url_for may be called outside a request context, parse the + # passed endpoint instead of using request.blueprints. + if "." in endpoint: + names = chain( + names, reversed(_split_blueprint_path(endpoint.rpartition(".")[0])) + ) + + for name in names: + if name in self.url_default_functions: + for func in self.url_default_functions[name]: + func(endpoint, values) + + def handle_url_build_error( + self, error: BuildError, endpoint: str, values: dict[str, t.Any] + ) -> str: + """Called by :meth:`.url_for` if a + :exc:`~werkzeug.routing.BuildError` was raised. If this returns + a value, it will be returned by ``url_for``, otherwise the error + will be re-raised. + + Each function in :attr:`url_build_error_handlers` is called with + ``error``, ``endpoint`` and ``values``. If a function returns + ``None`` or raises a ``BuildError``, it is skipped. Otherwise, + its return value is returned by ``url_for``. + + :param error: The active ``BuildError`` being handled. + :param endpoint: The endpoint being built. + :param values: The keyword arguments passed to ``url_for``. + """ + for handler in self.url_build_error_handlers: + try: + rv = handler(error, endpoint, values) + except BuildError as e: + # make error available outside except block + error = e + else: + if rv is not None: + return rv + + # Re-raise if called with an active exception, otherwise raise + # the passed in exception. + if error is sys.exc_info()[1]: + raise + + raise error diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/blueprints.py b/server/venv/lib/python3.10/site-packages/flask/sansio/blueprints.py new file mode 100644 index 0000000..38c92f4 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/sansio/blueprints.py @@ -0,0 +1,626 @@ +from __future__ import annotations + +import os +import typing as t +from collections import defaultdict +from functools import update_wrapper + +from .. import typing as ft +from .scaffold import _endpoint_from_view_func +from .scaffold import _sentinel +from .scaffold import Scaffold +from .scaffold import setupmethod + +if t.TYPE_CHECKING: # pragma: no cover + from .app import App + +DeferredSetupFunction = t.Callable[["BlueprintSetupState"], t.Callable] +T_after_request = t.TypeVar("T_after_request", bound=ft.AfterRequestCallable) +T_before_request = t.TypeVar("T_before_request", bound=ft.BeforeRequestCallable) +T_error_handler = t.TypeVar("T_error_handler", bound=ft.ErrorHandlerCallable) +T_teardown = t.TypeVar("T_teardown", bound=ft.TeardownCallable) +T_template_context_processor = t.TypeVar( + "T_template_context_processor", bound=ft.TemplateContextProcessorCallable +) +T_template_filter = t.TypeVar("T_template_filter", bound=ft.TemplateFilterCallable) +T_template_global = t.TypeVar("T_template_global", bound=ft.TemplateGlobalCallable) +T_template_test = t.TypeVar("T_template_test", bound=ft.TemplateTestCallable) +T_url_defaults = t.TypeVar("T_url_defaults", bound=ft.URLDefaultCallable) +T_url_value_preprocessor = t.TypeVar( + "T_url_value_preprocessor", bound=ft.URLValuePreprocessorCallable +) + + +class BlueprintSetupState: + """Temporary holder object for registering a blueprint with the + application. An instance of this class is created by the + :meth:`~flask.Blueprint.make_setup_state` method and later passed + to all register callback functions. + """ + + def __init__( + self, + blueprint: Blueprint, + app: App, + options: t.Any, + first_registration: bool, + ) -> None: + #: a reference to the current application + self.app = app + + #: a reference to the blueprint that created this setup state. + self.blueprint = blueprint + + #: a dictionary with all options that were passed to the + #: :meth:`~flask.Flask.register_blueprint` method. + self.options = options + + #: as blueprints can be registered multiple times with the + #: application and not everything wants to be registered + #: multiple times on it, this attribute can be used to figure + #: out if the blueprint was registered in the past already. + self.first_registration = first_registration + + subdomain = self.options.get("subdomain") + if subdomain is None: + subdomain = self.blueprint.subdomain + + #: The subdomain that the blueprint should be active for, ``None`` + #: otherwise. + self.subdomain = subdomain + + url_prefix = self.options.get("url_prefix") + if url_prefix is None: + url_prefix = self.blueprint.url_prefix + #: The prefix that should be used for all URLs defined on the + #: blueprint. + self.url_prefix = url_prefix + + self.name = self.options.get("name", blueprint.name) + self.name_prefix = self.options.get("name_prefix", "") + + #: A dictionary with URL defaults that is added to each and every + #: URL that was defined with the blueprint. + self.url_defaults = dict(self.blueprint.url_values_defaults) + self.url_defaults.update(self.options.get("url_defaults", ())) + + def add_url_rule( + self, + rule: str, + endpoint: str | None = None, + view_func: t.Callable | None = None, + **options: t.Any, + ) -> None: + """A helper method to register a rule (and optionally a view function) + to the application. The endpoint is automatically prefixed with the + blueprint's name. + """ + if self.url_prefix is not None: + if rule: + rule = "/".join((self.url_prefix.rstrip("/"), rule.lstrip("/"))) + else: + rule = self.url_prefix + options.setdefault("subdomain", self.subdomain) + if endpoint is None: + endpoint = _endpoint_from_view_func(view_func) # type: ignore + defaults = self.url_defaults + if "defaults" in options: + defaults = dict(defaults, **options.pop("defaults")) + + self.app.add_url_rule( + rule, + f"{self.name_prefix}.{self.name}.{endpoint}".lstrip("."), + view_func, + defaults=defaults, + **options, + ) + + +class Blueprint(Scaffold): + """Represents a blueprint, a collection of routes and other + app-related functions that can be registered on a real application + later. + + A blueprint is an object that allows defining application functions + without requiring an application object ahead of time. It uses the + same decorators as :class:`~flask.Flask`, but defers the need for an + application by recording them for later registration. + + Decorating a function with a blueprint creates a deferred function + that is called with :class:`~flask.blueprints.BlueprintSetupState` + when the blueprint is registered on an application. + + See :doc:`/blueprints` for more information. + + :param name: The name of the blueprint. Will be prepended to each + endpoint name. + :param import_name: The name of the blueprint package, usually + ``__name__``. This helps locate the ``root_path`` for the + blueprint. + :param static_folder: A folder with static files that should be + served by the blueprint's static route. The path is relative to + the blueprint's root path. Blueprint static files are disabled + by default. + :param static_url_path: The url to serve static files from. + Defaults to ``static_folder``. If the blueprint does not have + a ``url_prefix``, the app's static route will take precedence, + and the blueprint's static files won't be accessible. + :param template_folder: A folder with templates that should be added + to the app's template search path. The path is relative to the + blueprint's root path. Blueprint templates are disabled by + default. Blueprint templates have a lower precedence than those + in the app's templates folder. + :param url_prefix: A path to prepend to all of the blueprint's URLs, + to make them distinct from the rest of the app's routes. + :param subdomain: A subdomain that blueprint routes will match on by + default. + :param url_defaults: A dict of default values that blueprint routes + will receive by default. + :param root_path: By default, the blueprint will automatically set + this based on ``import_name``. In certain situations this + automatic detection can fail, so the path can be specified + manually instead. + + .. versionchanged:: 1.1.0 + Blueprints have a ``cli`` group to register nested CLI commands. + The ``cli_group`` parameter controls the name of the group under + the ``flask`` command. + + .. versionadded:: 0.7 + """ + + _got_registered_once = False + + def __init__( + self, + name: str, + import_name: str, + static_folder: str | os.PathLike | None = None, + static_url_path: str | None = None, + template_folder: str | os.PathLike | None = None, + url_prefix: str | None = None, + subdomain: str | None = None, + url_defaults: dict | None = None, + root_path: str | None = None, + cli_group: str | None = _sentinel, # type: ignore + ): + super().__init__( + import_name=import_name, + static_folder=static_folder, + static_url_path=static_url_path, + template_folder=template_folder, + root_path=root_path, + ) + + if not name: + raise ValueError("'name' may not be empty.") + + if "." in name: + raise ValueError("'name' may not contain a dot '.' character.") + + self.name = name + self.url_prefix = url_prefix + self.subdomain = subdomain + self.deferred_functions: list[DeferredSetupFunction] = [] + + if url_defaults is None: + url_defaults = {} + + self.url_values_defaults = url_defaults + self.cli_group = cli_group + self._blueprints: list[tuple[Blueprint, dict]] = [] + + def _check_setup_finished(self, f_name: str) -> None: + if self._got_registered_once: + raise AssertionError( + f"The setup method '{f_name}' can no longer be called on the blueprint" + f" '{self.name}'. It has already been registered at least once, any" + " changes will not be applied consistently.\n" + "Make sure all imports, decorators, functions, etc. needed to set up" + " the blueprint are done before registering it." + ) + + @setupmethod + def record(self, func: t.Callable) -> None: + """Registers a function that is called when the blueprint is + registered on the application. This function is called with the + state as argument as returned by the :meth:`make_setup_state` + method. + """ + self.deferred_functions.append(func) + + @setupmethod + def record_once(self, func: t.Callable) -> None: + """Works like :meth:`record` but wraps the function in another + function that will ensure the function is only called once. If the + blueprint is registered a second time on the application, the + function passed is not called. + """ + + def wrapper(state: BlueprintSetupState) -> None: + if state.first_registration: + func(state) + + self.record(update_wrapper(wrapper, func)) + + def make_setup_state( + self, app: App, options: dict, first_registration: bool = False + ) -> BlueprintSetupState: + """Creates an instance of :meth:`~flask.blueprints.BlueprintSetupState` + object that is later passed to the register callback functions. + Subclasses can override this to return a subclass of the setup state. + """ + return BlueprintSetupState(self, app, options, first_registration) + + @setupmethod + def register_blueprint(self, blueprint: Blueprint, **options: t.Any) -> None: + """Register a :class:`~flask.Blueprint` on this blueprint. Keyword + arguments passed to this method will override the defaults set + on the blueprint. + + .. versionchanged:: 2.0.1 + The ``name`` option can be used to change the (pre-dotted) + name the blueprint is registered with. This allows the same + blueprint to be registered multiple times with unique names + for ``url_for``. + + .. versionadded:: 2.0 + """ + if blueprint is self: + raise ValueError("Cannot register a blueprint on itself") + self._blueprints.append((blueprint, options)) + + def register(self, app: App, options: dict) -> None: + """Called by :meth:`Flask.register_blueprint` to register all + views and callbacks registered on the blueprint with the + application. Creates a :class:`.BlueprintSetupState` and calls + each :meth:`record` callback with it. + + :param app: The application this blueprint is being registered + with. + :param options: Keyword arguments forwarded from + :meth:`~Flask.register_blueprint`. + + .. versionchanged:: 2.3 + Nested blueprints now correctly apply subdomains. + + .. versionchanged:: 2.1 + Registering the same blueprint with the same name multiple + times is an error. + + .. versionchanged:: 2.0.1 + Nested blueprints are registered with their dotted name. + This allows different blueprints with the same name to be + nested at different locations. + + .. versionchanged:: 2.0.1 + The ``name`` option can be used to change the (pre-dotted) + name the blueprint is registered with. This allows the same + blueprint to be registered multiple times with unique names + for ``url_for``. + """ + name_prefix = options.get("name_prefix", "") + self_name = options.get("name", self.name) + name = f"{name_prefix}.{self_name}".lstrip(".") + + if name in app.blueprints: + bp_desc = "this" if app.blueprints[name] is self else "a different" + existing_at = f" '{name}'" if self_name != name else "" + + raise ValueError( + f"The name '{self_name}' is already registered for" + f" {bp_desc} blueprint{existing_at}. Use 'name=' to" + f" provide a unique name." + ) + + first_bp_registration = not any(bp is self for bp in app.blueprints.values()) + first_name_registration = name not in app.blueprints + + app.blueprints[name] = self + self._got_registered_once = True + state = self.make_setup_state(app, options, first_bp_registration) + + if self.has_static_folder: + state.add_url_rule( + f"{self.static_url_path}/", + view_func=self.send_static_file, # type: ignore[attr-defined] + endpoint="static", + ) + + # Merge blueprint data into parent. + if first_bp_registration or first_name_registration: + self._merge_blueprint_funcs(app, name) + + for deferred in self.deferred_functions: + deferred(state) + + cli_resolved_group = options.get("cli_group", self.cli_group) + + if self.cli.commands: + if cli_resolved_group is None: + app.cli.commands.update(self.cli.commands) + elif cli_resolved_group is _sentinel: + self.cli.name = name + app.cli.add_command(self.cli) + else: + self.cli.name = cli_resolved_group + app.cli.add_command(self.cli) + + for blueprint, bp_options in self._blueprints: + bp_options = bp_options.copy() + bp_url_prefix = bp_options.get("url_prefix") + bp_subdomain = bp_options.get("subdomain") + + if bp_subdomain is None: + bp_subdomain = blueprint.subdomain + + if state.subdomain is not None and bp_subdomain is not None: + bp_options["subdomain"] = bp_subdomain + "." + state.subdomain + elif bp_subdomain is not None: + bp_options["subdomain"] = bp_subdomain + elif state.subdomain is not None: + bp_options["subdomain"] = state.subdomain + + if bp_url_prefix is None: + bp_url_prefix = blueprint.url_prefix + + if state.url_prefix is not None and bp_url_prefix is not None: + bp_options["url_prefix"] = ( + state.url_prefix.rstrip("/") + "/" + bp_url_prefix.lstrip("/") + ) + elif bp_url_prefix is not None: + bp_options["url_prefix"] = bp_url_prefix + elif state.url_prefix is not None: + bp_options["url_prefix"] = state.url_prefix + + bp_options["name_prefix"] = name + blueprint.register(app, bp_options) + + def _merge_blueprint_funcs(self, app: App, name: str) -> None: + def extend(bp_dict, parent_dict): + for key, values in bp_dict.items(): + key = name if key is None else f"{name}.{key}" + parent_dict[key].extend(values) + + for key, value in self.error_handler_spec.items(): + key = name if key is None else f"{name}.{key}" + value = defaultdict( + dict, + { + code: {exc_class: func for exc_class, func in code_values.items()} + for code, code_values in value.items() + }, + ) + app.error_handler_spec[key] = value + + for endpoint, func in self.view_functions.items(): + app.view_functions[endpoint] = func + + extend(self.before_request_funcs, app.before_request_funcs) + extend(self.after_request_funcs, app.after_request_funcs) + extend( + self.teardown_request_funcs, + app.teardown_request_funcs, + ) + extend(self.url_default_functions, app.url_default_functions) + extend(self.url_value_preprocessors, app.url_value_preprocessors) + extend(self.template_context_processors, app.template_context_processors) + + @setupmethod + def add_url_rule( + self, + rule: str, + endpoint: str | None = None, + view_func: ft.RouteCallable | None = None, + provide_automatic_options: bool | None = None, + **options: t.Any, + ) -> None: + """Register a URL rule with the blueprint. See :meth:`.Flask.add_url_rule` for + full documentation. + + The URL rule is prefixed with the blueprint's URL prefix. The endpoint name, + used with :func:`url_for`, is prefixed with the blueprint's name. + """ + if endpoint and "." in endpoint: + raise ValueError("'endpoint' may not contain a dot '.' character.") + + if view_func and hasattr(view_func, "__name__") and "." in view_func.__name__: + raise ValueError("'view_func' name may not contain a dot '.' character.") + + self.record( + lambda s: s.add_url_rule( + rule, + endpoint, + view_func, + provide_automatic_options=provide_automatic_options, + **options, + ) + ) + + @setupmethod + def app_template_filter( + self, name: str | None = None + ) -> t.Callable[[T_template_filter], T_template_filter]: + """Register a template filter, available in any template rendered by the + application. Equivalent to :meth:`.Flask.template_filter`. + + :param name: the optional name of the filter, otherwise the + function name will be used. + """ + + def decorator(f: T_template_filter) -> T_template_filter: + self.add_app_template_filter(f, name=name) + return f + + return decorator + + @setupmethod + def add_app_template_filter( + self, f: ft.TemplateFilterCallable, name: str | None = None + ) -> None: + """Register a template filter, available in any template rendered by the + application. Works like the :meth:`app_template_filter` decorator. Equivalent to + :meth:`.Flask.add_template_filter`. + + :param name: the optional name of the filter, otherwise the + function name will be used. + """ + + def register_template(state: BlueprintSetupState) -> None: + state.app.jinja_env.filters[name or f.__name__] = f + + self.record_once(register_template) + + @setupmethod + def app_template_test( + self, name: str | None = None + ) -> t.Callable[[T_template_test], T_template_test]: + """Register a template test, available in any template rendered by the + application. Equivalent to :meth:`.Flask.template_test`. + + .. versionadded:: 0.10 + + :param name: the optional name of the test, otherwise the + function name will be used. + """ + + def decorator(f: T_template_test) -> T_template_test: + self.add_app_template_test(f, name=name) + return f + + return decorator + + @setupmethod + def add_app_template_test( + self, f: ft.TemplateTestCallable, name: str | None = None + ) -> None: + """Register a template test, available in any template rendered by the + application. Works like the :meth:`app_template_test` decorator. Equivalent to + :meth:`.Flask.add_template_test`. + + .. versionadded:: 0.10 + + :param name: the optional name of the test, otherwise the + function name will be used. + """ + + def register_template(state: BlueprintSetupState) -> None: + state.app.jinja_env.tests[name or f.__name__] = f + + self.record_once(register_template) + + @setupmethod + def app_template_global( + self, name: str | None = None + ) -> t.Callable[[T_template_global], T_template_global]: + """Register a template global, available in any template rendered by the + application. Equivalent to :meth:`.Flask.template_global`. + + .. versionadded:: 0.10 + + :param name: the optional name of the global, otherwise the + function name will be used. + """ + + def decorator(f: T_template_global) -> T_template_global: + self.add_app_template_global(f, name=name) + return f + + return decorator + + @setupmethod + def add_app_template_global( + self, f: ft.TemplateGlobalCallable, name: str | None = None + ) -> None: + """Register a template global, available in any template rendered by the + application. Works like the :meth:`app_template_global` decorator. Equivalent to + :meth:`.Flask.add_template_global`. + + .. versionadded:: 0.10 + + :param name: the optional name of the global, otherwise the + function name will be used. + """ + + def register_template(state: BlueprintSetupState) -> None: + state.app.jinja_env.globals[name or f.__name__] = f + + self.record_once(register_template) + + @setupmethod + def before_app_request(self, f: T_before_request) -> T_before_request: + """Like :meth:`before_request`, but before every request, not only those handled + by the blueprint. Equivalent to :meth:`.Flask.before_request`. + """ + self.record_once( + lambda s: s.app.before_request_funcs.setdefault(None, []).append(f) + ) + return f + + @setupmethod + def after_app_request(self, f: T_after_request) -> T_after_request: + """Like :meth:`after_request`, but after every request, not only those handled + by the blueprint. Equivalent to :meth:`.Flask.after_request`. + """ + self.record_once( + lambda s: s.app.after_request_funcs.setdefault(None, []).append(f) + ) + return f + + @setupmethod + def teardown_app_request(self, f: T_teardown) -> T_teardown: + """Like :meth:`teardown_request`, but after every request, not only those + handled by the blueprint. Equivalent to :meth:`.Flask.teardown_request`. + """ + self.record_once( + lambda s: s.app.teardown_request_funcs.setdefault(None, []).append(f) + ) + return f + + @setupmethod + def app_context_processor( + self, f: T_template_context_processor + ) -> T_template_context_processor: + """Like :meth:`context_processor`, but for templates rendered by every view, not + only by the blueprint. Equivalent to :meth:`.Flask.context_processor`. + """ + self.record_once( + lambda s: s.app.template_context_processors.setdefault(None, []).append(f) + ) + return f + + @setupmethod + def app_errorhandler( + self, code: type[Exception] | int + ) -> t.Callable[[T_error_handler], T_error_handler]: + """Like :meth:`errorhandler`, but for every request, not only those handled by + the blueprint. Equivalent to :meth:`.Flask.errorhandler`. + """ + + def decorator(f: T_error_handler) -> T_error_handler: + self.record_once(lambda s: s.app.errorhandler(code)(f)) + return f + + return decorator + + @setupmethod + def app_url_value_preprocessor( + self, f: T_url_value_preprocessor + ) -> T_url_value_preprocessor: + """Like :meth:`url_value_preprocessor`, but for every request, not only those + handled by the blueprint. Equivalent to :meth:`.Flask.url_value_preprocessor`. + """ + self.record_once( + lambda s: s.app.url_value_preprocessors.setdefault(None, []).append(f) + ) + return f + + @setupmethod + def app_url_defaults(self, f: T_url_defaults) -> T_url_defaults: + """Like :meth:`url_defaults`, but for every request, not only those handled by + the blueprint. Equivalent to :meth:`.Flask.url_defaults`. + """ + self.record_once( + lambda s: s.app.url_default_functions.setdefault(None, []).append(f) + ) + return f diff --git a/server/venv/lib/python3.10/site-packages/flask/sansio/scaffold.py b/server/venv/lib/python3.10/site-packages/flask/sansio/scaffold.py new file mode 100644 index 0000000..a43f6fd --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/sansio/scaffold.py @@ -0,0 +1,802 @@ +from __future__ import annotations + +import importlib.util +import os +import pathlib +import sys +import typing as t +from collections import defaultdict +from functools import update_wrapper + +from jinja2 import FileSystemLoader +from werkzeug.exceptions import default_exceptions +from werkzeug.exceptions import HTTPException +from werkzeug.utils import cached_property + +from .. import typing as ft +from ..cli import AppGroup +from ..helpers import get_root_path +from ..templating import _default_template_ctx_processor + +# a singleton sentinel value for parameter defaults +_sentinel = object() + +F = t.TypeVar("F", bound=t.Callable[..., t.Any]) +T_after_request = t.TypeVar("T_after_request", bound=ft.AfterRequestCallable) +T_before_request = t.TypeVar("T_before_request", bound=ft.BeforeRequestCallable) +T_error_handler = t.TypeVar("T_error_handler", bound=ft.ErrorHandlerCallable) +T_teardown = t.TypeVar("T_teardown", bound=ft.TeardownCallable) +T_template_context_processor = t.TypeVar( + "T_template_context_processor", bound=ft.TemplateContextProcessorCallable +) +T_url_defaults = t.TypeVar("T_url_defaults", bound=ft.URLDefaultCallable) +T_url_value_preprocessor = t.TypeVar( + "T_url_value_preprocessor", bound=ft.URLValuePreprocessorCallable +) +T_route = t.TypeVar("T_route", bound=ft.RouteCallable) + + +def setupmethod(f: F) -> F: + f_name = f.__name__ + + def wrapper_func(self, *args: t.Any, **kwargs: t.Any) -> t.Any: + self._check_setup_finished(f_name) + return f(self, *args, **kwargs) + + return t.cast(F, update_wrapper(wrapper_func, f)) + + +class Scaffold: + """Common behavior shared between :class:`~flask.Flask` and + :class:`~flask.blueprints.Blueprint`. + + :param import_name: The import name of the module where this object + is defined. Usually :attr:`__name__` should be used. + :param static_folder: Path to a folder of static files to serve. + If this is set, a static route will be added. + :param static_url_path: URL prefix for the static route. + :param template_folder: Path to a folder containing template files. + for rendering. If this is set, a Jinja loader will be added. + :param root_path: The path that static, template, and resource files + are relative to. Typically not set, it is discovered based on + the ``import_name``. + + .. versionadded:: 2.0 + """ + + name: str + _static_folder: str | None = None + _static_url_path: str | None = None + + def __init__( + self, + import_name: str, + static_folder: str | os.PathLike | None = None, + static_url_path: str | None = None, + template_folder: str | os.PathLike | None = None, + root_path: str | None = None, + ): + #: The name of the package or module that this object belongs + #: to. Do not change this once it is set by the constructor. + self.import_name = import_name + + self.static_folder = static_folder # type: ignore + self.static_url_path = static_url_path + + #: The path to the templates folder, relative to + #: :attr:`root_path`, to add to the template loader. ``None`` if + #: templates should not be added. + self.template_folder = template_folder + + if root_path is None: + root_path = get_root_path(self.import_name) + + #: Absolute path to the package on the filesystem. Used to look + #: up resources contained in the package. + self.root_path = root_path + + #: The Click command group for registering CLI commands for this + #: object. The commands are available from the ``flask`` command + #: once the application has been discovered and blueprints have + #: been registered. + self.cli = AppGroup() + + #: A dictionary mapping endpoint names to view functions. + #: + #: To register a view function, use the :meth:`route` decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.view_functions: dict[str, t.Callable] = {} + + #: A data structure of registered error handlers, in the format + #: ``{scope: {code: {class: handler}}}``. The ``scope`` key is + #: the name of a blueprint the handlers are active for, or + #: ``None`` for all requests. The ``code`` key is the HTTP + #: status code for ``HTTPException``, or ``None`` for + #: other exceptions. The innermost dictionary maps exception + #: classes to handler functions. + #: + #: To register an error handler, use the :meth:`errorhandler` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.error_handler_spec: dict[ + ft.AppOrBlueprintKey, + dict[int | None, dict[type[Exception], ft.ErrorHandlerCallable]], + ] = defaultdict(lambda: defaultdict(dict)) + + #: A data structure of functions to call at the beginning of + #: each request, in the format ``{scope: [functions]}``. The + #: ``scope`` key is the name of a blueprint the functions are + #: active for, or ``None`` for all requests. + #: + #: To register a function, use the :meth:`before_request` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.before_request_funcs: dict[ + ft.AppOrBlueprintKey, list[ft.BeforeRequestCallable] + ] = defaultdict(list) + + #: A data structure of functions to call at the end of each + #: request, in the format ``{scope: [functions]}``. The + #: ``scope`` key is the name of a blueprint the functions are + #: active for, or ``None`` for all requests. + #: + #: To register a function, use the :meth:`after_request` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.after_request_funcs: dict[ + ft.AppOrBlueprintKey, list[ft.AfterRequestCallable] + ] = defaultdict(list) + + #: A data structure of functions to call at the end of each + #: request even if an exception is raised, in the format + #: ``{scope: [functions]}``. The ``scope`` key is the name of a + #: blueprint the functions are active for, or ``None`` for all + #: requests. + #: + #: To register a function, use the :meth:`teardown_request` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.teardown_request_funcs: dict[ + ft.AppOrBlueprintKey, list[ft.TeardownCallable] + ] = defaultdict(list) + + #: A data structure of functions to call to pass extra context + #: values when rendering templates, in the format + #: ``{scope: [functions]}``. The ``scope`` key is the name of a + #: blueprint the functions are active for, or ``None`` for all + #: requests. + #: + #: To register a function, use the :meth:`context_processor` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.template_context_processors: dict[ + ft.AppOrBlueprintKey, list[ft.TemplateContextProcessorCallable] + ] = defaultdict(list, {None: [_default_template_ctx_processor]}) + + #: A data structure of functions to call to modify the keyword + #: arguments passed to the view function, in the format + #: ``{scope: [functions]}``. The ``scope`` key is the name of a + #: blueprint the functions are active for, or ``None`` for all + #: requests. + #: + #: To register a function, use the + #: :meth:`url_value_preprocessor` decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.url_value_preprocessors: dict[ + ft.AppOrBlueprintKey, + list[ft.URLValuePreprocessorCallable], + ] = defaultdict(list) + + #: A data structure of functions to call to modify the keyword + #: arguments when generating URLs, in the format + #: ``{scope: [functions]}``. The ``scope`` key is the name of a + #: blueprint the functions are active for, or ``None`` for all + #: requests. + #: + #: To register a function, use the :meth:`url_defaults` + #: decorator. + #: + #: This data structure is internal. It should not be modified + #: directly and its format may change at any time. + self.url_default_functions: dict[ + ft.AppOrBlueprintKey, list[ft.URLDefaultCallable] + ] = defaultdict(list) + + def __repr__(self) -> str: + return f"<{type(self).__name__} {self.name!r}>" + + def _check_setup_finished(self, f_name: str) -> None: + raise NotImplementedError + + @property + def static_folder(self) -> str | None: + """The absolute path to the configured static folder. ``None`` + if no static folder is set. + """ + if self._static_folder is not None: + return os.path.join(self.root_path, self._static_folder) + else: + return None + + @static_folder.setter + def static_folder(self, value: str | os.PathLike | None) -> None: + if value is not None: + value = os.fspath(value).rstrip(r"\/") + + self._static_folder = value + + @property + def has_static_folder(self) -> bool: + """``True`` if :attr:`static_folder` is set. + + .. versionadded:: 0.5 + """ + return self.static_folder is not None + + @property + def static_url_path(self) -> str | None: + """The URL prefix that the static route will be accessible from. + + If it was not configured during init, it is derived from + :attr:`static_folder`. + """ + if self._static_url_path is not None: + return self._static_url_path + + if self.static_folder is not None: + basename = os.path.basename(self.static_folder) + return f"/{basename}".rstrip("/") + + return None + + @static_url_path.setter + def static_url_path(self, value: str | None) -> None: + if value is not None: + value = value.rstrip("/") + + self._static_url_path = value + + @cached_property + def jinja_loader(self) -> FileSystemLoader | None: + """The Jinja loader for this object's templates. By default this + is a class :class:`jinja2.loaders.FileSystemLoader` to + :attr:`template_folder` if it is set. + + .. versionadded:: 0.5 + """ + if self.template_folder is not None: + return FileSystemLoader(os.path.join(self.root_path, self.template_folder)) + else: + return None + + def _method_route( + self, + method: str, + rule: str, + options: dict, + ) -> t.Callable[[T_route], T_route]: + if "methods" in options: + raise TypeError("Use the 'route' decorator to use the 'methods' argument.") + + return self.route(rule, methods=[method], **options) + + @setupmethod + def get(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Shortcut for :meth:`route` with ``methods=["GET"]``. + + .. versionadded:: 2.0 + """ + return self._method_route("GET", rule, options) + + @setupmethod + def post(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Shortcut for :meth:`route` with ``methods=["POST"]``. + + .. versionadded:: 2.0 + """ + return self._method_route("POST", rule, options) + + @setupmethod + def put(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Shortcut for :meth:`route` with ``methods=["PUT"]``. + + .. versionadded:: 2.0 + """ + return self._method_route("PUT", rule, options) + + @setupmethod + def delete(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Shortcut for :meth:`route` with ``methods=["DELETE"]``. + + .. versionadded:: 2.0 + """ + return self._method_route("DELETE", rule, options) + + @setupmethod + def patch(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Shortcut for :meth:`route` with ``methods=["PATCH"]``. + + .. versionadded:: 2.0 + """ + return self._method_route("PATCH", rule, options) + + @setupmethod + def route(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]: + """Decorate a view function to register it with the given URL + rule and options. Calls :meth:`add_url_rule`, which has more + details about the implementation. + + .. code-block:: python + + @app.route("/") + def index(): + return "Hello, World!" + + See :ref:`url-route-registrations`. + + The endpoint name for the route defaults to the name of the view + function if the ``endpoint`` parameter isn't passed. + + The ``methods`` parameter defaults to ``["GET"]``. ``HEAD`` and + ``OPTIONS`` are added automatically. + + :param rule: The URL rule string. + :param options: Extra options passed to the + :class:`~werkzeug.routing.Rule` object. + """ + + def decorator(f: T_route) -> T_route: + endpoint = options.pop("endpoint", None) + self.add_url_rule(rule, endpoint, f, **options) + return f + + return decorator + + @setupmethod + def add_url_rule( + self, + rule: str, + endpoint: str | None = None, + view_func: ft.RouteCallable | None = None, + provide_automatic_options: bool | None = None, + **options: t.Any, + ) -> None: + """Register a rule for routing incoming requests and building + URLs. The :meth:`route` decorator is a shortcut to call this + with the ``view_func`` argument. These are equivalent: + + .. code-block:: python + + @app.route("/") + def index(): + ... + + .. code-block:: python + + def index(): + ... + + app.add_url_rule("/", view_func=index) + + See :ref:`url-route-registrations`. + + The endpoint name for the route defaults to the name of the view + function if the ``endpoint`` parameter isn't passed. An error + will be raised if a function has already been registered for the + endpoint. + + The ``methods`` parameter defaults to ``["GET"]``. ``HEAD`` is + always added automatically, and ``OPTIONS`` is added + automatically by default. + + ``view_func`` does not necessarily need to be passed, but if the + rule should participate in routing an endpoint name must be + associated with a view function at some point with the + :meth:`endpoint` decorator. + + .. code-block:: python + + app.add_url_rule("/", endpoint="index") + + @app.endpoint("index") + def index(): + ... + + If ``view_func`` has a ``required_methods`` attribute, those + methods are added to the passed and automatic methods. If it + has a ``provide_automatic_methods`` attribute, it is used as the + default if the parameter is not passed. + + :param rule: The URL rule string. + :param endpoint: The endpoint name to associate with the rule + and view function. Used when routing and building URLs. + Defaults to ``view_func.__name__``. + :param view_func: The view function to associate with the + endpoint name. + :param provide_automatic_options: Add the ``OPTIONS`` method and + respond to ``OPTIONS`` requests automatically. + :param options: Extra options passed to the + :class:`~werkzeug.routing.Rule` object. + """ + raise NotImplementedError + + @setupmethod + def endpoint(self, endpoint: str) -> t.Callable[[F], F]: + """Decorate a view function to register it for the given + endpoint. Used if a rule is added without a ``view_func`` with + :meth:`add_url_rule`. + + .. code-block:: python + + app.add_url_rule("/ex", endpoint="example") + + @app.endpoint("example") + def example(): + ... + + :param endpoint: The endpoint name to associate with the view + function. + """ + + def decorator(f: F) -> F: + self.view_functions[endpoint] = f + return f + + return decorator + + @setupmethod + def before_request(self, f: T_before_request) -> T_before_request: + """Register a function to run before each request. + + For example, this can be used to open a database connection, or + to load the logged in user from the session. + + .. code-block:: python + + @app.before_request + def load_user(): + if "user_id" in session: + g.user = db.session.get(session["user_id"]) + + The function will be called without any arguments. If it returns + a non-``None`` value, the value is handled as if it was the + return value from the view, and further request handling is + stopped. + + This is available on both app and blueprint objects. When used on an app, this + executes before every request. When used on a blueprint, this executes before + every request that the blueprint handles. To register with a blueprint and + execute before every request, use :meth:`.Blueprint.before_app_request`. + """ + self.before_request_funcs.setdefault(None, []).append(f) + return f + + @setupmethod + def after_request(self, f: T_after_request) -> T_after_request: + """Register a function to run after each request to this object. + + The function is called with the response object, and must return + a response object. This allows the functions to modify or + replace the response before it is sent. + + If a function raises an exception, any remaining + ``after_request`` functions will not be called. Therefore, this + should not be used for actions that must execute, such as to + close resources. Use :meth:`teardown_request` for that. + + This is available on both app and blueprint objects. When used on an app, this + executes after every request. When used on a blueprint, this executes after + every request that the blueprint handles. To register with a blueprint and + execute after every request, use :meth:`.Blueprint.after_app_request`. + """ + self.after_request_funcs.setdefault(None, []).append(f) + return f + + @setupmethod + def teardown_request(self, f: T_teardown) -> T_teardown: + """Register a function to be called when the request context is + popped. Typically this happens at the end of each request, but + contexts may be pushed manually as well during testing. + + .. code-block:: python + + with app.test_request_context(): + ... + + When the ``with`` block exits (or ``ctx.pop()`` is called), the + teardown functions are called just before the request context is + made inactive. + + When a teardown function was called because of an unhandled + exception it will be passed an error object. If an + :meth:`errorhandler` is registered, it will handle the exception + and the teardown will not receive it. + + Teardown functions must avoid raising exceptions. If they + execute code that might fail they must surround that code with a + ``try``/``except`` block and log any errors. + + The return values of teardown functions are ignored. + + This is available on both app and blueprint objects. When used on an app, this + executes after every request. When used on a blueprint, this executes after + every request that the blueprint handles. To register with a blueprint and + execute after every request, use :meth:`.Blueprint.teardown_app_request`. + """ + self.teardown_request_funcs.setdefault(None, []).append(f) + return f + + @setupmethod + def context_processor( + self, + f: T_template_context_processor, + ) -> T_template_context_processor: + """Registers a template context processor function. These functions run before + rendering a template. The keys of the returned dict are added as variables + available in the template. + + This is available on both app and blueprint objects. When used on an app, this + is called for every rendered template. When used on a blueprint, this is called + for templates rendered from the blueprint's views. To register with a blueprint + and affect every template, use :meth:`.Blueprint.app_context_processor`. + """ + self.template_context_processors[None].append(f) + return f + + @setupmethod + def url_value_preprocessor( + self, + f: T_url_value_preprocessor, + ) -> T_url_value_preprocessor: + """Register a URL value preprocessor function for all view + functions in the application. These functions will be called before the + :meth:`before_request` functions. + + The function can modify the values captured from the matched url before + they are passed to the view. For example, this can be used to pop a + common language code value and place it in ``g`` rather than pass it to + every view. + + The function is passed the endpoint name and values dict. The return + value is ignored. + + This is available on both app and blueprint objects. When used on an app, this + is called for every request. When used on a blueprint, this is called for + requests that the blueprint handles. To register with a blueprint and affect + every request, use :meth:`.Blueprint.app_url_value_preprocessor`. + """ + self.url_value_preprocessors[None].append(f) + return f + + @setupmethod + def url_defaults(self, f: T_url_defaults) -> T_url_defaults: + """Callback function for URL defaults for all view functions of the + application. It's called with the endpoint and values and should + update the values passed in place. + + This is available on both app and blueprint objects. When used on an app, this + is called for every request. When used on a blueprint, this is called for + requests that the blueprint handles. To register with a blueprint and affect + every request, use :meth:`.Blueprint.app_url_defaults`. + """ + self.url_default_functions[None].append(f) + return f + + @setupmethod + def errorhandler( + self, code_or_exception: type[Exception] | int + ) -> t.Callable[[T_error_handler], T_error_handler]: + """Register a function to handle errors by code or exception class. + + A decorator that is used to register a function given an + error code. Example:: + + @app.errorhandler(404) + def page_not_found(error): + return 'This page does not exist', 404 + + You can also register handlers for arbitrary exceptions:: + + @app.errorhandler(DatabaseError) + def special_exception_handler(error): + return 'Database connection failed', 500 + + This is available on both app and blueprint objects. When used on an app, this + can handle errors from every request. When used on a blueprint, this can handle + errors from requests that the blueprint handles. To register with a blueprint + and affect every request, use :meth:`.Blueprint.app_errorhandler`. + + .. versionadded:: 0.7 + Use :meth:`register_error_handler` instead of modifying + :attr:`error_handler_spec` directly, for application wide error + handlers. + + .. versionadded:: 0.7 + One can now additionally also register custom exception types + that do not necessarily have to be a subclass of the + :class:`~werkzeug.exceptions.HTTPException` class. + + :param code_or_exception: the code as integer for the handler, or + an arbitrary exception + """ + + def decorator(f: T_error_handler) -> T_error_handler: + self.register_error_handler(code_or_exception, f) + return f + + return decorator + + @setupmethod + def register_error_handler( + self, + code_or_exception: type[Exception] | int, + f: ft.ErrorHandlerCallable, + ) -> None: + """Alternative error attach function to the :meth:`errorhandler` + decorator that is more straightforward to use for non decorator + usage. + + .. versionadded:: 0.7 + """ + exc_class, code = self._get_exc_class_and_code(code_or_exception) + self.error_handler_spec[None][code][exc_class] = f + + @staticmethod + def _get_exc_class_and_code( + exc_class_or_code: type[Exception] | int, + ) -> tuple[type[Exception], int | None]: + """Get the exception class being handled. For HTTP status codes + or ``HTTPException`` subclasses, return both the exception and + status code. + + :param exc_class_or_code: Any exception class, or an HTTP status + code as an integer. + """ + exc_class: type[Exception] + + if isinstance(exc_class_or_code, int): + try: + exc_class = default_exceptions[exc_class_or_code] + except KeyError: + raise ValueError( + f"'{exc_class_or_code}' is not a recognized HTTP" + " error code. Use a subclass of HTTPException with" + " that code instead." + ) from None + else: + exc_class = exc_class_or_code + + if isinstance(exc_class, Exception): + raise TypeError( + f"{exc_class!r} is an instance, not a class. Handlers" + " can only be registered for Exception classes or HTTP" + " error codes." + ) + + if not issubclass(exc_class, Exception): + raise ValueError( + f"'{exc_class.__name__}' is not a subclass of Exception." + " Handlers can only be registered for Exception classes" + " or HTTP error codes." + ) + + if issubclass(exc_class, HTTPException): + return exc_class, exc_class.code + else: + return exc_class, None + + +def _endpoint_from_view_func(view_func: t.Callable) -> str: + """Internal helper that returns the default endpoint for a given + function. This always is the function name. + """ + assert view_func is not None, "expected view func if endpoint is not provided." + return view_func.__name__ + + +def _path_is_relative_to(path: pathlib.PurePath, base: str) -> bool: + # Path.is_relative_to doesn't exist until Python 3.9 + try: + path.relative_to(base) + return True + except ValueError: + return False + + +def _find_package_path(import_name): + """Find the path that contains the package or module.""" + root_mod_name, _, _ = import_name.partition(".") + + try: + root_spec = importlib.util.find_spec(root_mod_name) + + if root_spec is None: + raise ValueError("not found") + except (ImportError, ValueError): + # ImportError: the machinery told us it does not exist + # ValueError: + # - the module name was invalid + # - the module name is __main__ + # - we raised `ValueError` due to `root_spec` being `None` + return os.getcwd() + + if root_spec.origin in {"namespace", None}: + # namespace package + package_spec = importlib.util.find_spec(import_name) + + if package_spec is not None and package_spec.submodule_search_locations: + # Pick the path in the namespace that contains the submodule. + package_path = pathlib.Path( + os.path.commonpath(package_spec.submodule_search_locations) + ) + search_location = next( + location + for location in root_spec.submodule_search_locations + if _path_is_relative_to(package_path, location) + ) + else: + # Pick the first path. + search_location = root_spec.submodule_search_locations[0] + + return os.path.dirname(search_location) + elif root_spec.submodule_search_locations: + # package with __init__.py + return os.path.dirname(os.path.dirname(root_spec.origin)) + else: + # module + return os.path.dirname(root_spec.origin) + + +def find_package(import_name: str): + """Find the prefix that a package is installed under, and the path + that it would be imported from. + + The prefix is the directory containing the standard directory + hierarchy (lib, bin, etc.). If the package is not installed to the + system (:attr:`sys.prefix`) or a virtualenv (``site-packages``), + ``None`` is returned. + + The path is the entry in :attr:`sys.path` that contains the package + for import. If the package is not installed, it's assumed that the + package was imported from the current working directory. + """ + package_path = _find_package_path(import_name) + py_prefix = os.path.abspath(sys.prefix) + + # installed to the system + if _path_is_relative_to(pathlib.PurePath(package_path), py_prefix): + return py_prefix, package_path + + site_parent, site_folder = os.path.split(package_path) + + # installed to a virtualenv + if site_folder.lower() == "site-packages": + parent, folder = os.path.split(site_parent) + + # Windows (prefix/lib/site-packages) + if folder.lower() == "lib": + return parent, package_path + + # Unix (prefix/lib/pythonX.Y/site-packages) + if os.path.basename(parent).lower() == "lib": + return os.path.dirname(parent), package_path + + # something else (prefix/site-packages) + return site_parent, package_path + + # not installed + return None, package_path diff --git a/server/venv/lib/python3.10/site-packages/flask/sessions.py b/server/venv/lib/python3.10/site-packages/flask/sessions.py new file mode 100644 index 0000000..e5650d6 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/sessions.py @@ -0,0 +1,367 @@ +from __future__ import annotations + +import hashlib +import typing as t +from collections.abc import MutableMapping +from datetime import datetime +from datetime import timezone + +from itsdangerous import BadSignature +from itsdangerous import URLSafeTimedSerializer +from werkzeug.datastructures import CallbackDict + +from .json.tag import TaggedJSONSerializer + +if t.TYPE_CHECKING: # pragma: no cover + from .app import Flask + from .wrappers import Request, Response + + +class SessionMixin(MutableMapping): + """Expands a basic dictionary with session attributes.""" + + @property + def permanent(self) -> bool: + """This reflects the ``'_permanent'`` key in the dict.""" + return self.get("_permanent", False) + + @permanent.setter + def permanent(self, value: bool) -> None: + self["_permanent"] = bool(value) + + #: Some implementations can detect whether a session is newly + #: created, but that is not guaranteed. Use with caution. The mixin + # default is hard-coded ``False``. + new = False + + #: Some implementations can detect changes to the session and set + #: this when that happens. The mixin default is hard coded to + #: ``True``. + modified = True + + #: Some implementations can detect when session data is read or + #: written and set this when that happens. The mixin default is hard + #: coded to ``True``. + accessed = True + + +class SecureCookieSession(CallbackDict, SessionMixin): + """Base class for sessions based on signed cookies. + + This session backend will set the :attr:`modified` and + :attr:`accessed` attributes. It cannot reliably track whether a + session is new (vs. empty), so :attr:`new` remains hard coded to + ``False``. + """ + + #: When data is changed, this is set to ``True``. Only the session + #: dictionary itself is tracked; if the session contains mutable + #: data (for example a nested dict) then this must be set to + #: ``True`` manually when modifying that data. The session cookie + #: will only be written to the response if this is ``True``. + modified = False + + #: When data is read or written, this is set to ``True``. Used by + # :class:`.SecureCookieSessionInterface` to add a ``Vary: Cookie`` + #: header, which allows caching proxies to cache different pages for + #: different users. + accessed = False + + def __init__(self, initial: t.Any = None) -> None: + def on_update(self) -> None: + self.modified = True + self.accessed = True + + super().__init__(initial, on_update) + + def __getitem__(self, key: str) -> t.Any: + self.accessed = True + return super().__getitem__(key) + + def get(self, key: str, default: t.Any = None) -> t.Any: + self.accessed = True + return super().get(key, default) + + def setdefault(self, key: str, default: t.Any = None) -> t.Any: + self.accessed = True + return super().setdefault(key, default) + + +class NullSession(SecureCookieSession): + """Class used to generate nicer error messages if sessions are not + available. Will still allow read-only access to the empty session + but fail on setting. + """ + + def _fail(self, *args: t.Any, **kwargs: t.Any) -> t.NoReturn: + raise RuntimeError( + "The session is unavailable because no secret " + "key was set. Set the secret_key on the " + "application to something unique and secret." + ) + + __setitem__ = __delitem__ = clear = pop = popitem = update = setdefault = _fail # type: ignore # noqa: B950 + del _fail + + +class SessionInterface: + """The basic interface you have to implement in order to replace the + default session interface which uses werkzeug's securecookie + implementation. The only methods you have to implement are + :meth:`open_session` and :meth:`save_session`, the others have + useful defaults which you don't need to change. + + The session object returned by the :meth:`open_session` method has to + provide a dictionary like interface plus the properties and methods + from the :class:`SessionMixin`. We recommend just subclassing a dict + and adding that mixin:: + + class Session(dict, SessionMixin): + pass + + If :meth:`open_session` returns ``None`` Flask will call into + :meth:`make_null_session` to create a session that acts as replacement + if the session support cannot work because some requirement is not + fulfilled. The default :class:`NullSession` class that is created + will complain that the secret key was not set. + + To replace the session interface on an application all you have to do + is to assign :attr:`flask.Flask.session_interface`:: + + app = Flask(__name__) + app.session_interface = MySessionInterface() + + Multiple requests with the same session may be sent and handled + concurrently. When implementing a new session interface, consider + whether reads or writes to the backing store must be synchronized. + There is no guarantee on the order in which the session for each + request is opened or saved, it will occur in the order that requests + begin and end processing. + + .. versionadded:: 0.8 + """ + + #: :meth:`make_null_session` will look here for the class that should + #: be created when a null session is requested. Likewise the + #: :meth:`is_null_session` method will perform a typecheck against + #: this type. + null_session_class = NullSession + + #: A flag that indicates if the session interface is pickle based. + #: This can be used by Flask extensions to make a decision in regards + #: to how to deal with the session object. + #: + #: .. versionadded:: 0.10 + pickle_based = False + + def make_null_session(self, app: Flask) -> NullSession: + """Creates a null session which acts as a replacement object if the + real session support could not be loaded due to a configuration + error. This mainly aids the user experience because the job of the + null session is to still support lookup without complaining but + modifications are answered with a helpful error message of what + failed. + + This creates an instance of :attr:`null_session_class` by default. + """ + return self.null_session_class() + + def is_null_session(self, obj: object) -> bool: + """Checks if a given object is a null session. Null sessions are + not asked to be saved. + + This checks if the object is an instance of :attr:`null_session_class` + by default. + """ + return isinstance(obj, self.null_session_class) + + def get_cookie_name(self, app: Flask) -> str: + """The name of the session cookie. Uses``app.config["SESSION_COOKIE_NAME"]``.""" + return app.config["SESSION_COOKIE_NAME"] + + def get_cookie_domain(self, app: Flask) -> str | None: + """The value of the ``Domain`` parameter on the session cookie. If not set, + browsers will only send the cookie to the exact domain it was set from. + Otherwise, they will send it to any subdomain of the given value as well. + + Uses the :data:`SESSION_COOKIE_DOMAIN` config. + + .. versionchanged:: 2.3 + Not set by default, does not fall back to ``SERVER_NAME``. + """ + rv = app.config["SESSION_COOKIE_DOMAIN"] + return rv if rv else None + + def get_cookie_path(self, app: Flask) -> str: + """Returns the path for which the cookie should be valid. The + default implementation uses the value from the ``SESSION_COOKIE_PATH`` + config var if it's set, and falls back to ``APPLICATION_ROOT`` or + uses ``/`` if it's ``None``. + """ + return app.config["SESSION_COOKIE_PATH"] or app.config["APPLICATION_ROOT"] + + def get_cookie_httponly(self, app: Flask) -> bool: + """Returns True if the session cookie should be httponly. This + currently just returns the value of the ``SESSION_COOKIE_HTTPONLY`` + config var. + """ + return app.config["SESSION_COOKIE_HTTPONLY"] + + def get_cookie_secure(self, app: Flask) -> bool: + """Returns True if the cookie should be secure. This currently + just returns the value of the ``SESSION_COOKIE_SECURE`` setting. + """ + return app.config["SESSION_COOKIE_SECURE"] + + def get_cookie_samesite(self, app: Flask) -> str: + """Return ``'Strict'`` or ``'Lax'`` if the cookie should use the + ``SameSite`` attribute. This currently just returns the value of + the :data:`SESSION_COOKIE_SAMESITE` setting. + """ + return app.config["SESSION_COOKIE_SAMESITE"] + + def get_expiration_time(self, app: Flask, session: SessionMixin) -> datetime | None: + """A helper method that returns an expiration date for the session + or ``None`` if the session is linked to the browser session. The + default implementation returns now + the permanent session + lifetime configured on the application. + """ + if session.permanent: + return datetime.now(timezone.utc) + app.permanent_session_lifetime + return None + + def should_set_cookie(self, app: Flask, session: SessionMixin) -> bool: + """Used by session backends to determine if a ``Set-Cookie`` header + should be set for this session cookie for this response. If the session + has been modified, the cookie is set. If the session is permanent and + the ``SESSION_REFRESH_EACH_REQUEST`` config is true, the cookie is + always set. + + This check is usually skipped if the session was deleted. + + .. versionadded:: 0.11 + """ + + return session.modified or ( + session.permanent and app.config["SESSION_REFRESH_EACH_REQUEST"] + ) + + def open_session(self, app: Flask, request: Request) -> SessionMixin | None: + """This is called at the beginning of each request, after + pushing the request context, before matching the URL. + + This must return an object which implements a dictionary-like + interface as well as the :class:`SessionMixin` interface. + + This will return ``None`` to indicate that loading failed in + some way that is not immediately an error. The request + context will fall back to using :meth:`make_null_session` + in this case. + """ + raise NotImplementedError() + + def save_session( + self, app: Flask, session: SessionMixin, response: Response + ) -> None: + """This is called at the end of each request, after generating + a response, before removing the request context. It is skipped + if :meth:`is_null_session` returns ``True``. + """ + raise NotImplementedError() + + +session_json_serializer = TaggedJSONSerializer() + + +class SecureCookieSessionInterface(SessionInterface): + """The default session interface that stores sessions in signed cookies + through the :mod:`itsdangerous` module. + """ + + #: the salt that should be applied on top of the secret key for the + #: signing of cookie based sessions. + salt = "cookie-session" + #: the hash function to use for the signature. The default is sha1 + digest_method = staticmethod(hashlib.sha1) + #: the name of the itsdangerous supported key derivation. The default + #: is hmac. + key_derivation = "hmac" + #: A python serializer for the payload. The default is a compact + #: JSON derived serializer with support for some extra Python types + #: such as datetime objects or tuples. + serializer = session_json_serializer + session_class = SecureCookieSession + + def get_signing_serializer(self, app: Flask) -> URLSafeTimedSerializer | None: + if not app.secret_key: + return None + signer_kwargs = dict( + key_derivation=self.key_derivation, digest_method=self.digest_method + ) + return URLSafeTimedSerializer( + app.secret_key, + salt=self.salt, + serializer=self.serializer, + signer_kwargs=signer_kwargs, + ) + + def open_session(self, app: Flask, request: Request) -> SecureCookieSession | None: + s = self.get_signing_serializer(app) + if s is None: + return None + val = request.cookies.get(self.get_cookie_name(app)) + if not val: + return self.session_class() + max_age = int(app.permanent_session_lifetime.total_seconds()) + try: + data = s.loads(val, max_age=max_age) + return self.session_class(data) + except BadSignature: + return self.session_class() + + def save_session( + self, app: Flask, session: SessionMixin, response: Response + ) -> None: + name = self.get_cookie_name(app) + domain = self.get_cookie_domain(app) + path = self.get_cookie_path(app) + secure = self.get_cookie_secure(app) + samesite = self.get_cookie_samesite(app) + httponly = self.get_cookie_httponly(app) + + # Add a "Vary: Cookie" header if the session was accessed at all. + if session.accessed: + response.vary.add("Cookie") + + # If the session is modified to be empty, remove the cookie. + # If the session is empty, return without setting the cookie. + if not session: + if session.modified: + response.delete_cookie( + name, + domain=domain, + path=path, + secure=secure, + samesite=samesite, + httponly=httponly, + ) + response.vary.add("Cookie") + + return + + if not self.should_set_cookie(app, session): + return + + expires = self.get_expiration_time(app, session) + val = self.get_signing_serializer(app).dumps(dict(session)) # type: ignore + response.set_cookie( + name, + val, # type: ignore + expires=expires, + httponly=httponly, + domain=domain, + path=path, + secure=secure, + samesite=samesite, + ) + response.vary.add("Cookie") diff --git a/server/venv/lib/python3.10/site-packages/flask/signals.py b/server/venv/lib/python3.10/site-packages/flask/signals.py new file mode 100644 index 0000000..444fda9 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/signals.py @@ -0,0 +1,17 @@ +from __future__ import annotations + +from blinker import Namespace + +# This namespace is only for signals provided by Flask itself. +_signals = Namespace() + +template_rendered = _signals.signal("template-rendered") +before_render_template = _signals.signal("before-render-template") +request_started = _signals.signal("request-started") +request_finished = _signals.signal("request-finished") +request_tearing_down = _signals.signal("request-tearing-down") +got_request_exception = _signals.signal("got-request-exception") +appcontext_tearing_down = _signals.signal("appcontext-tearing-down") +appcontext_pushed = _signals.signal("appcontext-pushed") +appcontext_popped = _signals.signal("appcontext-popped") +message_flashed = _signals.signal("message-flashed") diff --git a/server/venv/lib/python3.10/site-packages/flask/templating.py b/server/venv/lib/python3.10/site-packages/flask/templating.py new file mode 100644 index 0000000..8dff8ba --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/templating.py @@ -0,0 +1,221 @@ +from __future__ import annotations + +import typing as t + +from jinja2 import BaseLoader +from jinja2 import Environment as BaseEnvironment +from jinja2 import Template +from jinja2 import TemplateNotFound + +from .globals import _cv_app +from .globals import _cv_request +from .globals import current_app +from .globals import request +from .helpers import stream_with_context +from .signals import before_render_template +from .signals import template_rendered + +if t.TYPE_CHECKING: # pragma: no cover + from .app import Flask + from .sansio.app import App + from .sansio.scaffold import Scaffold + + +def _default_template_ctx_processor() -> dict[str, t.Any]: + """Default template context processor. Injects `request`, + `session` and `g`. + """ + appctx = _cv_app.get(None) + reqctx = _cv_request.get(None) + rv: dict[str, t.Any] = {} + if appctx is not None: + rv["g"] = appctx.g + if reqctx is not None: + rv["request"] = reqctx.request + rv["session"] = reqctx.session + return rv + + +class Environment(BaseEnvironment): + """Works like a regular Jinja2 environment but has some additional + knowledge of how Flask's blueprint works so that it can prepend the + name of the blueprint to referenced templates if necessary. + """ + + def __init__(self, app: App, **options: t.Any) -> None: + if "loader" not in options: + options["loader"] = app.create_global_jinja_loader() + BaseEnvironment.__init__(self, **options) + self.app = app + + +class DispatchingJinjaLoader(BaseLoader): + """A loader that looks for templates in the application and all + the blueprint folders. + """ + + def __init__(self, app: App) -> None: + self.app = app + + def get_source( # type: ignore + self, environment: Environment, template: str + ) -> tuple[str, str | None, t.Callable | None]: + if self.app.config["EXPLAIN_TEMPLATE_LOADING"]: + return self._get_source_explained(environment, template) + return self._get_source_fast(environment, template) + + def _get_source_explained( + self, environment: Environment, template: str + ) -> tuple[str, str | None, t.Callable | None]: + attempts = [] + rv: tuple[str, str | None, t.Callable[[], bool] | None] | None + trv: None | (tuple[str, str | None, t.Callable[[], bool] | None]) = None + + for srcobj, loader in self._iter_loaders(template): + try: + rv = loader.get_source(environment, template) + if trv is None: + trv = rv + except TemplateNotFound: + rv = None + attempts.append((loader, srcobj, rv)) + + from .debughelpers import explain_template_loading_attempts + + explain_template_loading_attempts(self.app, template, attempts) + + if trv is not None: + return trv + raise TemplateNotFound(template) + + def _get_source_fast( + self, environment: Environment, template: str + ) -> tuple[str, str | None, t.Callable | None]: + for _srcobj, loader in self._iter_loaders(template): + try: + return loader.get_source(environment, template) + except TemplateNotFound: + continue + raise TemplateNotFound(template) + + def _iter_loaders( + self, template: str + ) -> t.Generator[tuple[Scaffold, BaseLoader], None, None]: + loader = self.app.jinja_loader + if loader is not None: + yield self.app, loader + + for blueprint in self.app.iter_blueprints(): + loader = blueprint.jinja_loader + if loader is not None: + yield blueprint, loader + + def list_templates(self) -> list[str]: + result = set() + loader = self.app.jinja_loader + if loader is not None: + result.update(loader.list_templates()) + + for blueprint in self.app.iter_blueprints(): + loader = blueprint.jinja_loader + if loader is not None: + for template in loader.list_templates(): + result.add(template) + + return list(result) + + +def _render(app: Flask, template: Template, context: dict[str, t.Any]) -> str: + app.update_template_context(context) + before_render_template.send( + app, _async_wrapper=app.ensure_sync, template=template, context=context + ) + rv = template.render(context) + template_rendered.send( + app, _async_wrapper=app.ensure_sync, template=template, context=context + ) + return rv + + +def render_template( + template_name_or_list: str | Template | list[str | Template], + **context: t.Any, +) -> str: + """Render a template by name with the given context. + + :param template_name_or_list: The name of the template to render. If + a list is given, the first name to exist will be rendered. + :param context: The variables to make available in the template. + """ + app = current_app._get_current_object() # type: ignore[attr-defined] + template = app.jinja_env.get_or_select_template(template_name_or_list) + return _render(app, template, context) + + +def render_template_string(source: str, **context: t.Any) -> str: + """Render a template from the given source string with the given + context. + + :param source: The source code of the template to render. + :param context: The variables to make available in the template. + """ + app = current_app._get_current_object() # type: ignore[attr-defined] + template = app.jinja_env.from_string(source) + return _render(app, template, context) + + +def _stream( + app: Flask, template: Template, context: dict[str, t.Any] +) -> t.Iterator[str]: + app.update_template_context(context) + before_render_template.send( + app, _async_wrapper=app.ensure_sync, template=template, context=context + ) + + def generate() -> t.Iterator[str]: + yield from template.generate(context) + template_rendered.send( + app, _async_wrapper=app.ensure_sync, template=template, context=context + ) + + rv = generate() + + # If a request context is active, keep it while generating. + if request: + rv = stream_with_context(rv) + + return rv + + +def stream_template( + template_name_or_list: str | Template | list[str | Template], + **context: t.Any, +) -> t.Iterator[str]: + """Render a template by name with the given context as a stream. + This returns an iterator of strings, which can be used as a + streaming response from a view. + + :param template_name_or_list: The name of the template to render. If + a list is given, the first name to exist will be rendered. + :param context: The variables to make available in the template. + + .. versionadded:: 2.2 + """ + app = current_app._get_current_object() # type: ignore[attr-defined] + template = app.jinja_env.get_or_select_template(template_name_or_list) + return _stream(app, template, context) + + +def stream_template_string(source: str, **context: t.Any) -> t.Iterator[str]: + """Render a template from the given source string with the given + context as a stream. This returns an iterator of strings, which can + be used as a streaming response from a view. + + :param source: The source code of the template to render. + :param context: The variables to make available in the template. + + .. versionadded:: 2.2 + """ + app = current_app._get_current_object() # type: ignore[attr-defined] + template = app.jinja_env.from_string(source) + return _stream(app, template, context) diff --git a/server/venv/lib/python3.10/site-packages/flask/testing.py b/server/venv/lib/python3.10/site-packages/flask/testing.py new file mode 100644 index 0000000..69aa785 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/testing.py @@ -0,0 +1,295 @@ +from __future__ import annotations + +import importlib.metadata +import typing as t +from contextlib import contextmanager +from contextlib import ExitStack +from copy import copy +from types import TracebackType +from urllib.parse import urlsplit + +import werkzeug.test +from click.testing import CliRunner +from werkzeug.test import Client +from werkzeug.wrappers import Request as BaseRequest + +from .cli import ScriptInfo +from .sessions import SessionMixin + +if t.TYPE_CHECKING: # pragma: no cover + from werkzeug.test import TestResponse + + from .app import Flask + + +class EnvironBuilder(werkzeug.test.EnvironBuilder): + """An :class:`~werkzeug.test.EnvironBuilder`, that takes defaults from the + application. + + :param app: The Flask application to configure the environment from. + :param path: URL path being requested. + :param base_url: Base URL where the app is being served, which + ``path`` is relative to. If not given, built from + :data:`PREFERRED_URL_SCHEME`, ``subdomain``, + :data:`SERVER_NAME`, and :data:`APPLICATION_ROOT`. + :param subdomain: Subdomain name to append to :data:`SERVER_NAME`. + :param url_scheme: Scheme to use instead of + :data:`PREFERRED_URL_SCHEME`. + :param json: If given, this is serialized as JSON and passed as + ``data``. Also defaults ``content_type`` to + ``application/json``. + :param args: other positional arguments passed to + :class:`~werkzeug.test.EnvironBuilder`. + :param kwargs: other keyword arguments passed to + :class:`~werkzeug.test.EnvironBuilder`. + """ + + def __init__( + self, + app: Flask, + path: str = "/", + base_url: str | None = None, + subdomain: str | None = None, + url_scheme: str | None = None, + *args: t.Any, + **kwargs: t.Any, + ) -> None: + assert not (base_url or subdomain or url_scheme) or ( + base_url is not None + ) != bool( + subdomain or url_scheme + ), 'Cannot pass "subdomain" or "url_scheme" with "base_url".' + + if base_url is None: + http_host = app.config.get("SERVER_NAME") or "localhost" + app_root = app.config["APPLICATION_ROOT"] + + if subdomain: + http_host = f"{subdomain}.{http_host}" + + if url_scheme is None: + url_scheme = app.config["PREFERRED_URL_SCHEME"] + + url = urlsplit(path) + base_url = ( + f"{url.scheme or url_scheme}://{url.netloc or http_host}" + f"/{app_root.lstrip('/')}" + ) + path = url.path + + if url.query: + sep = b"?" if isinstance(url.query, bytes) else "?" + path += sep + url.query + + self.app = app + super().__init__(path, base_url, *args, **kwargs) + + def json_dumps(self, obj: t.Any, **kwargs: t.Any) -> str: # type: ignore + """Serialize ``obj`` to a JSON-formatted string. + + The serialization will be configured according to the config associated + with this EnvironBuilder's ``app``. + """ + return self.app.json.dumps(obj, **kwargs) + + +_werkzeug_version = "" + + +def _get_werkzeug_version() -> str: + global _werkzeug_version + + if not _werkzeug_version: + _werkzeug_version = importlib.metadata.version("werkzeug") + + return _werkzeug_version + + +class FlaskClient(Client): + """Works like a regular Werkzeug test client but has knowledge about + Flask's contexts to defer the cleanup of the request context until + the end of a ``with`` block. For general information about how to + use this class refer to :class:`werkzeug.test.Client`. + + .. versionchanged:: 0.12 + `app.test_client()` includes preset default environment, which can be + set after instantiation of the `app.test_client()` object in + `client.environ_base`. + + Basic usage is outlined in the :doc:`/testing` chapter. + """ + + application: Flask + + def __init__(self, *args: t.Any, **kwargs: t.Any) -> None: + super().__init__(*args, **kwargs) + self.preserve_context = False + self._new_contexts: list[t.ContextManager[t.Any]] = [] + self._context_stack = ExitStack() + self.environ_base = { + "REMOTE_ADDR": "127.0.0.1", + "HTTP_USER_AGENT": f"Werkzeug/{_get_werkzeug_version()}", + } + + @contextmanager + def session_transaction( + self, *args: t.Any, **kwargs: t.Any + ) -> t.Generator[SessionMixin, None, None]: + """When used in combination with a ``with`` statement this opens a + session transaction. This can be used to modify the session that + the test client uses. Once the ``with`` block is left the session is + stored back. + + :: + + with client.session_transaction() as session: + session['value'] = 42 + + Internally this is implemented by going through a temporary test + request context and since session handling could depend on + request variables this function accepts the same arguments as + :meth:`~flask.Flask.test_request_context` which are directly + passed through. + """ + if self._cookies is None: + raise TypeError( + "Cookies are disabled. Create a client with 'use_cookies=True'." + ) + + app = self.application + ctx = app.test_request_context(*args, **kwargs) + self._add_cookies_to_wsgi(ctx.request.environ) + + with ctx: + sess = app.session_interface.open_session(app, ctx.request) + + if sess is None: + raise RuntimeError("Session backend did not open a session.") + + yield sess + resp = app.response_class() + + if app.session_interface.is_null_session(sess): + return + + with ctx: + app.session_interface.save_session(app, sess, resp) + + self._update_cookies_from_response( + ctx.request.host.partition(":")[0], + ctx.request.path, + resp.headers.getlist("Set-Cookie"), + ) + + def _copy_environ(self, other): + out = {**self.environ_base, **other} + + if self.preserve_context: + out["werkzeug.debug.preserve_context"] = self._new_contexts.append + + return out + + def _request_from_builder_args(self, args, kwargs): + kwargs["environ_base"] = self._copy_environ(kwargs.get("environ_base", {})) + builder = EnvironBuilder(self.application, *args, **kwargs) + + try: + return builder.get_request() + finally: + builder.close() + + def open( + self, + *args: t.Any, + buffered: bool = False, + follow_redirects: bool = False, + **kwargs: t.Any, + ) -> TestResponse: + if args and isinstance( + args[0], (werkzeug.test.EnvironBuilder, dict, BaseRequest) + ): + if isinstance(args[0], werkzeug.test.EnvironBuilder): + builder = copy(args[0]) + builder.environ_base = self._copy_environ(builder.environ_base or {}) + request = builder.get_request() + elif isinstance(args[0], dict): + request = EnvironBuilder.from_environ( + args[0], app=self.application, environ_base=self._copy_environ({}) + ).get_request() + else: + # isinstance(args[0], BaseRequest) + request = copy(args[0]) + request.environ = self._copy_environ(request.environ) + else: + # request is None + request = self._request_from_builder_args(args, kwargs) + + # Pop any previously preserved contexts. This prevents contexts + # from being preserved across redirects or multiple requests + # within a single block. + self._context_stack.close() + + response = super().open( + request, + buffered=buffered, + follow_redirects=follow_redirects, + ) + response.json_module = self.application.json # type: ignore[assignment] + + # Re-push contexts that were preserved during the request. + while self._new_contexts: + cm = self._new_contexts.pop() + self._context_stack.enter_context(cm) + + return response + + def __enter__(self) -> FlaskClient: + if self.preserve_context: + raise RuntimeError("Cannot nest client invocations") + self.preserve_context = True + return self + + def __exit__( + self, + exc_type: type | None, + exc_value: BaseException | None, + tb: TracebackType | None, + ) -> None: + self.preserve_context = False + self._context_stack.close() + + +class FlaskCliRunner(CliRunner): + """A :class:`~click.testing.CliRunner` for testing a Flask app's + CLI commands. Typically created using + :meth:`~flask.Flask.test_cli_runner`. See :ref:`testing-cli`. + """ + + def __init__(self, app: Flask, **kwargs: t.Any) -> None: + self.app = app + super().__init__(**kwargs) + + def invoke( # type: ignore + self, cli: t.Any = None, args: t.Any = None, **kwargs: t.Any + ) -> t.Any: + """Invokes a CLI command in an isolated environment. See + :meth:`CliRunner.invoke ` for + full method documentation. See :ref:`testing-cli` for examples. + + If the ``obj`` argument is not given, passes an instance of + :class:`~flask.cli.ScriptInfo` that knows how to load the Flask + app being tested. + + :param cli: Command object to invoke. Default is the app's + :attr:`~flask.app.Flask.cli` group. + :param args: List of strings to invoke the command with. + + :return: a :class:`~click.testing.Result` object. + """ + if cli is None: + cli = self.app.cli # type: ignore + + if "obj" not in kwargs: + kwargs["obj"] = ScriptInfo(create_app=lambda: self.app) + + return super().invoke(cli, args, **kwargs) diff --git a/server/venv/lib/python3.10/site-packages/flask/typing.py b/server/venv/lib/python3.10/site-packages/flask/typing.py new file mode 100644 index 0000000..a8c9ba0 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/typing.py @@ -0,0 +1,88 @@ +from __future__ import annotations + +import typing as t + +if t.TYPE_CHECKING: # pragma: no cover + from _typeshed.wsgi import WSGIApplication # noqa: F401 + from werkzeug.datastructures import Headers # noqa: F401 + from werkzeug.sansio.response import Response # noqa: F401 + +# The possible types that are directly convertible or are a Response object. +ResponseValue = t.Union[ + "Response", + str, + bytes, + t.List[t.Any], + # Only dict is actually accepted, but Mapping allows for TypedDict. + t.Mapping[str, t.Any], + t.Iterator[str], + t.Iterator[bytes], +] + +# the possible types for an individual HTTP header +# This should be a Union, but mypy doesn't pass unless it's a TypeVar. +HeaderValue = t.Union[str, t.List[str], t.Tuple[str, ...]] + +# the possible types for HTTP headers +HeadersValue = t.Union[ + "Headers", + t.Mapping[str, HeaderValue], + t.Sequence[t.Tuple[str, HeaderValue]], +] + +# The possible types returned by a route function. +ResponseReturnValue = t.Union[ + ResponseValue, + t.Tuple[ResponseValue, HeadersValue], + t.Tuple[ResponseValue, int], + t.Tuple[ResponseValue, int, HeadersValue], + "WSGIApplication", +] + +# Allow any subclass of werkzeug.Response, such as the one from Flask, +# as a callback argument. Using werkzeug.Response directly makes a +# callback annotated with flask.Response fail type checking. +ResponseClass = t.TypeVar("ResponseClass", bound="Response") + +AppOrBlueprintKey = t.Optional[str] # The App key is None, whereas blueprints are named +AfterRequestCallable = t.Union[ + t.Callable[[ResponseClass], ResponseClass], + t.Callable[[ResponseClass], t.Awaitable[ResponseClass]], +] +BeforeFirstRequestCallable = t.Union[ + t.Callable[[], None], t.Callable[[], t.Awaitable[None]] +] +BeforeRequestCallable = t.Union[ + t.Callable[[], t.Optional[ResponseReturnValue]], + t.Callable[[], t.Awaitable[t.Optional[ResponseReturnValue]]], +] +ShellContextProcessorCallable = t.Callable[[], t.Dict[str, t.Any]] +TeardownCallable = t.Union[ + t.Callable[[t.Optional[BaseException]], None], + t.Callable[[t.Optional[BaseException]], t.Awaitable[None]], +] +TemplateContextProcessorCallable = t.Union[ + t.Callable[[], t.Dict[str, t.Any]], + t.Callable[[], t.Awaitable[t.Dict[str, t.Any]]], +] +TemplateFilterCallable = t.Callable[..., t.Any] +TemplateGlobalCallable = t.Callable[..., t.Any] +TemplateTestCallable = t.Callable[..., bool] +URLDefaultCallable = t.Callable[[str, dict], None] +URLValuePreprocessorCallable = t.Callable[[t.Optional[str], t.Optional[dict]], None] + +# This should take Exception, but that either breaks typing the argument +# with a specific exception, or decorating multiple times with different +# exceptions (and using a union type on the argument). +# https://github.com/pallets/flask/issues/4095 +# https://github.com/pallets/flask/issues/4295 +# https://github.com/pallets/flask/issues/4297 +ErrorHandlerCallable = t.Union[ + t.Callable[[t.Any], ResponseReturnValue], + t.Callable[[t.Any], t.Awaitable[ResponseReturnValue]], +] + +RouteCallable = t.Union[ + t.Callable[..., ResponseReturnValue], + t.Callable[..., t.Awaitable[ResponseReturnValue]], +] diff --git a/server/venv/lib/python3.10/site-packages/flask/views.py b/server/venv/lib/python3.10/site-packages/flask/views.py new file mode 100644 index 0000000..c7a2b62 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/views.py @@ -0,0 +1,190 @@ +from __future__ import annotations + +import typing as t + +from . import typing as ft +from .globals import current_app +from .globals import request + + +http_method_funcs = frozenset( + ["get", "post", "head", "options", "delete", "put", "trace", "patch"] +) + + +class View: + """Subclass this class and override :meth:`dispatch_request` to + create a generic class-based view. Call :meth:`as_view` to create a + view function that creates an instance of the class with the given + arguments and calls its ``dispatch_request`` method with any URL + variables. + + See :doc:`views` for a detailed guide. + + .. code-block:: python + + class Hello(View): + init_every_request = False + + def dispatch_request(self, name): + return f"Hello, {name}!" + + app.add_url_rule( + "/hello/", view_func=Hello.as_view("hello") + ) + + Set :attr:`methods` on the class to change what methods the view + accepts. + + Set :attr:`decorators` on the class to apply a list of decorators to + the generated view function. Decorators applied to the class itself + will not be applied to the generated view function! + + Set :attr:`init_every_request` to ``False`` for efficiency, unless + you need to store request-global data on ``self``. + """ + + #: The methods this view is registered for. Uses the same default + #: (``["GET", "HEAD", "OPTIONS"]``) as ``route`` and + #: ``add_url_rule`` by default. + methods: t.ClassVar[t.Collection[str] | None] = None + + #: Control whether the ``OPTIONS`` method is handled automatically. + #: Uses the same default (``True``) as ``route`` and + #: ``add_url_rule`` by default. + provide_automatic_options: t.ClassVar[bool | None] = None + + #: A list of decorators to apply, in order, to the generated view + #: function. Remember that ``@decorator`` syntax is applied bottom + #: to top, so the first decorator in the list would be the bottom + #: decorator. + #: + #: .. versionadded:: 0.8 + decorators: t.ClassVar[list[t.Callable]] = [] + + #: Create a new instance of this view class for every request by + #: default. If a view subclass sets this to ``False``, the same + #: instance is used for every request. + #: + #: A single instance is more efficient, especially if complex setup + #: is done during init. However, storing data on ``self`` is no + #: longer safe across requests, and :data:`~flask.g` should be used + #: instead. + #: + #: .. versionadded:: 2.2 + init_every_request: t.ClassVar[bool] = True + + def dispatch_request(self) -> ft.ResponseReturnValue: + """The actual view function behavior. Subclasses must override + this and return a valid response. Any variables from the URL + rule are passed as keyword arguments. + """ + raise NotImplementedError() + + @classmethod + def as_view( + cls, name: str, *class_args: t.Any, **class_kwargs: t.Any + ) -> ft.RouteCallable: + """Convert the class into a view function that can be registered + for a route. + + By default, the generated view will create a new instance of the + view class for every request and call its + :meth:`dispatch_request` method. If the view class sets + :attr:`init_every_request` to ``False``, the same instance will + be used for every request. + + Except for ``name``, all other arguments passed to this method + are forwarded to the view class ``__init__`` method. + + .. versionchanged:: 2.2 + Added the ``init_every_request`` class attribute. + """ + if cls.init_every_request: + + def view(**kwargs: t.Any) -> ft.ResponseReturnValue: + self = view.view_class( # type: ignore[attr-defined] + *class_args, **class_kwargs + ) + return current_app.ensure_sync(self.dispatch_request)(**kwargs) + + else: + self = cls(*class_args, **class_kwargs) + + def view(**kwargs: t.Any) -> ft.ResponseReturnValue: + return current_app.ensure_sync(self.dispatch_request)(**kwargs) + + if cls.decorators: + view.__name__ = name + view.__module__ = cls.__module__ + for decorator in cls.decorators: + view = decorator(view) + + # We attach the view class to the view function for two reasons: + # first of all it allows us to easily figure out what class-based + # view this thing came from, secondly it's also used for instantiating + # the view class so you can actually replace it with something else + # for testing purposes and debugging. + view.view_class = cls # type: ignore + view.__name__ = name + view.__doc__ = cls.__doc__ + view.__module__ = cls.__module__ + view.methods = cls.methods # type: ignore + view.provide_automatic_options = cls.provide_automatic_options # type: ignore + return view + + +class MethodView(View): + """Dispatches request methods to the corresponding instance methods. + For example, if you implement a ``get`` method, it will be used to + handle ``GET`` requests. + + This can be useful for defining a REST API. + + :attr:`methods` is automatically set based on the methods defined on + the class. + + See :doc:`views` for a detailed guide. + + .. code-block:: python + + class CounterAPI(MethodView): + def get(self): + return str(session.get("counter", 0)) + + def post(self): + session["counter"] = session.get("counter", 0) + 1 + return redirect(url_for("counter")) + + app.add_url_rule( + "/counter", view_func=CounterAPI.as_view("counter") + ) + """ + + def __init_subclass__(cls, **kwargs: t.Any) -> None: + super().__init_subclass__(**kwargs) + + if "methods" not in cls.__dict__: + methods = set() + + for base in cls.__bases__: + if getattr(base, "methods", None): + methods.update(base.methods) # type: ignore[attr-defined] + + for key in http_method_funcs: + if hasattr(cls, key): + methods.add(key.upper()) + + if methods: + cls.methods = methods + + def dispatch_request(self, **kwargs: t.Any) -> ft.ResponseReturnValue: + meth = getattr(self, request.method.lower(), None) + + # If the request method is HEAD and we don't have a handler for it + # retry with GET. + if meth is None and request.method == "HEAD": + meth = getattr(self, "get", None) + + assert meth is not None, f"Unimplemented method {request.method!r}" + return current_app.ensure_sync(meth)(**kwargs) diff --git a/server/venv/lib/python3.10/site-packages/flask/wrappers.py b/server/venv/lib/python3.10/site-packages/flask/wrappers.py new file mode 100644 index 0000000..ef7aa38 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask/wrappers.py @@ -0,0 +1,173 @@ +from __future__ import annotations + +import typing as t + +from werkzeug.exceptions import BadRequest +from werkzeug.wrappers import Request as RequestBase +from werkzeug.wrappers import Response as ResponseBase + +from . import json +from .globals import current_app +from .helpers import _split_blueprint_path + +if t.TYPE_CHECKING: # pragma: no cover + from werkzeug.routing import Rule + + +class Request(RequestBase): + """The request object used by default in Flask. Remembers the + matched endpoint and view arguments. + + It is what ends up as :class:`~flask.request`. If you want to replace + the request object used you can subclass this and set + :attr:`~flask.Flask.request_class` to your subclass. + + The request object is a :class:`~werkzeug.wrappers.Request` subclass and + provides all of the attributes Werkzeug defines plus a few Flask + specific ones. + """ + + json_module: t.Any = json + + #: The internal URL rule that matched the request. This can be + #: useful to inspect which methods are allowed for the URL from + #: a before/after handler (``request.url_rule.methods``) etc. + #: Though if the request's method was invalid for the URL rule, + #: the valid list is available in ``routing_exception.valid_methods`` + #: instead (an attribute of the Werkzeug exception + #: :exc:`~werkzeug.exceptions.MethodNotAllowed`) + #: because the request was never internally bound. + #: + #: .. versionadded:: 0.6 + url_rule: Rule | None = None + + #: A dict of view arguments that matched the request. If an exception + #: happened when matching, this will be ``None``. + view_args: dict[str, t.Any] | None = None + + #: If matching the URL failed, this is the exception that will be + #: raised / was raised as part of the request handling. This is + #: usually a :exc:`~werkzeug.exceptions.NotFound` exception or + #: something similar. + routing_exception: Exception | None = None + + @property + def max_content_length(self) -> int | None: # type: ignore + """Read-only view of the ``MAX_CONTENT_LENGTH`` config key.""" + if current_app: + return current_app.config["MAX_CONTENT_LENGTH"] + else: + return None + + @property + def endpoint(self) -> str | None: + """The endpoint that matched the request URL. + + This will be ``None`` if matching failed or has not been + performed yet. + + This in combination with :attr:`view_args` can be used to + reconstruct the same URL or a modified URL. + """ + if self.url_rule is not None: + return self.url_rule.endpoint + + return None + + @property + def blueprint(self) -> str | None: + """The registered name of the current blueprint. + + This will be ``None`` if the endpoint is not part of a + blueprint, or if URL matching failed or has not been performed + yet. + + This does not necessarily match the name the blueprint was + created with. It may have been nested, or registered with a + different name. + """ + endpoint = self.endpoint + + if endpoint is not None and "." in endpoint: + return endpoint.rpartition(".")[0] + + return None + + @property + def blueprints(self) -> list[str]: + """The registered names of the current blueprint upwards through + parent blueprints. + + This will be an empty list if there is no current blueprint, or + if URL matching failed. + + .. versionadded:: 2.0.1 + """ + name = self.blueprint + + if name is None: + return [] + + return _split_blueprint_path(name) + + def _load_form_data(self) -> None: + super()._load_form_data() + + # In debug mode we're replacing the files multidict with an ad-hoc + # subclass that raises a different error for key errors. + if ( + current_app + and current_app.debug + and self.mimetype != "multipart/form-data" + and not self.files + ): + from .debughelpers import attach_enctype_error_multidict + + attach_enctype_error_multidict(self) + + def on_json_loading_failed(self, e: ValueError | None) -> t.Any: + try: + return super().on_json_loading_failed(e) + except BadRequest as e: + if current_app and current_app.debug: + raise + + raise BadRequest() from e + + +class Response(ResponseBase): + """The response object that is used by default in Flask. Works like the + response object from Werkzeug but is set to have an HTML mimetype by + default. Quite often you don't have to create this object yourself because + :meth:`~flask.Flask.make_response` will take care of that for you. + + If you want to replace the response object used you can subclass this and + set :attr:`~flask.Flask.response_class` to your subclass. + + .. versionchanged:: 1.0 + JSON support is added to the response, like the request. This is useful + when testing to get the test client response data as JSON. + + .. versionchanged:: 1.0 + + Added :attr:`max_cookie_size`. + """ + + default_mimetype: str | None = "text/html" + + json_module = json + + autocorrect_location_header = False + + @property + def max_cookie_size(self) -> int: # type: ignore + """Read-only view of the :data:`MAX_COOKIE_SIZE` config key. + + See :attr:`~werkzeug.wrappers.Response.max_cookie_size` in + Werkzeug's docs. + """ + if current_app: + return current_app.config["MAX_COOKIE_SIZE"] + + # return Werkzeug's default when not in an app context + return super().max_cookie_size diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__init__.py b/server/venv/lib/python3.10/site-packages/flask_cors/__init__.py new file mode 100644 index 0000000..458150e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask_cors/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +""" + flask_cors + ~~~~ + Flask-CORS is a simple extension to Flask allowing you to support cross + origin resource sharing (CORS) using a simple decorator. + + :copyright: (c) 2016 by Cory Dolphin. + :license: MIT, see LICENSE for more details. +""" +from .decorator import cross_origin +from .extension import CORS +from .version import __version__ + +__all__ = ['CORS', 'cross_origin'] + +# Set default logging handler to avoid "No handler found" warnings. +import logging +from logging import NullHandler + +# Set initial level to WARN. Users must manually enable logging for +# flask_cors to see our logging. +rootlogger = logging.getLogger(__name__) +rootlogger.addHandler(NullHandler()) + +if rootlogger.level == logging.NOTSET: + rootlogger.setLevel(logging.WARN) diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8dc45f10c73ded80032402fa64447c65748206e GIT binary patch literal 811 zcmYjP!EVz)5cN84V!JLBB%~hq*hn;PLE=yl0+k{vl~igfA^Eb}dZ&q#wb$BpQqlt# zzJgnO;~nD++VTwxGi z<_RKvNlHKSiOoB*QwCY!@<6VY-K>lGn&^)GtS5RRlwlU)Hk_kx};>4DNq`cBDuQdEOg zrz~<*2mAEn(b-dK0O;}2!QpUpNH3J8rP4qJG`x^z5Z@BKfIevxr<1KTVjVb9q+Mrh z0owj5W7^)D_A%U|dqZqnAI_!xz$+m^_aC=C#)QflYomMluD^}$H|9v%-W{n9kjReV z`f#i#)fjg))?EunV`z>M0NsX+RlEdjiM3LVZ9_EXLfjqRu1Q#cY`epgv(e#M8ycK- zNbu?H>F~R!pCF|Rzj-=QC8SesRF#g@MRUnDr0xmqR48<6QUe+lrVFSRsVvUZdf7}= z^?b0mo0_75otoz}J_fUzat|kEtf-2Hu|d6T!&jvea|y5Qdd(JwfFw~u5)%4hCn0fw KxxYz*zyAR8$?j1A literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/core.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a8110349ce83e332d1cf6dfce8c444de265de54 GIT binary patch literal 10527 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 n=*0f literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/decorator.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/decorator.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79d158e59341dff08d39501643ae2de5503bc12c GIT binary patch literal 4772 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/extension.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/extension.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce0ad4d0cbe2657cb97c7d856ed8ede19f68b011 GIT binary patch literal 7475 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 SsTsgzTb0VJW&CXB+y4Q>4XwNY literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/version.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/flask_cors/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25a2107b4a416fef134f14fefeb4841339cc4f9f GIT binary patch literal 210 zcmd1j<>g`kg3UK(riuaS#~=b2j{1ilqVLY>Zj!-7H8|`rB;+= z73&wL76J9@m!;;F>E~o7=@(R%WaQ@=>lqs87iX5F>J}s>XD6no7DIH!C+8Ox0~LcU Z(<`XF#bJ}1pHiBWY6o& 1 or + len(origins_to_set) > 1 or + any(map(probably_regex, options.get('origins')))): + headers.add('Vary', 'Origin') + + return MultiDict((k, v) for k, v in headers.items() if v) + + +def set_cors_headers(resp, options): + """ + Performs the actual evaluation of Flask-CORS options and actually + modifies the response object. + + This function is used both in the decorator and the after_request + callback + """ + + # If CORS has already been evaluated via the decorator, skip + if hasattr(resp, FLASK_CORS_EVALUATED): + LOG.debug('CORS have been already evaluated, skipping') + return resp + + # Some libraries, like OAuthlib, set resp.headers to non Multidict + # objects (Werkzeug Headers work as well). This is a problem because + # headers allow repeated values. + if (not isinstance(resp.headers, Headers) + and not isinstance(resp.headers, MultiDict)): + resp.headers = MultiDict(resp.headers) + + headers_to_set = get_cors_headers(options, request.headers, request.method) + + LOG.debug('Settings CORS headers: %s', str(headers_to_set)) + + for k, v in headers_to_set.items(): + resp.headers.add(k, v) + + return resp + +def probably_regex(maybe_regex): + if isinstance(maybe_regex, RegexObject): + return True + else: + common_regex_chars = ['*', '\\', ']', '?', '$', '^', '[', ']', '(', ')'] + # Use common characters used in regular expressions as a proxy + # for if this string is in fact a regex. + return any((c in maybe_regex for c in common_regex_chars)) + +def re_fix(reg): + """ + Replace the invalid regex r'*' with the valid, wildcard regex r'/.*' to + enable the CORS app extension to have a more user friendly api. + """ + return r'.*' if reg == r'*' else reg + + +def try_match_any(inst, patterns): + return any(try_match(inst, pattern) for pattern in patterns) + + +def try_match(request_origin, maybe_regex): + """Safely attempts to match a pattern or string to a request origin.""" + if isinstance(maybe_regex, RegexObject): + return re.match(maybe_regex, request_origin) + elif probably_regex(maybe_regex): + return re.match(maybe_regex, request_origin, flags=re.IGNORECASE) + else: + try: + return request_origin.lower() == maybe_regex.lower() + except AttributeError: + return request_origin == maybe_regex + + +def get_cors_options(appInstance, *dicts): + """ + Compute CORS options for an application by combining the DEFAULT_OPTIONS, + the app's configuration-specified options and any dictionaries passed. The + last specified option wins. + """ + options = DEFAULT_OPTIONS.copy() + options.update(get_app_kwarg_dict(appInstance)) + if dicts: + for d in dicts: + options.update(d) + + return serialize_options(options) + + +def get_app_kwarg_dict(appInstance=None): + """Returns the dictionary of CORS specific app configurations.""" + app = (appInstance or current_app) + + # In order to support blueprints which do not have a config attribute + app_config = getattr(app, 'config', {}) + + return { + k.lower().replace('cors_', ''): app_config.get(k) + for k in CONFIG_OPTIONS + if app_config.get(k) is not None + } + + +def flexible_str(obj): + """ + A more flexible str function which intelligently handles stringifying + strings, lists and other iterables. The results are lexographically sorted + to ensure generated responses are consistent when iterables such as Set + are used. + """ + if obj is None: + return None + elif not isinstance(obj, str) and isinstance(obj, Iterable): + return ", ".join(str(item) for item in sorted(obj)) + else: + return str(obj) + + +def serialize_option(options_dict, key, upper=False): + if key in options_dict: + value = flexible_str(options_dict[key]) + options_dict[key] = value.upper() if upper else value + + +def ensure_iterable(inst): + """ + Wraps scalars or string types as a list, or returns the iterable instance. + """ + if isinstance(inst, str): + return [inst] + elif not isinstance(inst, Iterable): + return [inst] + else: + return inst + +def sanitize_regex_param(param): + return [re_fix(x) for x in ensure_iterable(param)] + + +def serialize_options(opts): + """ + A helper method to serialize and processes the options dictionary. + """ + options = (opts or {}).copy() + + for key in opts.keys(): + if key not in DEFAULT_OPTIONS: + LOG.warning("Unknown option passed to Flask-CORS: %s", key) + + # Ensure origins is a list of allowed origins with at least one entry. + options['origins'] = sanitize_regex_param(options.get('origins')) + options['allow_headers'] = sanitize_regex_param(options.get('allow_headers')) + + # This is expressly forbidden by the spec. Raise a value error so people + # don't get burned in production. + if r'.*' in options['origins'] and options['supports_credentials'] and options['send_wildcard']: + raise ValueError("Cannot use supports_credentials in conjunction with" + "an origin string of '*'. See: " + "http://www.w3.org/TR/cors/#resource-requests") + + + + serialize_option(options, 'expose_headers') + serialize_option(options, 'methods', upper=True) + + if isinstance(options.get('max_age'), timedelta): + options['max_age'] = str(int(options['max_age'].total_seconds())) + + return options diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/decorator.py b/server/venv/lib/python3.10/site-packages/flask_cors/decorator.py new file mode 100644 index 0000000..b61d22f --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask_cors/decorator.py @@ -0,0 +1,137 @@ +# -*- coding: utf-8 -*- +""" + decorator + ~~~~ + This unit exposes a single decorator which should be used to wrap a + Flask route with. It accepts all parameters and options as + the CORS extension. + + :copyright: (c) 2016 by Cory Dolphin. + :license: MIT, see LICENSE for more details. +""" +import logging +from functools import update_wrapper +from flask import make_response, request, current_app + +from .core import get_cors_options, set_cors_headers, FLASK_CORS_EVALUATED + +LOG = logging.getLogger(__name__) + +def cross_origin(*args, **kwargs): + """ + This function is the decorator which is used to wrap a Flask route with. + In the simplest case, simply use the default parameters to allow all + origins in what is the most permissive configuration. If this method + modifies state or performs authentication which may be brute-forced, you + should add some degree of protection, such as Cross Site Request Forgery + protection. + + :param origins: + The origin, or list of origins to allow requests from. + The origin(s) may be regular expressions, case-sensitive strings, + or else an asterisk + + Default : '*' + :type origins: list, string or regex + + :param methods: + The method or list of methods which the allowed origins are allowed to + access for non-simple requests. + + Default : [GET, HEAD, POST, OPTIONS, PUT, PATCH, DELETE] + :type methods: list or string + + :param expose_headers: + The header or list which are safe to expose to the API of a CORS API + specification. + + Default : None + :type expose_headers: list or string + + :param allow_headers: + The header or list of header field names which can be used when this + resource is accessed by allowed origins. The header(s) may be regular + expressions, case-sensitive strings, or else an asterisk. + + Default : '*', allow all headers + :type allow_headers: list, string or regex + + :param supports_credentials: + Allows users to make authenticated requests. If true, injects the + `Access-Control-Allow-Credentials` header in responses. This allows + cookies and credentials to be submitted across domains. + + :note: This option cannot be used in conjunction with a '*' origin + + Default : False + :type supports_credentials: bool + + :param max_age: + The maximum time for which this CORS request maybe cached. This value + is set as the `Access-Control-Max-Age` header. + + Default : None + :type max_age: timedelta, integer, string or None + + :param send_wildcard: If True, and the origins parameter is `*`, a wildcard + `Access-Control-Allow-Origin` header is sent, rather than the + request's `Origin` header. + + Default : False + :type send_wildcard: bool + + :param vary_header: + If True, the header Vary: Origin will be returned as per the W3 + implementation guidelines. + + Setting this header when the `Access-Control-Allow-Origin` is + dynamically generated (e.g. when there is more than one allowed + origin, and an Origin than '*' is returned) informs CDNs and other + caches that the CORS headers are dynamic, and cannot be cached. + + If False, the Vary header will never be injected or altered. + + Default : True + :type vary_header: bool + + :param automatic_options: + Only applies to the `cross_origin` decorator. If True, Flask-CORS will + override Flask's default OPTIONS handling to return CORS headers for + OPTIONS requests. + + Default : True + :type automatic_options: bool + + """ + _options = kwargs + + def decorator(f): + LOG.debug("Enabling %s for cross_origin using options:%s", f, _options) + + # If True, intercept OPTIONS requests by modifying the view function, + # replicating Flask's default behavior, and wrapping the response with + # CORS headers. + # + # If f.provide_automatic_options is unset or True, Flask's route + # decorator (which is actually wraps the function object we return) + # intercepts OPTIONS handling, and requests will not have CORS headers + if _options.get('automatic_options', True): + f.required_methods = getattr(f, 'required_methods', set()) + f.required_methods.add('OPTIONS') + f.provide_automatic_options = False + + def wrapped_function(*args, **kwargs): + # Handle setting of Flask-Cors parameters + options = get_cors_options(current_app, _options) + + if options.get('automatic_options') and request.method == 'OPTIONS': + resp = current_app.make_default_options_response() + else: + resp = make_response(f(*args, **kwargs)) + + set_cors_headers(resp, options) + setattr(resp, FLASK_CORS_EVALUATED, True) + return resp + + return update_wrapper(wrapped_function, f) + return decorator diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/extension.py b/server/venv/lib/python3.10/site-packages/flask_cors/extension.py new file mode 100644 index 0000000..c00cbff --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask_cors/extension.py @@ -0,0 +1,201 @@ +# -*- coding: utf-8 -*- +""" + extension + ~~~~ + Flask-CORS is a simple extension to Flask allowing you to support cross + origin resource sharing (CORS) using a simple decorator. + + :copyright: (c) 2016 by Cory Dolphin. + :license: MIT, see LICENSE for more details. +""" +import logging +from urllib.parse import unquote_plus +from flask import request + +from .core import ( + parse_resources, + get_cors_options, + get_regexp_pattern, + ACL_ORIGIN, + try_match, + set_cors_headers +) + + +LOG = logging.getLogger(__name__) + +class CORS(object): + """ + Initializes Cross Origin Resource sharing for the application. The + arguments are identical to :py:func:`cross_origin`, with the addition of a + `resources` parameter. The resources parameter defines a series of regular + expressions for resource paths to match and optionally, the associated + options to be applied to the particular resource. These options are + identical to the arguments to :py:func:`cross_origin`. + + The settings for CORS are determined in the following order + + 1. Resource level settings (e.g when passed as a dictionary) + 2. Keyword argument settings + 3. App level configuration settings (e.g. CORS_*) + 4. Default settings + + Note: as it is possible for multiple regular expressions to match a + resource path, the regular expressions are first sorted by length, + from longest to shortest, in order to attempt to match the most + specific regular expression. This allows the definition of a + number of specific resource options, with a wildcard fallback + for all other resources. + + :param resources: + The series of regular expression and (optionally) associated CORS + options to be applied to the given resource path. + + If the argument is a dictionary, it's keys must be regular expressions, + and the values must be a dictionary of kwargs, identical to the kwargs + of this function. + + If the argument is a list, it is expected to be a list of regular + expressions, for which the app-wide configured options are applied. + + If the argument is a string, it is expected to be a regular expression + for which the app-wide configured options are applied. + + Default : Match all and apply app-level configuration + + :type resources: dict, iterable or string + + :param origins: + The origin, or list of origins to allow requests from. + The origin(s) may be regular expressions, case-sensitive strings, + or else an asterisk. + + :note: origins must include the schema and the port (if not port 80), + e.g., + `CORS(app, origins=["http://localhost:8000", "https://example.com"])`. + + Default : '*' + :type origins: list, string or regex + + :param methods: + The method or list of methods which the allowed origins are allowed to + access for non-simple requests. + + Default : [GET, HEAD, POST, OPTIONS, PUT, PATCH, DELETE] + :type methods: list or string + + :param expose_headers: + The header or list which are safe to expose to the API of a CORS API + specification. + + Default : None + :type expose_headers: list or string + + :param allow_headers: + The header or list of header field names which can be used when this + resource is accessed by allowed origins. The header(s) may be regular + expressions, case-sensitive strings, or else an asterisk. + + Default : '*', allow all headers + :type allow_headers: list, string or regex + + :param supports_credentials: + Allows users to make authenticated requests. If true, injects the + `Access-Control-Allow-Credentials` header in responses. This allows + cookies and credentials to be submitted across domains. + + :note: This option cannot be used in conjunction with a '*' origin + + Default : False + :type supports_credentials: bool + + :param max_age: + The maximum time for which this CORS request maybe cached. This value + is set as the `Access-Control-Max-Age` header. + + Default : None + :type max_age: timedelta, integer, string or None + + :param send_wildcard: If True, and the origins parameter is `*`, a wildcard + `Access-Control-Allow-Origin` header is sent, rather than the + request's `Origin` header. + + Default : False + :type send_wildcard: bool + + :param vary_header: + If True, the header Vary: Origin will be returned as per the W3 + implementation guidelines. + + Setting this header when the `Access-Control-Allow-Origin` is + dynamically generated (e.g. when there is more than one allowed + origin, and an Origin than '*' is returned) informs CDNs and other + caches that the CORS headers are dynamic, and cannot be cached. + + If False, the Vary header will never be injected or altered. + + Default : True + :type vary_header: bool + """ + + def __init__(self, app=None, **kwargs): + self._options = kwargs + if app is not None: + self.init_app(app, **kwargs) + + def init_app(self, app, **kwargs): + # The resources and options may be specified in the App Config, the CORS constructor + # or the kwargs to the call to init_app. + options = get_cors_options(app, self._options, kwargs) + + # Flatten our resources into a list of the form + # (pattern_or_regexp, dictionary_of_options) + resources = parse_resources(options.get('resources')) + + # Compute the options for each resource by combining the options from + # the app's configuration, the constructor, the kwargs to init_app, and + # finally the options specified in the resources dictionary. + resources = [ + (pattern, get_cors_options(app, options, opts)) + for (pattern, opts) in resources + ] + + # Create a human-readable form of these resources by converting the compiled + # regular expressions into strings. + resources_human = {get_regexp_pattern(pattern): opts for (pattern,opts) in resources} + LOG.debug("Configuring CORS with resources: %s", resources_human) + + cors_after_request = make_after_request_function(resources) + app.after_request(cors_after_request) + + # Wrap exception handlers with cross_origin + # These error handlers will still respect the behavior of the route + if options.get('intercept_exceptions', True): + def _after_request_decorator(f): + def wrapped_function(*args, **kwargs): + return cors_after_request(app.make_response(f(*args, **kwargs))) + return wrapped_function + + if hasattr(app, 'handle_exception'): + app.handle_exception = _after_request_decorator( + app.handle_exception) + app.handle_user_exception = _after_request_decorator( + app.handle_user_exception) + +def make_after_request_function(resources): + def cors_after_request(resp): + # If CORS headers are set in a view decorator, pass + if resp.headers is not None and resp.headers.get(ACL_ORIGIN): + LOG.debug('CORS have been already evaluated, skipping') + return resp + normalized_path = unquote_plus(request.path) + for res_regex, res_options in resources: + if try_match(normalized_path, res_regex): + LOG.debug("Request to '%s' matches CORS resource '%s'. Using options: %s", + request.path, get_regexp_pattern(res_regex), res_options) + set_cors_headers(resp, res_options) + break + else: + LOG.debug('No CORS rule matches') + return resp + return cors_after_request diff --git a/server/venv/lib/python3.10/site-packages/flask_cors/version.py b/server/venv/lib/python3.10/site-packages/flask_cors/version.py new file mode 100644 index 0000000..d6497a8 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/flask_cors/version.py @@ -0,0 +1 @@ +__version__ = '4.0.0' diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/INSTALLER b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/LICENSE.rst b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/LICENSE.rst new file mode 100644 index 0000000..7b190ca --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/LICENSE.rst @@ -0,0 +1,28 @@ +Copyright 2011 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/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/METADATA b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/METADATA new file mode 100644 index 0000000..1d935ed --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/METADATA @@ -0,0 +1,97 @@ +Metadata-Version: 2.1 +Name: itsdangerous +Version: 2.1.2 +Summary: Safely pass data to untrusted environments and back. +Home-page: https://palletsprojects.com/p/itsdangerous/ +Author: Armin Ronacher +Author-email: armin.ronacher@active-4.com +Maintainer: Pallets +Maintainer-email: contact@palletsprojects.com +License: BSD-3-Clause +Project-URL: Donate, https://palletsprojects.com/donate +Project-URL: Documentation, https://itsdangerous.palletsprojects.com/ +Project-URL: Changes, https://itsdangerous.palletsprojects.com/changes/ +Project-URL: Source Code, https://github.com/pallets/itsdangerous/ +Project-URL: Issue Tracker, https://github.com/pallets/itsdangerous/issues/ +Project-URL: Twitter, https://twitter.com/PalletsTeam +Project-URL: Chat, https://discord.gg/pallets +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.rst + +ItsDangerous +============ + +... so better sign this + +Various helpers to pass data to untrusted environments and to get it +back safe and sound. Data is cryptographically signed to ensure that a +token has not been tampered with. + +It's possible to customize how data is serialized. Data is compressed as +needed. A timestamp can be added and verified automatically while +loading a token. + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + pip install -U itsdangerous + +.. _pip: https://pip.pypa.io/en/stable/getting-started/ + + +A Simple Example +---------------- + +Here's how you could generate a token for transmitting a user's id and +name between web requests. + +.. code-block:: python + + from itsdangerous import URLSafeSerializer + auth_s = URLSafeSerializer("secret key", "auth") + token = auth_s.dumps({"id": 5, "name": "itsdangerous"}) + + print(token) + # eyJpZCI6NSwibmFtZSI6Iml0c2Rhbmdlcm91cyJ9.6YP6T0BaO67XP--9UzTrmurXSmg + + data = auth_s.loads(token) + print(data["name"]) + # itsdangerous + + +Donate +------ + +The Pallets organization develops and supports ItsDangerous 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 + + +Links +----- + +- Documentation: https://itsdangerous.palletsprojects.com/ +- Changes: https://itsdangerous.palletsprojects.com/changes/ +- PyPI Releases: https://pypi.org/project/ItsDangerous/ +- Source Code: https://github.com/pallets/itsdangerous/ +- Issue Tracker: https://github.com/pallets/itsdangerous/issues/ +- Website: https://palletsprojects.com/p/itsdangerous/ +- Twitter: https://twitter.com/PalletsTeam +- Chat: https://discord.gg/pallets + + diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/RECORD b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/RECORD new file mode 100644 index 0000000..2a39531 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/RECORD @@ -0,0 +1,23 @@ +itsdangerous-2.1.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +itsdangerous-2.1.2.dist-info/LICENSE.rst,sha256=Y68JiRtr6K0aQlLtQ68PTvun_JSOIoNnvtfzxa4LCdc,1475 +itsdangerous-2.1.2.dist-info/METADATA,sha256=ThrHIJQ_6XlfbDMCAVe_hawT7IXiIxnTBIDrwxxtucQ,2928 +itsdangerous-2.1.2.dist-info/RECORD,, +itsdangerous-2.1.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 +itsdangerous-2.1.2.dist-info/top_level.txt,sha256=gKN1OKLk81i7fbWWildJA88EQ9NhnGMSvZqhfz9ICjk,13 +itsdangerous/__init__.py,sha256=n4mkyjlIVn23pgsgCIw0MJKPdcHIetyeRpe5Fwsn8qg,876 +itsdangerous/__pycache__/__init__.cpython-310.pyc,, +itsdangerous/__pycache__/_json.cpython-310.pyc,, +itsdangerous/__pycache__/encoding.cpython-310.pyc,, +itsdangerous/__pycache__/exc.cpython-310.pyc,, +itsdangerous/__pycache__/serializer.cpython-310.pyc,, +itsdangerous/__pycache__/signer.cpython-310.pyc,, +itsdangerous/__pycache__/timed.cpython-310.pyc,, +itsdangerous/__pycache__/url_safe.cpython-310.pyc,, +itsdangerous/_json.py,sha256=wIhs_7-_XZolmyr-JvKNiy_LgAcfevYR0qhCVdlIhg8,450 +itsdangerous/encoding.py,sha256=pgh86snHC76dPLNCnPlrjR5SaYL_M8H-gWRiiLNbhCU,1419 +itsdangerous/exc.py,sha256=VFxmP2lMoSJFqxNMzWonqs35ROII4-fvCBfG0v1Tkbs,3206 +itsdangerous/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +itsdangerous/serializer.py,sha256=zgZ1-U705jHDpt62x_pmLJdryEKDNAbt5UkJtnkcCSw,11144 +itsdangerous/signer.py,sha256=QUH0iX0in-OTptMAXKU5zWMwmOCXn1fsDsubXiGdFN4,9367 +itsdangerous/timed.py,sha256=5CBWLds4Nm8-3bFVC8RxNzFjx6PSwjch8wuZ5cwcHFI,8174 +itsdangerous/url_safe.py,sha256=5bC4jSKOjWNRkWrFseifWVXUnHnPgwOLROjiOwb-eeo,2402 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/WHEEL b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/WHEEL new file mode 100644 index 0000000..becc9a6 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/top_level.txt b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/top_level.txt new file mode 100644 index 0000000..e163955 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous-2.1.2.dist-info/top_level.txt @@ -0,0 +1 @@ +itsdangerous diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__init__.py b/server/venv/lib/python3.10/site-packages/itsdangerous/__init__.py new file mode 100644 index 0000000..fdb2dfd --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/__init__.py @@ -0,0 +1,19 @@ +from .encoding import base64_decode as base64_decode +from .encoding import base64_encode as base64_encode +from .encoding import want_bytes as want_bytes +from .exc import BadData as BadData +from .exc import BadHeader as BadHeader +from .exc import BadPayload as BadPayload +from .exc import BadSignature as BadSignature +from .exc import BadTimeSignature as BadTimeSignature +from .exc import SignatureExpired as SignatureExpired +from .serializer import Serializer as Serializer +from .signer import HMACAlgorithm as HMACAlgorithm +from .signer import NoneAlgorithm as NoneAlgorithm +from .signer import Signer as Signer +from .timed import TimedSerializer as TimedSerializer +from .timed import TimestampSigner as TimestampSigner +from .url_safe import URLSafeSerializer as URLSafeSerializer +from .url_safe import URLSafeTimedSerializer as URLSafeTimedSerializer + +__version__ = "2.1.2" diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7fb56d6069a2bb3e574c143cd4505e147b861e3 GIT binary patch literal 878 zcmaKq&5qMB6or$vNz*jx?@U3g*>o`tGayz7G5kogfDxjw@g{N`PwN@Su57o{&YSQE zNIVW~x@E;Hu;N~8RJANfl%ww)UtihLRcRV~@O=OIm5Hk7{X(<yuue= z=@Z{at^ij^#c>t5N~(@)qE-eZa2x=KBy=1C*Gb)R9XKM9;|RDx8jc&lF^L_=qFE*+ zaoiMX*&;2+32>XV9jCw@(sA4p-Lgk|j@!U}(s$euN98d&cH9LXkO6RyJSh5OZ+P_E zhpP?!Z91WbJ%5%LY^n;j7chAr#J5!1e6q33z;gXHE#6W~0ULl9j229TiNSoN8=+_c zE&(^@GfC}IW77`!&%9&@+0MLMFSus7FCH_^so;06XL|AB{LQ(TDb4M?gyr;7Nwyz^ z*u&Mfv3+r{-9^UIa9pz4N>YS5lRCEhin_0-Ia6`gV4A$>jX*1|1Bdr53q?!|E<( zJ&Lya+yp@8G4co_vKpS(OnP#e%9-byceB`?~Ah-2nml`u&soMhW?W!M1o1?1P%y zU?h>WBvaab+0=VZB$M6+k={9*`jSpa>i>i~GM=H`mL3HApyo9g)%BP%NvEFjB~!sN zR6P~t>=yKbsGs}Nm%)X9PNxH?2=PqzI_s%k9?D4eyX=k}z|_XVYSY0$GIaw4|8Td_&T(1%9vKG>XTG>`tGoa&- zppR4>fEr}Xl1q9Xpit0xGgeo!b+kRhE~+ z9PL%=gI$`;D1EGScC4!7tSk<*W^EUB^>B3mUS?p$Jy`Kb%$3OsYow^=3UHaMn>lLM zI)pJ1s9|6R>~y%z#;DuLdG+Dag-0-ZZvMiC|M;LUvB4cMXY>*-TCyufH@+u*^etVo zGm_H+PCwI+h&>p)SXHLgiVHIKm81YcVRJ0cMsdcOdovEyL? literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/encoding.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/encoding.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92d0d48e74e1e8adc14e67433a8349cf6d21f33c GIT binary patch literal 1882 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 X^zclrTfVt&udl7Iu3uPp&t3cvXTj+w literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/serializer.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/serializer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3bf29286a60fed28fd6e821465db326690aa6bba GIT binary patch literal 9705 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/timed.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/timed.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65dc5a6f790bcdb99bfbc35a66acae8539115c74 GIT binary patch literal 6487 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/url_safe.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/itsdangerous/__pycache__/url_safe.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eaae1e68405ae5d1c678f81983328e22c4003ffa GIT binary patch literal 2706 zcmbVOOOG2x5bk-;&f4C*$ctA?C?qS0osbAYKqw(f5GZU=HYk!Wv+e2j?(B|dOm{mQ zTV90NpqxNlkvJp>Aw}XxaN)+4%Un6-oLdNisw}hvXCju(t(gLTDY2a1fQA`{MPI>KOU$yD8k?Zm{?6mxJ?hS`O)I8@VO^~ z^^p4@=TJLDcwj6c%64>%v@Ns$S~KGFV~^i-6JEz)Te;$_Q~f0(dr*DqzGkhDumY z73?7E)0Uv!j3uLWGYVU)n=qKYXu9w+=#G+9x=gMriJUF{jZGYsz7)DA^TZyf1IZA= zjguDOR=_cP=Qncj_d~FS_ZEMTFM)JKb(RTlsMYe#x zgFrjn8wT9})*c35+Z?Q42AkF<8G7;}c-`CH(7!YL=7pIzgPq>g{x(?;hW@HGbbhj~ zkdzGFpRMnZ(Baa>`?&tP#NAvSym!9nWt`@PrekDBTsFv#F#!-0)>DEOZ3@VW8;R)Z zw8#O%S|QWbG-p{Xq%7p%+%z2Kono+=tWN{B3n`438yWy3#=gZ6@}im43RxyySYHxXC9<}}V`MTaE2vdb>@#uJRgssLxNDVjahzmK zsW`q%9wd#mq9YpX4BU<7qOE}kqR|Hb#_?R-(CexJ)VVHX*)O4Z z8O5t0PQ$GbVFWg^_Sr5xL)*1O%e9{g-0T_`t7RC+IqQfxE~7Z^6ug(AUWwx`dMq1z zf;i?y62}rDE%$KIX1z?uGu6dw^|er?9qZCLm-ox?vN=F3Gb}KxEvsV&CL+rqmf4FD zW@~0w&_4-MSWyrmf&F;4??1F{`;iM&iCp_3SpIhX+5<`@&VH(;;MqS5_x)WUW?Krk zA#YB(`zbyRe!Eu44MnpQ>hu|NNY1R(mmk;s724`)im)lD4xA$M6m$tF?WW$Ea*L#& z)cmB#RjM?ednhQ_40>HSyyKTQg-oES(qxTEXtZD-O)_Cv)?H&Qp(#^z6L7-k%F5CB z=*r5Qs2m5y!~wky`ncBLb>$J*u6!NEQ545eOd*~U=L9$|z _t.Any: + return _json.loads(payload) + + @staticmethod + def dumps(obj: _t.Any, **kwargs: _t.Any) -> str: + kwargs.setdefault("ensure_ascii", False) + kwargs.setdefault("separators", (",", ":")) + return _json.dumps(obj, **kwargs) diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/encoding.py b/server/venv/lib/python3.10/site-packages/itsdangerous/encoding.py new file mode 100644 index 0000000..edb04d1 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/encoding.py @@ -0,0 +1,54 @@ +import base64 +import string +import struct +import typing as _t + +from .exc import BadData + +_t_str_bytes = _t.Union[str, bytes] + + +def want_bytes( + s: _t_str_bytes, encoding: str = "utf-8", errors: str = "strict" +) -> bytes: + if isinstance(s, str): + s = s.encode(encoding, errors) + + return s + + +def base64_encode(string: _t_str_bytes) -> bytes: + """Base64 encode a string of bytes or text. The resulting bytes are + safe to use in URLs. + """ + string = want_bytes(string) + return base64.urlsafe_b64encode(string).rstrip(b"=") + + +def base64_decode(string: _t_str_bytes) -> bytes: + """Base64 decode a URL-safe string of bytes or text. The result is + bytes. + """ + string = want_bytes(string, encoding="ascii", errors="ignore") + string += b"=" * (-len(string) % 4) + + try: + return base64.urlsafe_b64decode(string) + except (TypeError, ValueError) as e: + raise BadData("Invalid base64-encoded data") from e + + +# The alphabet used by base64.urlsafe_* +_base64_alphabet = f"{string.ascii_letters}{string.digits}-_=".encode("ascii") + +_int64_struct = struct.Struct(">Q") +_int_to_bytes = _int64_struct.pack +_bytes_to_int = _t.cast("_t.Callable[[bytes], _t.Tuple[int]]", _int64_struct.unpack) + + +def int_to_bytes(num: int) -> bytes: + return _int_to_bytes(num).lstrip(b"\x00") + + +def bytes_to_int(bytestr: bytes) -> int: + return _bytes_to_int(bytestr.rjust(8, b"\x00"))[0] diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/exc.py b/server/venv/lib/python3.10/site-packages/itsdangerous/exc.py new file mode 100644 index 0000000..c38a6af --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/exc.py @@ -0,0 +1,107 @@ +import typing as _t +from datetime import datetime + +_t_opt_any = _t.Optional[_t.Any] +_t_opt_exc = _t.Optional[Exception] + + +class BadData(Exception): + """Raised if bad data of any sort was encountered. This is the base + for all exceptions that ItsDangerous defines. + + .. versionadded:: 0.15 + """ + + def __init__(self, message: str): + super().__init__(message) + self.message = message + + def __str__(self) -> str: + return self.message + + +class BadSignature(BadData): + """Raised if a signature does not match.""" + + def __init__(self, message: str, payload: _t_opt_any = None): + super().__init__(message) + + #: The payload that failed the signature test. In some + #: situations you might still want to inspect this, even if + #: you know it was tampered with. + #: + #: .. versionadded:: 0.14 + self.payload: _t_opt_any = payload + + +class BadTimeSignature(BadSignature): + """Raised if a time-based signature is invalid. This is a subclass + of :class:`BadSignature`. + """ + + def __init__( + self, + message: str, + payload: _t_opt_any = None, + date_signed: _t.Optional[datetime] = None, + ): + super().__init__(message, payload) + + #: If the signature expired this exposes the date of when the + #: signature was created. This can be helpful in order to + #: tell the user how long a link has been gone stale. + #: + #: .. versionchanged:: 2.0 + #: The datetime value is timezone-aware rather than naive. + #: + #: .. versionadded:: 0.14 + self.date_signed = date_signed + + +class SignatureExpired(BadTimeSignature): + """Raised if a signature timestamp is older than ``max_age``. This + is a subclass of :exc:`BadTimeSignature`. + """ + + +class BadHeader(BadSignature): + """Raised if a signed header is invalid in some form. This only + happens for serializers that have a header that goes with the + signature. + + .. versionadded:: 0.24 + """ + + def __init__( + self, + message: str, + payload: _t_opt_any = None, + header: _t_opt_any = None, + original_error: _t_opt_exc = None, + ): + super().__init__(message, payload) + + #: If the header is actually available but just malformed it + #: might be stored here. + self.header: _t_opt_any = header + + #: If available, the error that indicates why the payload was + #: not valid. This might be ``None``. + self.original_error: _t_opt_exc = original_error + + +class BadPayload(BadData): + """Raised if a payload is invalid. This could happen if the payload + is loaded despite an invalid signature, or if there is a mismatch + between the serializer and deserializer. The original exception + that occurred during loading is stored on as :attr:`original_error`. + + .. versionadded:: 0.15 + """ + + def __init__(self, message: str, original_error: _t_opt_exc = None): + super().__init__(message) + + #: If available, the error that indicates why the payload was + #: not valid. This might be ``None``. + self.original_error: _t_opt_exc = original_error diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/py.typed b/server/venv/lib/python3.10/site-packages/itsdangerous/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/serializer.py b/server/venv/lib/python3.10/site-packages/itsdangerous/serializer.py new file mode 100644 index 0000000..9f4a84a --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/serializer.py @@ -0,0 +1,295 @@ +import json +import typing as _t + +from .encoding import want_bytes +from .exc import BadPayload +from .exc import BadSignature +from .signer import _make_keys_list +from .signer import Signer + +_t_str_bytes = _t.Union[str, bytes] +_t_opt_str_bytes = _t.Optional[_t_str_bytes] +_t_kwargs = _t.Dict[str, _t.Any] +_t_opt_kwargs = _t.Optional[_t_kwargs] +_t_signer = _t.Type[Signer] +_t_fallbacks = _t.List[_t.Union[_t_kwargs, _t.Tuple[_t_signer, _t_kwargs], _t_signer]] +_t_load_unsafe = _t.Tuple[bool, _t.Any] +_t_secret_key = _t.Union[_t.Iterable[_t_str_bytes], _t_str_bytes] + + +def is_text_serializer(serializer: _t.Any) -> bool: + """Checks whether a serializer generates text or binary.""" + return isinstance(serializer.dumps({}), str) + + +class Serializer: + """A serializer wraps a :class:`~itsdangerous.signer.Signer` to + enable serializing and securely signing data other than bytes. It + can unsign to verify that the data hasn't been changed. + + The serializer provides :meth:`dumps` and :meth:`loads`, similar to + :mod:`json`, and by default uses :mod:`json` internally to serialize + the data to bytes. + + The secret key should be a random string of ``bytes`` and should not + be saved to code or version control. Different salts should be used + to distinguish signing in different contexts. See :doc:`/concepts` + for information about the security of the secret key and salt. + + :param secret_key: The secret key to sign and verify with. Can be a + list of keys, oldest to newest, to support key rotation. + :param salt: Extra key to combine with ``secret_key`` to distinguish + signatures in different contexts. + :param serializer: An object that provides ``dumps`` and ``loads`` + methods for serializing data to a string. Defaults to + :attr:`default_serializer`, which defaults to :mod:`json`. + :param serializer_kwargs: Keyword arguments to pass when calling + ``serializer.dumps``. + :param signer: A ``Signer`` class to instantiate when signing data. + Defaults to :attr:`default_signer`, which defaults to + :class:`~itsdangerous.signer.Signer`. + :param signer_kwargs: Keyword arguments to pass when instantiating + the ``Signer`` class. + :param fallback_signers: List of signer parameters to try when + unsigning with the default signer fails. Each item can be a dict + of ``signer_kwargs``, a ``Signer`` class, or a tuple of + ``(signer, signer_kwargs)``. Defaults to + :attr:`default_fallback_signers`. + + .. versionchanged:: 2.0 + Added support for key rotation by passing a list to + ``secret_key``. + + .. versionchanged:: 2.0 + Removed the default SHA-512 fallback signer from + ``default_fallback_signers``. + + .. versionchanged:: 1.1 + Added support for ``fallback_signers`` and configured a default + SHA-512 fallback. This fallback is for users who used the yanked + 1.0.0 release which defaulted to SHA-512. + + .. versionchanged:: 0.14 + The ``signer`` and ``signer_kwargs`` parameters were added to + the constructor. + """ + + #: The default serialization module to use to serialize data to a + #: string internally. The default is :mod:`json`, but can be changed + #: to any object that provides ``dumps`` and ``loads`` methods. + default_serializer: _t.Any = json + + #: The default ``Signer`` class to instantiate when signing data. + #: The default is :class:`itsdangerous.signer.Signer`. + default_signer: _t_signer = Signer + + #: The default fallback signers to try when unsigning fails. + default_fallback_signers: _t_fallbacks = [] + + def __init__( + self, + secret_key: _t_secret_key, + salt: _t_opt_str_bytes = b"itsdangerous", + serializer: _t.Any = None, + serializer_kwargs: _t_opt_kwargs = None, + signer: _t.Optional[_t_signer] = None, + signer_kwargs: _t_opt_kwargs = None, + fallback_signers: _t.Optional[_t_fallbacks] = None, + ): + #: The list of secret keys to try for verifying signatures, from + #: oldest to newest. The newest (last) key is used for signing. + #: + #: This allows a key rotation system to keep a list of allowed + #: keys and remove expired ones. + self.secret_keys: _t.List[bytes] = _make_keys_list(secret_key) + + if salt is not None: + salt = want_bytes(salt) + # if salt is None then the signer's default is used + + self.salt = salt + + if serializer is None: + serializer = self.default_serializer + + self.serializer: _t.Any = serializer + self.is_text_serializer: bool = is_text_serializer(serializer) + + if signer is None: + signer = self.default_signer + + self.signer: _t_signer = signer + self.signer_kwargs: _t_kwargs = signer_kwargs or {} + + if fallback_signers is None: + fallback_signers = list(self.default_fallback_signers or ()) + + self.fallback_signers: _t_fallbacks = fallback_signers + self.serializer_kwargs: _t_kwargs = serializer_kwargs or {} + + @property + def secret_key(self) -> bytes: + """The newest (last) entry in the :attr:`secret_keys` list. This + is for compatibility from before key rotation support was added. + """ + return self.secret_keys[-1] + + def load_payload( + self, payload: bytes, serializer: _t.Optional[_t.Any] = None + ) -> _t.Any: + """Loads the encoded object. This function raises + :class:`.BadPayload` if the payload is not valid. The + ``serializer`` parameter can be used to override the serializer + stored on the class. The encoded ``payload`` should always be + bytes. + """ + if serializer is None: + serializer = self.serializer + is_text = self.is_text_serializer + else: + is_text = is_text_serializer(serializer) + + try: + if is_text: + return serializer.loads(payload.decode("utf-8")) + + return serializer.loads(payload) + except Exception as e: + raise BadPayload( + "Could not load the payload because an exception" + " occurred on unserializing the data.", + original_error=e, + ) from e + + def dump_payload(self, obj: _t.Any) -> bytes: + """Dumps the encoded object. The return value is always bytes. + If the internal serializer returns text, the value will be + encoded as UTF-8. + """ + return want_bytes(self.serializer.dumps(obj, **self.serializer_kwargs)) + + def make_signer(self, salt: _t_opt_str_bytes = None) -> Signer: + """Creates a new instance of the signer to be used. The default + implementation uses the :class:`.Signer` base class. + """ + if salt is None: + salt = self.salt + + return self.signer(self.secret_keys, salt=salt, **self.signer_kwargs) + + def iter_unsigners(self, salt: _t_opt_str_bytes = None) -> _t.Iterator[Signer]: + """Iterates over all signers to be tried for unsigning. Starts + with the configured signer, then constructs each signer + specified in ``fallback_signers``. + """ + if salt is None: + salt = self.salt + + yield self.make_signer(salt) + + for fallback in self.fallback_signers: + if isinstance(fallback, dict): + kwargs = fallback + fallback = self.signer + elif isinstance(fallback, tuple): + fallback, kwargs = fallback + else: + kwargs = self.signer_kwargs + + for secret_key in self.secret_keys: + yield fallback(secret_key, salt=salt, **kwargs) + + def dumps(self, obj: _t.Any, salt: _t_opt_str_bytes = None) -> _t_str_bytes: + """Returns a signed string serialized with the internal + serializer. The return value can be either a byte or unicode + string depending on the format of the internal serializer. + """ + payload = want_bytes(self.dump_payload(obj)) + rv = self.make_signer(salt).sign(payload) + + if self.is_text_serializer: + return rv.decode("utf-8") + + return rv + + def dump(self, obj: _t.Any, f: _t.IO, salt: _t_opt_str_bytes = None) -> None: + """Like :meth:`dumps` but dumps into a file. The file handle has + to be compatible with what the internal serializer expects. + """ + f.write(self.dumps(obj, salt)) + + def loads( + self, s: _t_str_bytes, salt: _t_opt_str_bytes = None, **kwargs: _t.Any + ) -> _t.Any: + """Reverse of :meth:`dumps`. Raises :exc:`.BadSignature` if the + signature validation fails. + """ + s = want_bytes(s) + last_exception = None + + for signer in self.iter_unsigners(salt): + try: + return self.load_payload(signer.unsign(s)) + except BadSignature as err: + last_exception = err + + raise _t.cast(BadSignature, last_exception) + + def load(self, f: _t.IO, salt: _t_opt_str_bytes = None) -> _t.Any: + """Like :meth:`loads` but loads from a file.""" + return self.loads(f.read(), salt) + + def loads_unsafe( + self, s: _t_str_bytes, salt: _t_opt_str_bytes = None + ) -> _t_load_unsafe: + """Like :meth:`loads` but without verifying the signature. This + is potentially very dangerous to use depending on how your + serializer works. The return value is ``(signature_valid, + payload)`` instead of just the payload. The first item will be a + boolean that indicates if the signature is valid. This function + never fails. + + Use it for debugging only and if you know that your serializer + module is not exploitable (for example, do not use it with a + pickle serializer). + + .. versionadded:: 0.15 + """ + return self._loads_unsafe_impl(s, salt) + + def _loads_unsafe_impl( + self, + s: _t_str_bytes, + salt: _t_opt_str_bytes, + load_kwargs: _t_opt_kwargs = None, + load_payload_kwargs: _t_opt_kwargs = None, + ) -> _t_load_unsafe: + """Low level helper function to implement :meth:`loads_unsafe` + in serializer subclasses. + """ + if load_kwargs is None: + load_kwargs = {} + + try: + return True, self.loads(s, salt=salt, **load_kwargs) + except BadSignature as e: + if e.payload is None: + return False, None + + if load_payload_kwargs is None: + load_payload_kwargs = {} + + try: + return ( + False, + self.load_payload(e.payload, **load_payload_kwargs), + ) + except BadPayload: + return False, None + + def load_unsafe(self, f: _t.IO, salt: _t_opt_str_bytes = None) -> _t_load_unsafe: + """Like :meth:`loads_unsafe` but loads from a file. + + .. versionadded:: 0.15 + """ + return self.loads_unsafe(f.read(), salt=salt) diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/signer.py b/server/venv/lib/python3.10/site-packages/itsdangerous/signer.py new file mode 100644 index 0000000..aa12005 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/signer.py @@ -0,0 +1,257 @@ +import hashlib +import hmac +import typing as _t + +from .encoding import _base64_alphabet +from .encoding import base64_decode +from .encoding import base64_encode +from .encoding import want_bytes +from .exc import BadSignature + +_t_str_bytes = _t.Union[str, bytes] +_t_opt_str_bytes = _t.Optional[_t_str_bytes] +_t_secret_key = _t.Union[_t.Iterable[_t_str_bytes], _t_str_bytes] + + +class SigningAlgorithm: + """Subclasses must implement :meth:`get_signature` to provide + signature generation functionality. + """ + + def get_signature(self, key: bytes, value: bytes) -> bytes: + """Returns the signature for the given key and value.""" + raise NotImplementedError() + + def verify_signature(self, key: bytes, value: bytes, sig: bytes) -> bool: + """Verifies the given signature matches the expected + signature. + """ + return hmac.compare_digest(sig, self.get_signature(key, value)) + + +class NoneAlgorithm(SigningAlgorithm): + """Provides an algorithm that does not perform any signing and + returns an empty signature. + """ + + def get_signature(self, key: bytes, value: bytes) -> bytes: + return b"" + + +class HMACAlgorithm(SigningAlgorithm): + """Provides signature generation using HMACs.""" + + #: The digest method to use with the MAC algorithm. This defaults to + #: SHA1, but can be changed to any other function in the hashlib + #: module. + default_digest_method: _t.Any = staticmethod(hashlib.sha1) + + def __init__(self, digest_method: _t.Any = None): + if digest_method is None: + digest_method = self.default_digest_method + + self.digest_method: _t.Any = digest_method + + def get_signature(self, key: bytes, value: bytes) -> bytes: + mac = hmac.new(key, msg=value, digestmod=self.digest_method) + return mac.digest() + + +def _make_keys_list(secret_key: _t_secret_key) -> _t.List[bytes]: + if isinstance(secret_key, (str, bytes)): + return [want_bytes(secret_key)] + + return [want_bytes(s) for s in secret_key] + + +class Signer: + """A signer securely signs bytes, then unsigns them to verify that + the value hasn't been changed. + + The secret key should be a random string of ``bytes`` and should not + be saved to code or version control. Different salts should be used + to distinguish signing in different contexts. See :doc:`/concepts` + for information about the security of the secret key and salt. + + :param secret_key: The secret key to sign and verify with. Can be a + list of keys, oldest to newest, to support key rotation. + :param salt: Extra key to combine with ``secret_key`` to distinguish + signatures in different contexts. + :param sep: Separator between the signature and value. + :param key_derivation: How to derive the signing key from the secret + key and salt. Possible values are ``concat``, ``django-concat``, + or ``hmac``. Defaults to :attr:`default_key_derivation`, which + defaults to ``django-concat``. + :param digest_method: Hash function to use when generating the HMAC + signature. Defaults to :attr:`default_digest_method`, which + defaults to :func:`hashlib.sha1`. Note that the security of the + hash alone doesn't apply when used intermediately in HMAC. + :param algorithm: A :class:`SigningAlgorithm` instance to use + instead of building a default :class:`HMACAlgorithm` with the + ``digest_method``. + + .. versionchanged:: 2.0 + Added support for key rotation by passing a list to + ``secret_key``. + + .. versionchanged:: 0.18 + ``algorithm`` was added as an argument to the class constructor. + + .. versionchanged:: 0.14 + ``key_derivation`` and ``digest_method`` were added as arguments + to the class constructor. + """ + + #: The default digest method to use for the signer. The default is + #: :func:`hashlib.sha1`, but can be changed to any :mod:`hashlib` or + #: compatible object. Note that the security of the hash alone + #: doesn't apply when used intermediately in HMAC. + #: + #: .. versionadded:: 0.14 + default_digest_method: _t.Any = staticmethod(hashlib.sha1) + + #: The default scheme to use to derive the signing key from the + #: secret key and salt. The default is ``django-concat``. Possible + #: values are ``concat``, ``django-concat``, and ``hmac``. + #: + #: .. versionadded:: 0.14 + default_key_derivation: str = "django-concat" + + def __init__( + self, + secret_key: _t_secret_key, + salt: _t_opt_str_bytes = b"itsdangerous.Signer", + sep: _t_str_bytes = b".", + key_derivation: _t.Optional[str] = None, + digest_method: _t.Optional[_t.Any] = None, + algorithm: _t.Optional[SigningAlgorithm] = None, + ): + #: The list of secret keys to try for verifying signatures, from + #: oldest to newest. The newest (last) key is used for signing. + #: + #: This allows a key rotation system to keep a list of allowed + #: keys and remove expired ones. + self.secret_keys: _t.List[bytes] = _make_keys_list(secret_key) + self.sep: bytes = want_bytes(sep) + + if self.sep in _base64_alphabet: + raise ValueError( + "The given separator cannot be used because it may be" + " contained in the signature itself. ASCII letters," + " digits, and '-_=' must not be used." + ) + + if salt is not None: + salt = want_bytes(salt) + else: + salt = b"itsdangerous.Signer" + + self.salt = salt + + if key_derivation is None: + key_derivation = self.default_key_derivation + + self.key_derivation: str = key_derivation + + if digest_method is None: + digest_method = self.default_digest_method + + self.digest_method: _t.Any = digest_method + + if algorithm is None: + algorithm = HMACAlgorithm(self.digest_method) + + self.algorithm: SigningAlgorithm = algorithm + + @property + def secret_key(self) -> bytes: + """The newest (last) entry in the :attr:`secret_keys` list. This + is for compatibility from before key rotation support was added. + """ + return self.secret_keys[-1] + + def derive_key(self, secret_key: _t_opt_str_bytes = None) -> bytes: + """This method is called to derive the key. The default key + derivation choices can be overridden here. Key derivation is not + intended to be used as a security method to make a complex key + out of a short password. Instead you should use large random + secret keys. + + :param secret_key: A specific secret key to derive from. + Defaults to the last item in :attr:`secret_keys`. + + .. versionchanged:: 2.0 + Added the ``secret_key`` parameter. + """ + if secret_key is None: + secret_key = self.secret_keys[-1] + else: + secret_key = want_bytes(secret_key) + + if self.key_derivation == "concat": + return _t.cast(bytes, self.digest_method(self.salt + secret_key).digest()) + elif self.key_derivation == "django-concat": + return _t.cast( + bytes, self.digest_method(self.salt + b"signer" + secret_key).digest() + ) + elif self.key_derivation == "hmac": + mac = hmac.new(secret_key, digestmod=self.digest_method) + mac.update(self.salt) + return mac.digest() + elif self.key_derivation == "none": + return secret_key + else: + raise TypeError("Unknown key derivation method") + + def get_signature(self, value: _t_str_bytes) -> bytes: + """Returns the signature for the given value.""" + value = want_bytes(value) + key = self.derive_key() + sig = self.algorithm.get_signature(key, value) + return base64_encode(sig) + + def sign(self, value: _t_str_bytes) -> bytes: + """Signs the given string.""" + value = want_bytes(value) + return value + self.sep + self.get_signature(value) + + def verify_signature(self, value: _t_str_bytes, sig: _t_str_bytes) -> bool: + """Verifies the signature for the given value.""" + try: + sig = base64_decode(sig) + except Exception: + return False + + value = want_bytes(value) + + for secret_key in reversed(self.secret_keys): + key = self.derive_key(secret_key) + + if self.algorithm.verify_signature(key, value, sig): + return True + + return False + + def unsign(self, signed_value: _t_str_bytes) -> bytes: + """Unsigns the given string.""" + signed_value = want_bytes(signed_value) + + if self.sep not in signed_value: + raise BadSignature(f"No {self.sep!r} found in value") + + value, sig = signed_value.rsplit(self.sep, 1) + + if self.verify_signature(value, sig): + return value + + raise BadSignature(f"Signature {sig!r} does not match", payload=value) + + def validate(self, signed_value: _t_str_bytes) -> bool: + """Only validates the given signed value. Returns ``True`` if + the signature exists and is valid. + """ + try: + self.unsign(signed_value) + return True + except BadSignature: + return False diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/timed.py b/server/venv/lib/python3.10/site-packages/itsdangerous/timed.py new file mode 100644 index 0000000..cad8da3 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/timed.py @@ -0,0 +1,234 @@ +import time +import typing +import typing as _t +from datetime import datetime +from datetime import timezone + +from .encoding import base64_decode +from .encoding import base64_encode +from .encoding import bytes_to_int +from .encoding import int_to_bytes +from .encoding import want_bytes +from .exc import BadSignature +from .exc import BadTimeSignature +from .exc import SignatureExpired +from .serializer import Serializer +from .signer import Signer + +_t_str_bytes = _t.Union[str, bytes] +_t_opt_str_bytes = _t.Optional[_t_str_bytes] +_t_opt_int = _t.Optional[int] + +if _t.TYPE_CHECKING: + import typing_extensions as _te + + +class TimestampSigner(Signer): + """Works like the regular :class:`.Signer` but also records the time + of the signing and can be used to expire signatures. The + :meth:`unsign` method can raise :exc:`.SignatureExpired` if the + unsigning failed because the signature is expired. + """ + + def get_timestamp(self) -> int: + """Returns the current timestamp. The function must return an + integer. + """ + return int(time.time()) + + def timestamp_to_datetime(self, ts: int) -> datetime: + """Convert the timestamp from :meth:`get_timestamp` into an + aware :class`datetime.datetime` in UTC. + + .. versionchanged:: 2.0 + The timestamp is returned as a timezone-aware ``datetime`` + in UTC rather than a naive ``datetime`` assumed to be UTC. + """ + return datetime.fromtimestamp(ts, tz=timezone.utc) + + def sign(self, value: _t_str_bytes) -> bytes: + """Signs the given string and also attaches time information.""" + value = want_bytes(value) + timestamp = base64_encode(int_to_bytes(self.get_timestamp())) + sep = want_bytes(self.sep) + value = value + sep + timestamp + return value + sep + self.get_signature(value) + + # Ignore overlapping signatures check, return_timestamp is the only + # parameter that affects the return type. + + @typing.overload + def unsign( # type: ignore + self, + signed_value: _t_str_bytes, + max_age: _t_opt_int = None, + return_timestamp: "_te.Literal[False]" = False, + ) -> bytes: + ... + + @typing.overload + def unsign( + self, + signed_value: _t_str_bytes, + max_age: _t_opt_int = None, + return_timestamp: "_te.Literal[True]" = True, + ) -> _t.Tuple[bytes, datetime]: + ... + + def unsign( + self, + signed_value: _t_str_bytes, + max_age: _t_opt_int = None, + return_timestamp: bool = False, + ) -> _t.Union[_t.Tuple[bytes, datetime], bytes]: + """Works like the regular :meth:`.Signer.unsign` but can also + validate the time. See the base docstring of the class for + the general behavior. If ``return_timestamp`` is ``True`` the + timestamp of the signature will be returned as an aware + :class:`datetime.datetime` object in UTC. + + .. versionchanged:: 2.0 + The timestamp is returned as a timezone-aware ``datetime`` + in UTC rather than a naive ``datetime`` assumed to be UTC. + """ + try: + result = super().unsign(signed_value) + sig_error = None + except BadSignature as e: + sig_error = e + result = e.payload or b"" + + sep = want_bytes(self.sep) + + # If there is no timestamp in the result there is something + # seriously wrong. In case there was a signature error, we raise + # that one directly, otherwise we have a weird situation in + # which we shouldn't have come except someone uses a time-based + # serializer on non-timestamp data, so catch that. + if sep not in result: + if sig_error: + raise sig_error + + raise BadTimeSignature("timestamp missing", payload=result) + + value, ts_bytes = result.rsplit(sep, 1) + ts_int: _t_opt_int = None + ts_dt: _t.Optional[datetime] = None + + try: + ts_int = bytes_to_int(base64_decode(ts_bytes)) + except Exception: + pass + + # Signature is *not* okay. Raise a proper error now that we have + # split the value and the timestamp. + if sig_error is not None: + if ts_int is not None: + try: + ts_dt = self.timestamp_to_datetime(ts_int) + except (ValueError, OSError, OverflowError) as exc: + # Windows raises OSError + # 32-bit raises OverflowError + raise BadTimeSignature( + "Malformed timestamp", payload=value + ) from exc + + raise BadTimeSignature(str(sig_error), payload=value, date_signed=ts_dt) + + # Signature was okay but the timestamp is actually not there or + # malformed. Should not happen, but we handle it anyway. + if ts_int is None: + raise BadTimeSignature("Malformed timestamp", payload=value) + + # Check timestamp is not older than max_age + if max_age is not None: + age = self.get_timestamp() - ts_int + + if age > max_age: + raise SignatureExpired( + f"Signature age {age} > {max_age} seconds", + payload=value, + date_signed=self.timestamp_to_datetime(ts_int), + ) + + if age < 0: + raise SignatureExpired( + f"Signature age {age} < 0 seconds", + payload=value, + date_signed=self.timestamp_to_datetime(ts_int), + ) + + if return_timestamp: + return value, self.timestamp_to_datetime(ts_int) + + return value + + def validate(self, signed_value: _t_str_bytes, max_age: _t_opt_int = None) -> bool: + """Only validates the given signed value. Returns ``True`` if + the signature exists and is valid.""" + try: + self.unsign(signed_value, max_age=max_age) + return True + except BadSignature: + return False + + +class TimedSerializer(Serializer): + """Uses :class:`TimestampSigner` instead of the default + :class:`.Signer`. + """ + + default_signer: _t.Type[TimestampSigner] = TimestampSigner + + def iter_unsigners( + self, salt: _t_opt_str_bytes = None + ) -> _t.Iterator[TimestampSigner]: + return _t.cast("_t.Iterator[TimestampSigner]", super().iter_unsigners(salt)) + + # TODO: Signature is incompatible because parameters were added + # before salt. + + def loads( # type: ignore + self, + s: _t_str_bytes, + max_age: _t_opt_int = None, + return_timestamp: bool = False, + salt: _t_opt_str_bytes = None, + ) -> _t.Any: + """Reverse of :meth:`dumps`, raises :exc:`.BadSignature` if the + signature validation fails. If a ``max_age`` is provided it will + ensure the signature is not older than that time in seconds. In + case the signature is outdated, :exc:`.SignatureExpired` is + raised. All arguments are forwarded to the signer's + :meth:`~TimestampSigner.unsign` method. + """ + s = want_bytes(s) + last_exception = None + + for signer in self.iter_unsigners(salt): + try: + base64d, timestamp = signer.unsign( + s, max_age=max_age, return_timestamp=True + ) + payload = self.load_payload(base64d) + + if return_timestamp: + return payload, timestamp + + return payload + except SignatureExpired: + # The signature was unsigned successfully but was + # expired. Do not try the next signer. + raise + except BadSignature as err: + last_exception = err + + raise _t.cast(BadSignature, last_exception) + + def loads_unsafe( # type: ignore + self, + s: _t_str_bytes, + max_age: _t_opt_int = None, + salt: _t_opt_str_bytes = None, + ) -> _t.Tuple[bool, _t.Any]: + return self._loads_unsafe_impl(s, salt, load_kwargs={"max_age": max_age}) diff --git a/server/venv/lib/python3.10/site-packages/itsdangerous/url_safe.py b/server/venv/lib/python3.10/site-packages/itsdangerous/url_safe.py new file mode 100644 index 0000000..d5a9b0c --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/itsdangerous/url_safe.py @@ -0,0 +1,80 @@ +import typing as _t +import zlib + +from ._json import _CompactJSON +from .encoding import base64_decode +from .encoding import base64_encode +from .exc import BadPayload +from .serializer import Serializer +from .timed import TimedSerializer + + +class URLSafeSerializerMixin(Serializer): + """Mixed in with a regular serializer it will attempt to zlib + compress the string to make it shorter if necessary. It will also + base64 encode the string so that it can safely be placed in a URL. + """ + + default_serializer = _CompactJSON + + def load_payload( + self, + payload: bytes, + *args: _t.Any, + serializer: _t.Optional[_t.Any] = None, + **kwargs: _t.Any, + ) -> _t.Any: + decompress = False + + if payload.startswith(b"."): + payload = payload[1:] + decompress = True + + try: + json = base64_decode(payload) + except Exception as e: + raise BadPayload( + "Could not base64 decode the payload because of an exception", + original_error=e, + ) from e + + if decompress: + try: + json = zlib.decompress(json) + except Exception as e: + raise BadPayload( + "Could not zlib decompress the payload before decoding the payload", + original_error=e, + ) from e + + return super().load_payload(json, *args, **kwargs) + + def dump_payload(self, obj: _t.Any) -> bytes: + json = super().dump_payload(obj) + is_compressed = False + compressed = zlib.compress(json) + + if len(compressed) < (len(json) - 1): + json = compressed + is_compressed = True + + base64d = base64_encode(json) + + if is_compressed: + base64d = b"." + base64d + + return base64d + + +class URLSafeSerializer(URLSafeSerializerMixin, Serializer): + """Works like :class:`.Serializer` but dumps and loads into a URL + safe string consisting of the upper and lowercase character of the + alphabet as well as ``'_'``, ``'-'`` and ``'.'``. + """ + + +class URLSafeTimedSerializer(URLSafeSerializerMixin, TimedSerializer): + """Works like :class:`.TimedSerializer` but dumps and loads into a + URL safe string consisting of the upper and lowercase character of + the alphabet as well as ``'_'``, ``'-'`` and ``'.'``. + """ diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__init__.py b/server/venv/lib/python3.10/site-packages/jinja2/__init__.py new file mode 100644 index 0000000..e323926 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/__init__.py @@ -0,0 +1,37 @@ +"""Jinja is a template engine written in pure Python. It provides a +non-XML syntax that supports inline expressions and an optional +sandboxed environment. +""" +from .bccache import BytecodeCache as BytecodeCache +from .bccache import FileSystemBytecodeCache as FileSystemBytecodeCache +from .bccache import MemcachedBytecodeCache as MemcachedBytecodeCache +from .environment import Environment as Environment +from .environment import Template as Template +from .exceptions import TemplateAssertionError as TemplateAssertionError +from .exceptions import TemplateError as TemplateError +from .exceptions import TemplateNotFound as TemplateNotFound +from .exceptions import TemplateRuntimeError as TemplateRuntimeError +from .exceptions import TemplatesNotFound as TemplatesNotFound +from .exceptions import TemplateSyntaxError as TemplateSyntaxError +from .exceptions import UndefinedError as UndefinedError +from .loaders import BaseLoader as BaseLoader +from .loaders import ChoiceLoader as ChoiceLoader +from .loaders import DictLoader as DictLoader +from .loaders import FileSystemLoader as FileSystemLoader +from .loaders import FunctionLoader as FunctionLoader +from .loaders import ModuleLoader as ModuleLoader +from .loaders import PackageLoader as PackageLoader +from .loaders import PrefixLoader as PrefixLoader +from .runtime import ChainableUndefined as ChainableUndefined +from .runtime import DebugUndefined as DebugUndefined +from .runtime import make_logging_undefined as make_logging_undefined +from .runtime import StrictUndefined as StrictUndefined +from .runtime import Undefined as Undefined +from .utils import clear_caches as clear_caches +from .utils import is_undefined as is_undefined +from .utils import pass_context as pass_context +from .utils import pass_environment as pass_environment +from .utils import pass_eval_context as pass_eval_context +from .utils import select_autoescape as select_autoescape + +__version__ = "3.1.2" diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c891a27bb77ba6d601987824110c9c8235d95ed2 GIT binary patch literal 1614 zcmbW1%WmT~6ozHTj%``KJ9h3-l9>*&h&7#Vi=s_t0<@S6g1Q9?0);?JjLn211(NpI zv+Ay|&^|&JeVlH*?W(WPRS%iUc4t``{_*kW;qB;%qE>Sqcz*xmSMqboasD)o%_k3y zFX69#$~jK#AScend6rA^D4#RD1-yl}EEj+as9?Fsipe(Gw!95oLM6*3R!%CYVz~_L zBG+;SxQeQlU0@G+maD)uRI}^>*HPVa4Y+|Cmg}sUv{1`(1GtUamYcvG)Un(G?xL>c zHt-JGvD^Xfp`PU~a3A$8?*Q+jUCTYTm+Yf`%YEPjbYOWG_z)dh-UB{DN0#@2kI}K^ z19p=5$hUk5e2Pvj9|51CGt0-o=jhz>3Gg%Y%(4&s96bjL<-gk-U;%vT%1oy;8CWM#4S?|Dq_AyIMWxK~(_ zw*tq+Y{a{s2pX;1?rR$9Rc~{hkd;@znexb-W#xFcBA&AK9JMv1&@a`n+VZIvB zzMf#p@raSt?qDnR*JLyuZ#umMKa!A%G1SaBgrq#31Y#RQEn%aZ!IjO17cqimXy2GJ z$E4~%tY$?J>q(eN_f~W|mc$GPXzXocyJQ{_TeM2T&F09mk%|#><;kiM&qxhq zSz`9>DOopG!${Le%ShWu$4J-64#=`3p9)C!jMX=?Yh=&JKFG2-)s!iDV2nc}M@Ei~ zoEY&zmenwv5otcPF#OGt7pB9=-#-Quk&xg4E5U=IxYzHoB*8ty>hY38f*(`>^$%l% z86+TJbQGlagNMw$3>4MmGJPr;6+DI$Ubcm*%_ I|9|EDKVBunl>h($ literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d29284f1442935f9bd0ec638b55ae9e689341420 GIT binary patch literal 2089 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a87361b85fbdcf01038b16d068f7531ab910339b GIT binary patch literal 54563 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 ZP`(8&jrhmM&&MGU47~hCSU^mK9RO;MkO=?) literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8769c4f19343841f877cd6f85b5d8be19f459376 GIT binary patch literal 1550 zcmYk6OO6~x5Qcj!A&pA%f*a)43%hvi5JD_qfrK&g2qCe+%Fc@Jj&VN9`6!s9_y{aG z4jXT|1uMR&9wACq5s_Ju5r6&>ndRxz>A>^nU+?ApM~B1THu(Q@!{BSac8gdJzZ{mE zyTh|5{tKMF^MN;v)O>b+;nh`J(0q1Yve;zQcf+TvmhOBqk-Ip*cFEW^4CnjgN9d(G zKh8tkQIC?Bk=!x*yl8hJ`qo@1DV3$5nM|z41KU=hnuIQWNS*cpX<1kDII1_j`52WL z)gzdUHf;e$^+)Za?iP_oZKJuxuX-G9S`_q)2FrC-tz(?Cwx%|PYl$FVN|xZ3q4qT= zXK9^O=@^gp9vC27+M)(oXP z5zb_NjDC`FR>Gbtwa^&7JB=2^ovYt;@$O<*!P;kwOcPNu&@{nHz2G~xwi~P7yiK1Rdyqf zapMdSsMz^Zw^lE0&qXAqJZsei0c$N(aUF3}P+?Sp?`QR$^{)xrcfFKM>87f5|1bd1 zYI5{Su;$OY^W8Wvk{$d-8fahIWN}UK5$hWiY#ND8`_xKMvY0A3V=PujG}Q?l#|3cY z30x@M40z$J(Wjk`Vq5*nMkjWulPMy1no^emu`mJpt6{8kFmE)ZBU%me3?vF!#!Y#Xte}0`WCCPm6TgmfX zIrZOYh55uq`1X00-}`-=n^Y3aAlYWl(Y!u%s`dGcPd}OASe~ywy!G5e^S$PK|JiK! aqMiEoVtx2<`z2S)i1L-)@Xhkx-uw&2V>P1y literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82357340e38f019445b244a45039aeccc8f27e38 GIT binary patch literal 4006 zcmZ`+&2Jn@74NS8n4a-?{F&I<1=JwEEG0H%LD7aN0_V(Wu@-fDx@znm_jFIH zYwXzSk&wJxkhmhD1!;Wbu>S~mE+uZ9e1j_zgx{;4nK&V|RW+}wUcFcK>b>84E*2MC z7QWB^`Ummpre*z|23J2?{VrPh7j)d>c4qC@zxF=Em}Snu-FI!8b3l9h9%z?)nLlXk zHw^7(!JxU{G;{-WYrkb%g7p{V4mg9XJy_gd#Oih4#B4__-LQB|EcaZ#z}ugA`zw4= zEc1?8^RTugmiV$*1&`Nj@fE)MiMzkX*RZ}Wme618F(ZNXufG~Y+B&}m&JAuqvbHuZ zaUbj9maT&a1s8j#LjihmPsWMp#>o*)T-sp4?Ao3f46|5?N2j@pU+hX*NMcTNC1f6F zQ345=XbjS_O!EUG9~4-8p|oEXBbf;8OQA+GPe|nKYl8659-x&zR+KfdFRYK9u{~yE zN3n^c+=^YWF*CGRIiMZoS4=g|nY>-Geo)@#cEzHgvd}jxHfeEoVcV8ks2FG9Xb*33 z2fvHw?%2tl%ISB;&Ve;{D~Gd@Er*y{>MyI6V@vMVtIzM4xz))UcQ5R*S9yk$SKeeD zE7vgRll;o5yneg#A-Pexlj~K3H0Pe79inS_wWjhroQ(suQMu>#2iC6|W2Xu#C+bwr zICy?cC$EAFdK)i(0b~49oXAv(P#uae8A&N}6^a*$7^<|$Lsf)Q;87A0#`$TeX75&p zJy{G|A-{-~&isWdz>FzL=@gS@P-3@jGrH-fM|p9QZ=2!W+RyHWdobI4%PYIlv5Yur%&P=UIkR0Y zVejEt^WG>oGVklvDC(zqKaOTMkD{$j?Ubjb4j?s3^IoBCrQIYhm0tXQT#DVP9(* zR{)|1Gh(S{!ch7ovDu3bvZ5PjrFIU4(wpe83@0jwMa~hU(Nt0s0;Z%N4~HV>I*{U6 z$WrjFW_><8(oMSSah#2WW~!?_+$TAL_NhzB>!h_&pSvqJF#5A4zlxuK?e82G1F_SO z%Oc--RP@wIEX7VQi_4>1bcKGoQwj-%JI5kF-pSJL&hS(n7WsSI-~7f-i3qqggs%8N zlso1nZtrl>9UW{BPxVIqh*xYCnS*tpxV($5v(UEN_A>Kr-)=d~S+@O`zUQ*QZ9Bfr z><$YU*1^+aJ`4WguF^bsnfyAo%P&&*CF-tGN4HE|bhD41ZyC)X*mVSLWpf*tvZ6rs z?LIrVfivy|NW<+525ev{ArEk=LcaK;Gxn6r35mQ-Yu)1h22hMQ&YiK(17J!mZP&>1 z`u;em0^U4g@(yo}8+oS+CJnxDVar|K#>yhMe*@(Il>Lc~8!G5GdFRNJzo`6vt7`D2 z-vPDY?F$$Kv-*o@9keC1WwaHvRkSs)B4=t;vP2 zDPE`e5pB!4r}{|NKRKRJblu7>qEUZLta>_PI`b| zM+Z?vFBL^Zk-8|7TL?jIwra6PQ zXL+IGuG!R+LSSPpArVG}a{*#VM4%U%VpFr8bWP-nesH_RF5tX716sJ0Kxw5Icov;gQ z%uF7jT;PDuxv)?VzW*^ByQnqYiOW$t%CA(O@ z$S%PXD{lgSgVXyp{yw#yZ=Rs;oLH61{R?E18`ij4HLKvrLM{j@uSa#Odk=izs&!u@ z-Dp15x<=~(>d_`7p!&A0=Z}H+%sSFhmK8imX71;GuvRl=6Mr(x7#(9A>G~4j^8)9#chQ{-2R|Y8f9AkCUhu+U2o| z^^&<#R3IK@$`KnbMTPcEEo4rjn;h_Th%l4dGbDm)BqKw<>89U?_}`r z>n}677(Q~gHr$WBTz053VZUB?0=oleb(y5STlT}P%^D(nbvi^LC#l%c9tNT`_%N+H z=crlMRi`&nX;zx@ur|cv-qVkEqX$3QeelyCKm4I?Oy5uvyy@UW^KV9+q108f4qj6c zJ;7=n3XPwmUc>>k^S%63yC0;9GDo~}WhwwAg{Kbg4UqdY0Vl=fZ=wsVz+ASCYqo74 W{W}i3k9d6+xu&5uJ9^MW$0lrc=eTtV(hpXfhmDfMm*iXaLBm znDK{nCO^+1-`%j{)7CRRFr?@Wb@0y z9heIRD_C_Eq+$&xT+K_Mq^bZ;x+zab=?JIXjF&~(2P;0;5^DlI0LwV z3aUcXd66DPUbj#QXHgmFPzC2v6&Fwq7f~H=p$1mbHYo3ron3|O;?h%y0^Q$W%D`06 z1LzNN6@7whpsGjQ9{H3!A~}*Jc~ZcQw>tU^Z{vGdg|-8I7jHW%uHgG`Gw5^hxKDP# zelgXeogT=YMoRPHEu3EI->P7nsz{%7dt-Ar0+; zEN8)%o>aUD99RI9?b{w<3wuIB?ae``9o)e9Ce&`^xF2f!H=@z&_DyRvZja3~vp=>5 zL-VBjv#3RM=lpDgJP~Rx+~cIxb2#kl{(AV*Km791;Y%8ihp$ArZ~k=W(){7V?03wj zE>hI?XGA2iGvPvaqd0{=iOwPPc@(Y4`f;pdk@16IArE((f<%Zc3n;g)$ci;HVRaIC z3kNdLvf0FOEXHY=TT<5vNsAIUEUq!P>5TBOzMhibIkhb|xg?O0u*B)opFrwbE+Mb& zRal#|z;EHDw_w&3mber6VP%87dJXv2K+&u2AeKPstw&LVTZka@ISk$_tgCCjpXKj5|`nPpM=M-X`k z?97V78i`_0#yMC|X+a7ar=~fu#=~|O>gu_*t}j}IHM%7Ql{jzx_L(^vv^yrz;wLazxmu8DtbxXy3J zV#O~5|LfM1BZEQhKZX}|WzPsR=8iwNzcMhH+Dn(S)?y_xPrU#yUGlAb!|Vl^oKnyV kYTR@!qb3tcHEvb48sP$1Ev2b()8A|P7;CBy{NB6&0F+6DGynhq literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e13b9ed78897f9affa3666b73977c807ed2bd2a3 GIT binary patch literal 53400 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 UFGl|>%&WVCUD#U~$-Vaf0HygVL;wH) literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9126ab62f3563425c8bd854b59ca2f78a0c8bea2 GIT binary patch literal 5549 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81f5b7204123a316aef4a01713094add2a641b0c GIT binary patch literal 25711 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 WR~wH?oJCo9!2QsAi|&e9W literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee0e77487c8da2a96bcd7d9650669418dd947570 GIT binary patch literal 51199 zcmdVD3t$`PbtVc7215{}D4Kd&lI<~NnWRlYZ$A`Cu_Q~f{Gb(!wqx1~0b+&}Bod%z zKud(c)V7>jO5-%WX}9er=}O&Zx9aw_+ugQ%Z@bNIZhLQgZ@0~M+ossQ(>8Ut>B~)< z$glmr^Z)Yz2+DGr?%hiXKL#`ZI>be4AsY{!ZgNHEqpwjCCYg#+=T~bdGh( zbsE>%v8-HM(_J&&W8HGyf$L>s%j7zP>z=V5Tz5Lz>E$!MW4&_Sh3lKfZj$S6T=$Lj z$@MZ^uNYe)*FDoKXI71^lI!Kut7q1Xt&!{A>9sRAkKHWSH{p8S*gCoH!}a>H^>V!e z*Biz*$n{EG-!gWKT(83Qtz);!^=e$-Hg;Pw;iga7-j7RwtaJgtxsm0%}x$=-|wKGi(qCs=8p9PJ>KeULyvbm{myp4y9{@BI6HCYeHay$ zH+^akdaiqj@4fi!i|(M^l=O8M%IV|NWx8RvrnmA(&{Oy{8U zAWA(5SPo$>cRPgTFmlCu;~a4hq4X|{+(XV$f#h(k-G`k=P{R>7b@?IZQDDl^*t5r+ z5j=ai^YPAOosXk_HC`cP&IeHQ6V7pGR9a9Yzb}9r@MWDRou@EYkGShm$Kx_ydjuQ$ zou{P~YiNgi8=VhMc012FV*>A^Ql8klH!Qt$$!F2-bIu7V`B<3$L(aIs+rG6tS}Qmc z=Fb9Tx(jS>6+W_U`*@BK2z z#M`}?>0Rwd53`+hrkxq7{Ry|%ed0oLQTd&y<2dUP{JMT!Wv3!_jbaWS0F=9&GwwZt zRhHv9J|KJ&y}z?_ptIWfbmzv-Jo4>#=A7qWHi7w10fMIhfqH&cKR@7{bLQpw(_z_~ zes<6~@6_el2ip|xQ=SBJb41OI7>2?g?md_b((flw-*;#zv(EqKd=gNOqu<{NIKE3}_95q=fD@CGd^g7S zdyw~gas5xFy?~qaIG=JpEiL6y_A{M_&;wHbQNeST<-B|!%Kozu;>)_#9_Nbl{Zh6d zBk|8M5)+!*?*T9Q0q3(Ar6Ov3SdZRasOw+KJl_LM{6Xg`V0Q5Qk?{E#MtBUP{;!-L z#xoc9cR4?TmUGUJN~-wIk2yb%nkP~6e#!B#L)iG-a{i6;6DU2U`7`^^$VQFQr{P!kDWh}{58pct7AA{{3)ijh>&`XF`Qml!d&7BCa=nE5Ub=35Z#i#E z&I?VlC9yu|yn{55Dwj=WKp6>ql0t_s%N%k1_6gtpNF=!m#&2c~kpwTL$um=+k#AkP zEOMAA*-{#J)3Ty0dNSFKXBIvksP`3xH+sev!FBz*fhRr4!CrQvu8X=Zg(L5^uD_DH zvZ$*IbzLfP+`8S5elm$2#QZ18v6i`~<-5l{BHzp1C-HQT`)x=MyB|P$7gOZybsv%M zo7`^s?$h5Z+-H&N6YkS;cctsf_bT^&^1a%fl?f0@1m<#Fey?>M`M%j5mG5=# z2T{v+vt6{c-mS{_2KRt`-{L+f-?zHw<@+}Garw60WAc5w`<#6DyU)n?M)zCf`wsVl zd~b3eK<%UMxlblP3nZY(SK^X20B^98R|C|7YKTbQd>#tS9D5dAuf-&d23Zh3~s(J)cIuDaVJY<*I}NM)tPC(FzJq;@+;+WXKrTJ$L;Rfg71$P zE9I(tj#c%_Z@2t>$*YuE8SdSr?mb_a4l-Uv2WKZM-b{hubk2Fx<7eh7RTr5p{3z9U z)pe+;maapn;9%HLM|8RJc%ke}RL;3htVEF`8~;n;#{>BI>yWq!=z0>=^SG%=18XBW zjOm!i6GQ1n$3q4Gq0z@4ZCIXLo%6~?j&bnEYkm&m^SX(|NgPjHO^#ee(lC8@deZC1 zT}iGzx8-DI#@%wNfFav*98-3-;JI5Srwjh+&1DSODSwOade6Jwmgg~KTc%4BTW060 zCoAP0xoumw_?W!SvxVa6!j$W8IaMm3Ds11P(JD7P-^h%Qb5h2~HxU*CiJ7eRYT$Fh z!x8idIm?9^cYM5&9Uq^mICImy?jFae7pC=-6tKy=GXOp6gvZ*wTany>kIyb=5`9Uz z(?}l9VW!d(mASIhNIud?KGjHLn&w>ZHso70aB1A+!1=7Mny4qL$qR($#ohUt!fAKBP_24X zZWY*`&)Gl?jA_-k(WO#(%Fo*Pt5)pk%30Sd7Fc81vDM`Ib_I0l+12@37tQ#aOMY(1 zYGg}(sq9w^<)Z7|4PYC|YQsd)s<(x|(o)scq_-8nTE?o;RhlYSJa?QeS97TSJ(f%+JjAZgc@)EGQ znmh$;W;$uUl6WQgit$PcQfA6AU+!Ko>w@34KY2pXnuA&_Oivdkrd{x+LKWjvISqz2 zE1YVo1e~-(xa>)u`cFp`@srk1GsOaJxqcV z%t)cg`HWhT;$fRUN*)DgnZo?c7C50`u(O5gNvTWfAjkj(Fat?SDzBfDM-3D7GqV^G zNhln?6&$_?kX$q#Oq^J;ki3|@4AiS9uNVu7i=gYdq_?V?1d+Zo_X6n&rfh;k^%E4U^DcHND+@a4+wqr9a;NydnHz z6YpjtG=31jeb$jlb|?D`Gikh#F)~1*+Qt@y&+VD6U>^N_xu`UtSvx-KxoAbvhTzt? zYIHlBO6@Pt52Xbd?>^j6pa_5u@TUN^k5>ZO@|H%~3Bl`3mu;Bc9;v!Wgbe;T!u$x5 zK7k7&sgQeDJ$V_ZdL_A#DyQnnDSQh9PSjHmVoWbVn5(8vnNAuhKPDB33YjNUjs>AD zK;=x~Dp>J*z~*9QW~N~K92P9m3JW7_(qYu zGK!?bQQB?y^LpDb)9wAk`e&|GF1y~g+*Wm8{oJ10iVSYGs0i{}a=2+lkQEDEfEpLM5R=%i&ibNZhnMWJcSD@) zJ!o;rQcNUG-r_fsrAALU8$!_yi%-T&-d^Osno>0Veq6V(7w-YwE8*kQ{?(K01y{)! zJ@{mjSp%Hq-A0Sesznws36qnhG40Pzmw*hY)H{HrVLnQ^auIWRoEaWqBFtrkSHfIY zwVfqFi*97fF7HlSMvrlaVfK0-z>S7UNSbg7d?3L!l6=VDilj~kp75+GpjRkqtfE!x zWjq4|N?pOcUBKAaF{6+-%#o%Fn~>8+g@T;j3rTRV#Fd2Cjg88$h zXc5h%Ow9C3jHb|2ZB;e*WVuu+KMT2L*w&KciKcOA8rVBg2M5zpVjKCmQHRKOIduiA zW7Vvtxhir{hf=kJhsu!Bimpvr+LlcWgfTF@(UagsXG_!5HsrYph#&K|Q<IGA|Bq=)e|z#hL#u8dQu3x>a(@+vzj_tFp$ZU$Ca7=~mSL$Uyk$K?*a ztO=f75gaS*K=mKsR>yV<)q;qzlyD)}6znITcvPet8?x;gh|u#8elcS9lcR?>-=}%< zfr4Ku+GoAOEVhu4s3>>`f-rVY*g@p5hCuF={Z!sQdlEvN7UhJgE0K7ZZD{$qsTh8^ z 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�n^G2@7VM2>>Z8`uz__(r;Q`zroLhewCHAh8r? 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ec63b30839cf5ba25269ae9c9e294b22db669d7 GIT binary patch literal 20451 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 NW*2*h`n&s+{|9ADidO&t literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6d6d6583be7d54a14ab3d029f07f6ca68a02b57 GIT binary patch literal 20534 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 C4>@H3 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..909f35ba46c56afd8bdb9c5f4dd8ae6a89d4cbdc GIT binary patch literal 5025 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 Qe&?N~^Gh!*EtG%oZvry;8UO$Q literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1148129aecb501f76bfd1582deee2da218877848 GIT binary patch literal 40316 zcmbt-37A{gbspZs!!nqK!x1TwG)2KQP0r9HC{eO4FB+AlA7D>q(Nd_=@Z-y9R zfZ=@r$$^K8Y$}%Q#z~ySjukH<9mh7EIEm9NO|#T)lGbU`W@{F|Hi=WWP0}x4zb|Ft zq>5$r|Id9JFaRhuL%xf5-g1|7&pr2S_rAvHXfA=jFaF_6&NttmNPL4p{Ev4J;&AUx zClaR;c49VR8@5?9W)1l@XHEG{&RY0Q)>2F9*|foDtXgI%JDbIM%1+mYmU6Q>BjH$! z!>S-}jLeSWPNp`tv~G5t+!?pC_K=Pj*U2O#BmdjP4@67GP9eJ z(-!9qNVnp+na6_3bl%*Y;NfhuNA6DG`CD-0alFwU{X}whJD!QXw_tR=GbZo63D57q z@n#%5aqPk|X|J=#pHJB9C7t+0c6O>WFXptS4maGLxIbZUus7n(jn3{%$=SC6zR|u3 z@J-Ghz|XX z$=Ta*<&E}sT-om2hP?Izev`ce@D71*2mEGxC*Yj|-vM}+JqdWy*^lSn3V6!i4S2V} zZv*@mdk^3}0>2&bUb_IeAn=`l_u01szE$A60N-Zs2fSb41AuS0?*M#}#uzdvZ5rGc_K58EWd`#MZ1n~X#1ArfJj-dTV0Ux&?1pJ`D#{j>>ehBbG z0^bk#VS5JfjKB{7e#Cwh@S_4B2mDU^F~E;G$C2NIfKS*b0iP839e_{Sj{|;O;D-P| zVZRITy99n1@RRl|;8}sU0Dj7T8t~K3?Z|Hi@H6(i0l!<|M*tV?65x`Q|ERqMl=4oy z3`&`c(TuhD5TJ)~+>DVxipLp`V03_{Dz*)pdJH)__B?W&mmE(3Ua(ICKJA=94Nd~C z+KYe}1wIA%j9mj0({=S0QiEm_-Vi^b{lZpIg0u`1Nc4mD&SRt-wpVp{Vd>T1ug>qPWw5)&k0-t z{9gNgfZr!@8So|hdBD#LJO}u@?DqqHzrYp1FW4^veo@CWP<0{)=D4&Z-be>dRo zc8;Mw^MF5Oe-GgA5qJUc_uAhF`1=Gt4fwEqkumu z@EO2AWPc3s#{{kce#!n}z&|YT65x;9p8)&`f$M-jX@3gvrvz>Q{t^2!;L8Fp1HNK^ z8t|uOM4ScuqxNS2e@0*h_{Z$e0{*PPF5u7Ep9lPTft!G@+Ft1q|UsjECRlJvT8%vI4k#8!; z$)9#=%Y3U{XQn^-b>kQpO?youZ%}g0y z%687S9Gs*dE~_)G<-ay?17NoJXxVkA)dJ3kkJissRinP-)SF(eID=*#YP9OMXYrJo z%n_W*c*gFRjeReh`*7^W>6>3R-tw}s*BdL&RqKuAVzW_X{il*%vfgN_btp=WBk@Ly zt#Wj~V&Yox$8#QsakyC|tBFCHr*I2D=LT$m%YpAkuBB3?}wNy8T zXHxUc1ewtup1c9cRMs<{vz}RZJaeJxSqn`&W92I8syZ*U$%ccXS~VLa)XakbLA6Wy za$b>YToQFz$gwbU)dI~F>*Xb;I$t+v7{fGRN`G?Bp} zg#S^T*v65>GY2kO3yF)V)zsxg(^xgtx>eJL5Lh>w=Bi~UFD0)SMuK-&lb4gca>eA8 zrnPEbf~b1Na3>#xpnA!8pMh)mZCXv_cFDM8oH5>BiimgQt?X;3aEL-AlSS zOEp_4#LMB_cIL|{)U%o(0uQ8Dcg`1!Q)w@`RB=6vBnjSCb{*Fhwv|v5 z#Fm_mHepT>4hx!FOk9Fgu!>{KoM|7&q+4&uh$0K*D9cw}h>I>}vpsFr$)NrVU?)N%09BFA&lFa2pe6y>b6N+DNR~o1pP#&`##`274>6Y=Xri>kQl5oXv7Q z4I4=ww%KjCmYFy0o%SwVyTykl?I}Qc zdjtfyS5dew{}Rae5N5T`3ArK#re7&_a2eqU@(xtXjK3A>^ zyA%eF%XW2s9*;vH;w0Sp`h26M@=N7KYC^nuASZ9_g~WA0DsZ55qPf&89muKS|UOi1j=#5gSv2fl`bUmGnG*5)X7-j`Ajl zgQSKFf^-OYq$TD^H5uHS3ULJ;OPN_3NqW?{?~ti=Ny5_#ssK`kYM9ow)^qbdTsx_X zNJWs)7s_uYnHRL*X68S==*#y7ok?ex}|y zFO!s3rt(uGiUOH8M72y$OK$}%9i}K=%LMNw+tp<+1G=E(sMvE}5-Kj{UQCLf1sz>Y zrL|DOu9hd%-SQX+U){%RowJ*W1mB74?rtP$gA)9Nk%k0s8k-<bt5L75bcmg7_z(_GjqW0n_X_Qxe+n1Ti?#tlU<~RS ze%);X8|p^%rE$&x%)4_;zM~B)9%UB7)?-gPdA{!14rPQZoUEeD$haVb16}J$yT5pVH|@KV9c!ur;_mn z=9@2-Cc!86Xl^uBD&<9|BJ+L}nfYo}JX7YUC2@)>(3``os?A-HVSM`nd04Hw1ZiJt z0Z6P|e$8MX)7CEzd$NEMaa;hL zN$s*|31cClKiz^Zf_LE(*2${ z#Mg@yhdMNiB=X~NnE7f=jQxFuHlfr-XtO4I^900g>Jshhu_^{Nu`yp&KmhY3ddvBR zDy*I&ZK1P(TqqoFE13PA3zSOuUWjUqHq8i#?9xo5?)cNXMj~v*;3IYsECz!_27-%9 zQZsj9eCfuN#fSeDTR|cov%rYW_K@I$ch)qTT(!c-X&TXFekFlMPh2!XxSWZ_2u8xi z>?aE8QJ~=g5_if+$8&-X^1z5ddSZjOiF!>|!V|QN#-{QnY!;O>yz84n!9F3EfQ7CE zVvD>)?z_~*J{0P&mY6h=bf79Fgwus7dF(5A)Ez-$J~xsk2~8N*EB>4mU|p2C4!jX( zJcL*{EjGa(7BKshP%!k(%dj6@Ov2!iT;yzX0}Ld|B4(b;7EFDqD+w_onl5Awl2dsL z=9b4CifMuaUpEyD3T27G6xfw!=mFR@Rp7mlq$t>dho7(F4faXkAn`}8Z=bgNHbtT!7S+eNrWAQt{2WblsTa;EQnVltXmV}17`%b zC?>CSwkbmiX@E2N%5lU;1pnX`RQ$aR#FUyd-_)~(sM)vSx?=AK^8~NLCfTqXS{d(@ zR7CD6!o2X?c+4F~l1p1Y0~s@{Z&|7Khzu7rfsY;YvShCcPNR-Fg7ZU21P=lTi6FU} zRBu8@lL#O_tXe_@Tks2)0ECm9KqOm05*A1z36iivl1Ta_k!%-E_|y>71!Vdpg@i<* z>Ds9mMDCvPk)$r5Hd7S`HZkEAUh~-! zboE}kSai-7i~k$9WEz0{ZEP~z!%}^HuR|$gbxF@jzCZ=SHZCV#NX#QZ2Ogj7i-|?d zgO@NHUPM)2#Mxq!D%PrjH1$afOe{U~vbiU}CR3WyZ)c`Ek#Kf-X6z!&#CQ!Dc@fxv zu`UUnDJg;xWOVYwmyLViI#r|?SYOS;t?DM6s)w0KL&cmnbT=6rtP=PB18%s)w)xx+ z_(A+eDrZ?0i-o&u4Op1ndkf*?FB_9D8&gx3XDv3W^)A)O$0}SSYQZhi)+r@Q*-|Ww z!8+$}2BmI+A`_}H`d$Yfz}$rv1i1$Q*r0<&AQGuqsDNZxp1@y#T&3T(-|f=UF+ zbOOq>_G={;)9wzrD=?K}ht7Tk=wIfxuTT9Dca;`NWk)iql-25jTF3r*OJ8-0>A&yf2weYL|aRl;g#K@Ur zMthSGDf5d6RI*oPWP`e#!jG3aRfoMzq-FIaE~ponMC0K52?|wO%<5%;;=YJh$!CO}>mg_KKh!4ueXrTE(TOE?s zdQ&}4P-@Fb(HlApai$DKSb5pwqVK>|PPIU$Y|o;hLXl0Vb4)(MgaVvuBk`=cMx&-y z314LL91}7WI%Qx?JB{)`z-u36B11Jwh#6_$0#4i+B)J5v4&$^vWYG&-pcBIA{>qqX zetRrwzOuo}eaqYwzmmn3ZR^dU?etW@OEEFLX)HIqVJMv*Gbb!WW(rj9>j5N2a*6y-F^-6Q6%Z30NN0E5SWtNi>#@xCU}NOSFT8?I1_25w5K7ukbwKb9;vPJPaxViYhiBj= zw1+@UIWKt(VH+1vr<3SavZ-35v5etW(kfkvguxEiU`QFXzv%FV$(D;SB?RY`WjF;6 zs2LanOSBLM7i6j_P3_5-_%2MN$W(HHrJUt)3`%L*E+v^kRTfH;!7LOkGzxu|wcN{B z;HQDkS#oNwQ!If)h~X-Hj}1aWl9@bH%FjV?Jc9zY5r^;TQREwOU}MGnLskK{0!J|z zPIEQh7k#sfhRxjWHXoiE1F#;fXIGa)KxrUr2T zUI^@kwqHa>j}UERI1%P=YNTNb;Jtqi%4{o+BpZQBKpDq0(MgYgd}OB{E>~2e{bj`P z@kIMA#Lvm$Mnio#xCsP?IC&U|rJ@uYP%?yYO?yZ6pz|FX@y7xu2PPD;Kx5M3!~;WL ze2nYNdXH7Vw(M6upP&cDMP;!@UN$IH28w@&%trk(kgFN=ukcK!bLb9zxiqET?hzrK z+^biA2@gNn(W|MjS9$OC_G&O4IqAiWP2P+(Fz81@h{6EGI1WHgR-hs9>l_BcFywA9 z+e74G?H3-Zo&joogq^R#e}yPO#1^nO;Y-3PgRsOW>6C4D0AcBMo`8SxCFu-u<5rz- z+J1gyT=Eonbo6~VnP~o1COtc7z=)G+^c3F| zZq>JM{tX_P@8}y?$H}HJ;&`ur-_U~7i%Buo1$fVLhDH2LmUF6|2L3bN@G;^2x(7DT zP}1Ziqh|z|M|G5W0rm#rI0*3MRN({qUG-}yc1C>xX-~%cZ+V05$>BtE5C%&sUhm(Q zgSgwfEs+4pC>kH4l)#u8(iZ|8(LT*+ttUVd?Vmmo=mgT)Y#~V{5{u~5JPylo4LmoG ziAe%T$U=0;OEBklzLY-?qN+wlFDM!!2Fy`U!n-8G(h0=kfip?DbT5%|^~_r+1SOSi z!~h>Skl$apt8lx}FX9O^z7g6>YrmM_Tr-4!2i&NC&qQ;D0Yn$kn~+~$qWcZx)@CP- z;6yqp?UNku^zSCJvR>T;)=hCPV&t3`DXOuf_#1UmN)z9ixcJ|pC20|-8)+3pY%d7f zZZF(gxK+@W$Dd%Gf$8v3+9lsV$et1`2SZ%@W;IQ_>>}IC1}{bT)Ni7B>OUYED2()F zy?up|uOiDAI>vaKV?4`o!F&A?PKkUi!Xy3*UP}}sx-5p`%<;N}E3|j@K{An6)z3gQ zUSQ}T)dFvX6dwcvdSmdD!1qyHs={SbUx?HP_1kz@{YNA-QIk%#!%ZOgUbUueAJ^`zy89~jLWo^eaLfS8|iI5-8m6gOl=?K1{Y0#*F0GSZ% zMhi+G+KI^nyaeW*{G>Kgu&KVElO`M0bf-`eZJt0zzK)4#7rehD6K`OM(DP0O^RdLy zXz?=;R`4r|Bh6j0aCvDTBBN9pZG)655yG@4A!@7cPddbNs8dRhFf5VIOc+0d@E6Fs zDc5EY;WbHMipg#!Z($PI6QYUfBfKFa z<6}JQJ3M|DcR$xLMGa?-?c|uevu3Cyaq%FIYuk{l9V&svA+Xiawj*ZF>FG!;Kxfgm z$O%}eu~RdqrfyfU5r^Vyl-mZT+T;dA9IJvd(LAmeeSh}=F`Z)v#woDo&&5If(XVS7i zM3!GBr;j8;;q$!Szl{fQcTgLSBo24!^Ue9iuUaX%}(lO z{~Fs)Awf@dKgY9QXA<6+8Kja47EbYbF-;5>`~MiveYJzUMbU=P&pT_-lETGIfR48Abx5!eYyT{vY}h@JK~DUa%9lBg@!(M|eb#4aiIz2uRDnpU z-CwvP%mI&(zmx*>$6^`<0Wr~**}*Hl6FqR%UvTp$IPYREa2&f7>)hrak>oJrC(^_1 zQ8K|oaHqp@%dQQ&S61lwF;#aS)}c`IIwU9P1sP4kWh5*UJ;hi~E^-6{iKW6ZU8BfL zxRJFad+>7Tpki6x{zgzcM2D@D+C}#UtOXK3pExJ=$eU)~PcreC$Q1Kmc_xKMiEt;f zx!+^C{%AVpPUR|6w?Thl61l_Y3)o5bfJy8q_L~ou18NSsi#3#Is?n{D6qI zID$cnC3qO5qoTczdYMDjI$Pa-^V*?_wbWcG5RD)Nn3xD$MAVU&Qq_giP4#DN;-4cy zY!KX+Wdtt44JPDp1XnvkK`dNggAe0y>qzLCXILErAr`SV4&h-EhK_TK!D7u6$F~kn z-<-H;wh`2fCo-3_j7P-TkUqO)J^}x{m1yQx;48S8G!kvBHN6Dy`TG!1a54F8^1N~0 z4<;FwMMZkm(vXY!b*^y%!6aWtb-W3Y&nnI`#-3hC?h2Kw^|-5>DxE9s9Xfh}Pr@yI z)sL)Ut36}hGuABW z%?-tA?vmkC+7N@|2UA)uqBQjvtSu|*t&h`K3wss#Bz6Ozm}Md)_6?r>cP3G{NssaF z5SVEXQksZJX(B{tCo!qN?94KvgulWKgZYl(B%%bN1KwLh2T5E!h~wHFNCwb>&z2w) za9J271PhEw#3eCumWM%q4?*LC#<83)YrPG#vv`9bI0g~H^t)3d&`JW8j1poJ;V{!y zFtL95(=I1k|MGl;OTIZZXcJd#;a5pYkR@M?wu}|TiI7FfBhiUQB3n!zqBe=F^y5yvK7>CRw z;D-pPIwyf+Gu&GWK_iTzMq~*bKU_`9b1dk>QuJd81jElff1pc9F+Ju<#TjfTN>PvC z1Tl`pe>6P~^!*D*65cd;F8o#GOnX3N78Ix1gelZf!QGC(B%p&h)c-;Pi90oO;xT8w zJ%xme|0>W$89~ebak0CG$y%X!0&y`L>ew+mBj5^&c?v6|&tqX4<^%?}jC(1F(-78gM0=;ODrJtkcd%_T*?a|lWMre+~n5&zWDXbXjBDi-brf7B#-9LC{JB9ZOt z5=+KK3yUcb3wg>F(UGEtH!RDe^&$uL!+h#xCQ<$5 zOo-<1apOMLY&%Z0gC}QfHO-`HA(Zf27J>`22rdNlEi*O#Pm0g4VK$-B;ZEG`FIGT& zgg~Kv_+&K^qY>tj^G1TmxFZO&YQJGRqJtnb2}2rjU2sGooQ<(q>J^kYXc#4NUnqDF zPCDgCHSAL_;=!S}SQupBWY}>5zd;y#TFZkE;AO2<+|M&+Dkb+Fhc;0v4hyU{;6JX; zX>W|TFB+H|klmo5mS|Q!#ezFKyJxR{3(vh9Rp_v!Z8H_Guj#!EE*`|;mXP%7y||wk zP6NF^gWhXFYpL8ZfqN^A+F98+CQuZ{phB#J0Ezt=AV7}WKr4v)V<@Km%M37LcoXd7 z+)#_s9u23m;#04!5$gbApeUb(5r2V?Uh@iiY(vXEowX7xz^g$#7Nwt(FLnA6pfJVw zBA%?q5~c$lEt3XcrNAh5316a=6`-6-NO|gO<~d(Q;n2-KFB$TCDiS)&YU}>Vm6IK>M#y>8xl@;h`Jw=#u-;IlCX>b zI63QYN;Y%sBqTy9ox(28kK;!o-DAT++Q|FwK>;FdbEPHLSH23X(YUTpBo}M5(fa;+ zyNo@t)plv{(Rd_fzh-+9A6{b3Lgg(*tHMr%X3G#+GfpW89K_-FQ{v;}RCsL)5s|q- zti$+(MJeRDBbw(*&NUL*9MeovpUubCEz0

X`t8sSi>+9dGXijJUQjo%eTsRzh_pEfPbZ@_&{SpzZdHe)6!}D9$ z)xiT4v`A)`u73T!JOMm>ft3&~BDC`FHWlxz>Dy2Rdu;<$)Ua?Nh1mLo!J6e@4Q>6f z^Pqo6yexE8TTK14(^SjsU@NJ}(UhO8)@8jnr0eMF6gdB6sq~)r2#<%khQjw;S?T!o zxpF&y5!1tzmaCHz#f|`WIJa)oKl^oH`v#K5MkIqqd=i9k7>78&J1IhsbG1Gi^P=ck zvhChx?X;l`7l&no1oai>`6oy^1Uga{$gxg%af&O@~Z{O5AG|Kz^5nX#u2PVW9w$ z)6wT+sG65PgH42GDZvWd<~Y;a3JBNx2Fu@x#LL;ZtDjVl;ex-ASgVS^%*SpbPW~s) zgwjGK&l~Ni&To_4cHprMkZ5wIiDl)1lQfq!At-09u~$HZaGGY5ihG7s@Nmap$itq+ z<<9xZ!S;@}=?Aa|5yV_3BCFkmn{i=?4sxZiq3ShnoHGjb zh+@eYIG)(DXV=M+v2}_jY%G79MP0PZA;Jcir>f0N2Hx%K;G`9hLrQoRh1(dff>S*- zOkuEa_mxF#*LzWKMQbglxl7CC42J9h0wfZ zEsm%|%~3o7Gs7jAY4O~B&9Tet_$Ka%5w|(69s5}7p1Oz)o-ePrIb0_$qXrnR(6uDz z4am9Z-<7NN5xH*R`kCPRqQ&RiS?pJqswP&`pE15CaKdg}xr9NQkwJ=bS2Hr$GtXu? z*fBW08)RE`jH#7+r6@s`_2#jYTq%&4y0Oa~hpoh`E_Th5#RrG*gqP8Pi;bSa*j#l7 zF6!<`AJ`CP(p;%YGT+FRDJ`L4-lyjxW*pfDZR z_7cxTkP-1kY#$UXwYYjK?`|bH&9lK15(m>?uqlDes;48p$_}A4oS67bPo9A66Ydct z-8@0>VhukQI0GWrEZNr@OFdv_<{sAAlmdHz(0e^Pn|lE>#OyF+nIQ?)YkzZkd6~;O zgEcMmK*r-83;9xs4#`rlkTjOq>U$kGSNhc;8n&uB~)!DkXnPX33T@mYFn#Kq|P?@rQR32XO=*T#J%Zc^@tZlthjrp6u65 zM_5?yHuWB2?DrTIy(S{+6(5LIFG3jX>{2O^Oh9GsY0#yPM-;-WH5RIs*s3lN5ok%c zW+BhE#oTcc%tzaJu(3JTBa=V-%aTh6g`@c#6=gZiO5|h1&Qn-?4g0yjknUK&z3+vY zNC!oU(8^vQd3!)BvL(cj;glD9WToOhnx3EoaGwquxsOxC$$6uH0FDvB|8A=8E zULZYaC=3`DIaxZM1Da@ysXNeiN|cL)YlQYK^k%r>Zb?g9!J<>?ER55&3i2dnNDkqE zfA~tMZyUoJb9PvX0-Tf>@&maPloBoTcHqp$GB(X=7)y(Y3osxZ8xuG{d?&2jV2303 z@)GC-5uAa>2W@V*6j+*KE^QJ|eJ443ar#n)P^+2@8&y2BR7kK#2FT zMxhQa0YX`dI=olGiyeQjmC$_i9QLV~Ws_pOxjvzhw%YaALue8+C$_n=Td7v}a=#qm zF>@=NCFlWj<$Y*pj4VU&HIXIpJ%B7ndy!>~ATihXBS^)`yEifFowZ~T zNe4@nNr-Ac-ih^hD9aSt)f0GvvJ8oDOC*Go@Q9jD!c(_*W)+dn9k_9-gLK4vBc#K7 z{Yi&4?ltelU4!uH1Pi}8`$Z6DKOrVwVKi74D?$QSeqaYooxrzuoObcCAan=wU*6?4 zKgb6Y;7LaF%PKRH40jk20Tz;QFdtM>lKIx!0 zY#OJ7i2dIz-0}==f`*!e{-~&rR8WiXkLN6so=f3Es|gXE5hq7eqju51 zR2^U~g!)3`jP=}nc!`zl?k9F2TJ2`qw=b}V*)#fEuZkow=u)w~I^R2jhhDC>r z6D}(LLjVi!Rggu;U&uJ`#pUZ!f0tvNv$BqM^c~_}`f#IODL32i(!WkUSa7Nx>j|wy~r+7HliJEd{>K( z%b=^Jhgb-6JR)SBcGW-WQZf8JD)<3NtuV&uk?IGQCzK)=yU<~`Ch-WD{nYK!)4|>* zSRuq*z}m33;a;@X%lOZz`vCQ0wTv+c<;OOFm?1NCvs##dFDBc!fLN1=>e&QSr4_hf zvFAJ?Xjn8AVpS20o9-@p1{m+Nn!1=gyZ#Btk-mK&{csVcaNoY47U?qmY+6AL4i5Bwo3%r1??O2n{6sAQe6U z1s@N#$b@{CHqHNQ4F`tq_PF1J;lQ{q^+pnBM8^^JlA-r!oZQChL#$coGL#)+AaC-{ z8v4bPT3MzXK8Sun#}E|6(VJEWkyU$#{=6F$lVAavNP-=T3Kt0zpF&R2*}&ZpWOT|r zA$W*Jr<}DGV5vzy+^V%Fk?;e9Ro@1}1#x;L(efe-D=MxkF~wLZfq2wlHgN2=%AZ$iQkx{59*b@IOh8?VtYYov}K)1GA? z#f@JG%O-T)va`n!d#PA~x$9Rz`qrP>q@u!8^s08f%>p`}OQi5!MEQ)Zf|VN)@HR2!On3yK2M zfTE5g^WO`LB6R(t9&Ma&zd?%fF}sY9amp9Hq{Rg_I=IXSQOX~OWfEFbW+1*@yA@dl zd?;M9PP4wRqUePx5ZHnx>y*cb_yIq=z2U@Z?mSYds!9t+1Uo-HbEM!UG0F9tyC@o= zV%iC}9Vfl!t_GZ9L6DFyyJO|3%rSq4S2QpFbDn*TNyHh1S5bocZ)`l=U5WMx>e)FF zTSNmdHy#sfFJ@XOOzM&g=k33eue5w9f zs9Ro(IyHkb`(o;ELQD-m(yb~#!WSd#%9)_}ow)IreDP5}L1;~jajkPYm}xZIH_kW< z5bR~_M)FfZQG*{agiau{zh!a4<_W!q;+%!{%@1RYa2+RXZZpF=MsCjWW zpL|(Ld`>(8PEVGGfa z!kb!VfbIyl6}22$%7_AWi)f?6J?xRNRBh}23i_!6wG`hp#)=!E9z2Fd;0sZ82hV|` z^m1LcRBRsd5a;w6pfu$p9V4T*nEU)P`;M@QUG#@k{sCu%|;!;!YFQfaM z4`4Gf_M-Nh;!EZDj8P4dj#!w=xBVrrzPSik?nV0gp~9o`38ccja-3pB+2JS<{-(>- zg~5;KoR5!N@^sVyHI?xg<)M2FzNX+itRZDcb>MuFedk5sm(E4y{cUYz@f1cb?71tQ z_>fms$T-C^I#U5A!#|!=+&YXyM3g4fdw&0tA2xo+;c|Ufh)CIKAwWIH!71RC2rTtO z2bqG8UT(29hcaRxnTRBX2XSLRiHQLR`g_Igjq%?(mt=Pm&5)N%Iw2sb>;*XvbGQKOi-u4P;1BRmW)b~ z-S;MWk1MCSu9`2jmP=DaqgYUw43YuSI4wSJ!AT@O^UIWre*87p_-LbtFE%HMuE;*q zPi(#qd8?Cnw!J=RQK#%YXeYTYBT6JiOW|VI>@_14(cHUO?zdS-LTkDyTvT%mkM!>* zESm4^C5dy93E}WK@d(1@YG5x9K_WVqllC ze=p?D?!8lGzbM&o_N{tQmw*H5tbSBLgz`9y!)2^pLtW`~c5lN^Qah zLHObmD zEO!yrfQbISMD>xNcGqzTmx0V9tXsJB2AjJEt2V~C^oCDVkXy$eu4zH~%{YNy3^qjx zTnsnQC_fC|8khdCjlTY*cEHXdfHBmOlYHkM39`1f*B1>qlkEw%KPZ*-m-ZlPVD}c8 z9Q11YaQ8N$mY~=`I1B_jScCYP`GQ|>?A$Q7hyY8U`X0azAX=)^vX0DdT9nWdO^|Ik zIca$c@`jWe2pBR~BOC@R3`z(59b@wNo0bj3CON%N?!wJo_|8}J!aci05!f{qeZY|q z>SoE%`DLroV+=>{zvRkE0i%qw%yD&s5$j_9A!f(z>Jr7VAi=^C+ zfGKP-=bV~kGX3ar^ondSS1H4(ijfTIFSdz_7F49SSp~RW zSrFti@ORvkO!P-TLsu*%w{T+{Ev3z~4&< ze^V2!mL~eptiSy*`Ii0^S|NYP;Wm0&^nrvdo4pDl2ZYyM5TYt&e-OQqF~6#T?&=^O zd~!WlxF{yPa=rvYQXqIPQ6Io3Z@W$M8GtYfLbVWKgszJ)uC;;nwB^u$pwG}nQj-A% z*~q#T7DVW}1*Hx_xI5Dxm7mv8go8|1!XgN*DIytgtIv{KrM#4Ebl%Qt1Ffga8cjP5DM2EgEfpM2MmCFg9VzCv{9%-SlVgWO_3e-hA<)m zLl5$QPwraacS&^}dT?LOgZWjAd!8y33iv9Xv^ffNjYO2&bet=M^*nk@Z^s&* z4cvdVYbF<8F%73Z8Quaif1dOgnh8d;{Nw_!_oYDPQ~wP|F&%IWgKl877pqD+hc|sd z&u~OMBM1CBS~UMM_BtXhLAw$1iM~k=lRxvZ^~_ZcZ82eVXcX}&$YOVLS~x&c$^m$X znJGNP^a=Z%E$CA`sW%#x7fPYj=pcI7Y0{w+@9-XNoAh(P=PAE7le?l!F!KTxZgcV^ zcSD*&-?F!{lS{^bOI3lHfnTRN#a@cSJYVY9X{V9V4|On&EV_(WuiIstg#*|<8rS}6 z-(C}$NO62)Cn;!C+@xHALp;$?*di}JNlBZ7iK<5-dMhgtuS9s4-WG+sog@h$>epXtD13OMA|D1f&;+;j>v4Ly%{pqA=B5AH#y zp2160^|yifMXG)U+aiH|v99u2ZCAZpo{O@N4M2!qE@v2H9PYp64P zv8~?1!nU)9U+3d#e5@M}iz@|tB4JlS|GOpfyFD(U{Nl-6xRA+YbUDW-ss6E zA3a(;{J_z}?>IhlzqejzRgCz*XQGP_u|V1rybQkt`FL5$#~{5V_N&2{IzZ=k^&A!* z(b>wgB)n(1*|6c6vXOw3>wQYO=w703u+SFVlKWw4ZGt4uZ2+4^zU+EQI1Lm-%+yvU zH#1=%f@jkCDkpe#2QPnv$xbGBG1<#xnu+Mc;=>ZI_i0}HF(#j5@)WiL69@VgWH0e5DawGJ-WS zR+6iwf`5AuY{K)&SFB8M&4Rw0Hun7E_{g|5wtnkP6T^w`9N#~l#=jx_%ZyKq=f+2I zH;Z&ku1(--7H2n&Zyw(?zJ7cip1lR>#_?gKW8)*{ja+8NV>`YhitD%HsnPNAaeR&x p(CGM9yw4JJ%Cj8)1!ayRp9vf{A{`pH@Gmod!}#cy;hdE={vY?(jMM-C literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff390deb7eade8212cf9e8d11869ce554540cca6 GIT binary patch literal 1970 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 b=i!!f#84x89})yYqEMnxiT^8~AI<+?xtAm? literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2828b094108a40c777de3206c78aee1336704c20 GIT binary patch literal 32163 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 Hi@yCI94=0u literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5e5e66eaf36789b31384b097b4644a29343226c GIT binary patch literal 11982 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81284a22f9d3e63d56e6ae86e4b00539466a584d GIT binary patch literal 6704 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 literal 0 HcmV?d00001 diff --git a/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc b/server/venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..132c44035002159931422b3cba050cb893d43bfa GIT binary patch literal 24523 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 z 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 bool: + return t.cast(bool, args[0].is_async) + + else: + + def is_async(args: t.Any) -> bool: + return t.cast(bool, args[0].environment.is_async) + + # Take the doc and annotations from the sync function, but the + # name from the async function. Pallets-Sphinx-Themes + # build_function_directive expects __wrapped__ to point to the + # sync function. + async_func_attrs = ("__module__", "__name__", "__qualname__") + normal_func_attrs = tuple(set(WRAPPER_ASSIGNMENTS).difference(async_func_attrs)) + + @wraps(normal_func, assigned=normal_func_attrs) + @wraps(async_func, assigned=async_func_attrs, updated=()) + def wrapper(*args, **kwargs): # type: ignore + b = is_async(args) + + if need_eval_context: + args = args[1:] + + if b: + return async_func(*args, **kwargs) + + return normal_func(*args, **kwargs) + + if need_eval_context: + wrapper = pass_eval_context(wrapper) + + wrapper.jinja_async_variant = True + return wrapper + + return decorator + + +_common_primitives = {int, float, bool, str, list, dict, tuple, type(None)} + + +async def auto_await(value: t.Union[t.Awaitable["V"], "V"]) -> "V": + # Avoid a costly call to isawaitable + if type(value) in _common_primitives: + return t.cast("V", value) + + if inspect.isawaitable(value): + return await t.cast("t.Awaitable[V]", value) + + return t.cast("V", value) + + +async def auto_aiter( + iterable: "t.Union[t.AsyncIterable[V], t.Iterable[V]]", +) -> "t.AsyncIterator[V]": + if hasattr(iterable, "__aiter__"): + async for item in t.cast("t.AsyncIterable[V]", iterable): + yield item + else: + for item in t.cast("t.Iterable[V]", iterable): + yield item + + +async def auto_to_list( + value: "t.Union[t.AsyncIterable[V], t.Iterable[V]]", +) -> t.List["V"]: + return [x async for x in auto_aiter(value)] diff --git a/server/venv/lib/python3.10/site-packages/jinja2/bccache.py b/server/venv/lib/python3.10/site-packages/jinja2/bccache.py new file mode 100644 index 0000000..d0ddf56 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/bccache.py @@ -0,0 +1,406 @@ +"""The optional bytecode cache system. This is useful if you have very +complex template situations and the compilation of all those templates +slows down your application too much. + +Situations where this is useful are often forking web applications that +are initialized on the first request. +""" +import errno +import fnmatch +import marshal +import os +import pickle +import stat +import sys +import tempfile +import typing as t +from hashlib import sha1 +from io import BytesIO +from types import CodeType + +if t.TYPE_CHECKING: + import typing_extensions as te + from .environment import Environment + + class _MemcachedClient(te.Protocol): + def get(self, key: str) -> bytes: + ... + + def set(self, key: str, value: bytes, timeout: t.Optional[int] = None) -> None: + ... + + +bc_version = 5 +# Magic bytes to identify Jinja bytecode cache files. Contains the +# Python major and minor version to avoid loading incompatible bytecode +# if a project upgrades its Python version. +bc_magic = ( + b"j2" + + pickle.dumps(bc_version, 2) + + pickle.dumps((sys.version_info[0] << 24) | sys.version_info[1], 2) +) + + +class Bucket: + """Buckets are used to store the bytecode for one template. It's created + and initialized by the bytecode cache and passed to the loading functions. + + The buckets get an internal checksum from the cache assigned and use this + to automatically reject outdated cache material. Individual bytecode + cache subclasses don't have to care about cache invalidation. + """ + + def __init__(self, environment: "Environment", key: str, checksum: str) -> None: + self.environment = environment + self.key = key + self.checksum = checksum + self.reset() + + def reset(self) -> None: + """Resets the bucket (unloads the bytecode).""" + self.code: t.Optional[CodeType] = None + + def load_bytecode(self, f: t.BinaryIO) -> None: + """Loads bytecode from a file or file like object.""" + # make sure the magic header is correct + magic = f.read(len(bc_magic)) + if magic != bc_magic: + self.reset() + return + # the source code of the file changed, we need to reload + checksum = pickle.load(f) + if self.checksum != checksum: + self.reset() + return + # if marshal_load fails then we need to reload + try: + self.code = marshal.load(f) + except (EOFError, ValueError, TypeError): + self.reset() + return + + def write_bytecode(self, f: t.IO[bytes]) -> None: + """Dump the bytecode into the file or file like object passed.""" + if self.code is None: + raise TypeError("can't write empty bucket") + f.write(bc_magic) + pickle.dump(self.checksum, f, 2) + marshal.dump(self.code, f) + + def bytecode_from_string(self, string: bytes) -> None: + """Load bytecode from bytes.""" + self.load_bytecode(BytesIO(string)) + + def bytecode_to_string(self) -> bytes: + """Return the bytecode as bytes.""" + out = BytesIO() + self.write_bytecode(out) + return out.getvalue() + + +class BytecodeCache: + """To implement your own bytecode cache you have to subclass this class + and override :meth:`load_bytecode` and :meth:`dump_bytecode`. Both of + these methods are passed a :class:`~jinja2.bccache.Bucket`. + + A very basic bytecode cache that saves the bytecode on the file system:: + + from os import path + + class MyCache(BytecodeCache): + + def __init__(self, directory): + self.directory = directory + + def load_bytecode(self, bucket): + filename = path.join(self.directory, bucket.key) + if path.exists(filename): + with open(filename, 'rb') as f: + bucket.load_bytecode(f) + + def dump_bytecode(self, bucket): + filename = path.join(self.directory, bucket.key) + with open(filename, 'wb') as f: + bucket.write_bytecode(f) + + A more advanced version of a filesystem based bytecode cache is part of + Jinja. + """ + + def load_bytecode(self, bucket: Bucket) -> None: + """Subclasses have to override this method to load bytecode into a + bucket. If they are not able to find code in the cache for the + bucket, it must not do anything. + """ + raise NotImplementedError() + + def dump_bytecode(self, bucket: Bucket) -> None: + """Subclasses have to override this method to write the bytecode + from a bucket back to the cache. If it unable to do so it must not + fail silently but raise an exception. + """ + raise NotImplementedError() + + def clear(self) -> None: + """Clears the cache. This method is not used by Jinja but should be + implemented to allow applications to clear the bytecode cache used + by a particular environment. + """ + + def get_cache_key( + self, name: str, filename: t.Optional[t.Union[str]] = None + ) -> str: + """Returns the unique hash key for this template name.""" + hash = sha1(name.encode("utf-8")) + + if filename is not None: + hash.update(f"|{filename}".encode()) + + return hash.hexdigest() + + def get_source_checksum(self, source: str) -> str: + """Returns a checksum for the source.""" + return sha1(source.encode("utf-8")).hexdigest() + + def get_bucket( + self, + environment: "Environment", + name: str, + filename: t.Optional[str], + source: str, + ) -> Bucket: + """Return a cache bucket for the given template. All arguments are + mandatory but filename may be `None`. + """ + key = self.get_cache_key(name, filename) + checksum = self.get_source_checksum(source) + bucket = Bucket(environment, key, checksum) + self.load_bytecode(bucket) + return bucket + + def set_bucket(self, bucket: Bucket) -> None: + """Put the bucket into the cache.""" + self.dump_bytecode(bucket) + + +class FileSystemBytecodeCache(BytecodeCache): + """A bytecode cache that stores bytecode on the filesystem. It accepts + two arguments: The directory where the cache items are stored and a + pattern string that is used to build the filename. + + If no directory is specified a default cache directory is selected. On + Windows the user's temp directory is used, on UNIX systems a directory + is created for the user in the system temp directory. + + The pattern can be used to have multiple separate caches operate on the + same directory. The default pattern is ``'__jinja2_%s.cache'``. ``%s`` + is replaced with the cache key. + + >>> bcc = FileSystemBytecodeCache('/tmp/jinja_cache', '%s.cache') + + This bytecode cache supports clearing of the cache using the clear method. + """ + + def __init__( + self, directory: t.Optional[str] = None, pattern: str = "__jinja2_%s.cache" + ) -> None: + if directory is None: + directory = self._get_default_cache_dir() + self.directory = directory + self.pattern = pattern + + def _get_default_cache_dir(self) -> str: + def _unsafe_dir() -> "te.NoReturn": + raise RuntimeError( + "Cannot determine safe temp directory. You " + "need to explicitly provide one." + ) + + tmpdir = tempfile.gettempdir() + + # On windows the temporary directory is used specific unless + # explicitly forced otherwise. We can just use that. + if os.name == "nt": + return tmpdir + if not hasattr(os, "getuid"): + _unsafe_dir() + + dirname = f"_jinja2-cache-{os.getuid()}" + actual_dir = os.path.join(tmpdir, dirname) + + try: + os.mkdir(actual_dir, stat.S_IRWXU) + except OSError as e: + if e.errno != errno.EEXIST: + raise + try: + os.chmod(actual_dir, stat.S_IRWXU) + actual_dir_stat = os.lstat(actual_dir) + if ( + actual_dir_stat.st_uid != os.getuid() + or not stat.S_ISDIR(actual_dir_stat.st_mode) + or stat.S_IMODE(actual_dir_stat.st_mode) != stat.S_IRWXU + ): + _unsafe_dir() + except OSError as e: + if e.errno != errno.EEXIST: + raise + + actual_dir_stat = os.lstat(actual_dir) + if ( + actual_dir_stat.st_uid != os.getuid() + or not stat.S_ISDIR(actual_dir_stat.st_mode) + or stat.S_IMODE(actual_dir_stat.st_mode) != stat.S_IRWXU + ): + _unsafe_dir() + + return actual_dir + + def _get_cache_filename(self, bucket: Bucket) -> str: + return os.path.join(self.directory, self.pattern % (bucket.key,)) + + def load_bytecode(self, bucket: Bucket) -> None: + filename = self._get_cache_filename(bucket) + + # Don't test for existence before opening the file, since the + # file could disappear after the test before the open. + try: + f = open(filename, "rb") + except (FileNotFoundError, IsADirectoryError, PermissionError): + # PermissionError can occur on Windows when an operation is + # in progress, such as calling clear(). + return + + with f: + bucket.load_bytecode(f) + + def dump_bytecode(self, bucket: Bucket) -> None: + # Write to a temporary file, then rename to the real name after + # writing. This avoids another process reading the file before + # it is fully written. + name = self._get_cache_filename(bucket) + f = tempfile.NamedTemporaryFile( + mode="wb", + dir=os.path.dirname(name), + prefix=os.path.basename(name), + suffix=".tmp", + delete=False, + ) + + def remove_silent() -> None: + try: + os.remove(f.name) + except OSError: + # Another process may have called clear(). On Windows, + # another program may be holding the file open. + pass + + try: + with f: + bucket.write_bytecode(f) + except BaseException: + remove_silent() + raise + + try: + os.replace(f.name, name) + except OSError: + # Another process may have called clear(). On Windows, + # another program may be holding the file open. + remove_silent() + except BaseException: + remove_silent() + raise + + def clear(self) -> None: + # imported lazily here because google app-engine doesn't support + # write access on the file system and the function does not exist + # normally. + from os import remove + + files = fnmatch.filter(os.listdir(self.directory), self.pattern % ("*",)) + for filename in files: + try: + remove(os.path.join(self.directory, filename)) + except OSError: + pass + + +class MemcachedBytecodeCache(BytecodeCache): + """This class implements a bytecode cache that uses a memcache cache for + storing the information. It does not enforce a specific memcache library + (tummy's memcache or cmemcache) but will accept any class that provides + the minimal interface required. + + Libraries compatible with this class: + + - `cachelib `_ + - `python-memcached `_ + + (Unfortunately the django cache interface is not compatible because it + does not support storing binary data, only text. You can however pass + the underlying cache client to the bytecode cache which is available + as `django.core.cache.cache._client`.) + + The minimal interface for the client passed to the constructor is this: + + .. class:: MinimalClientInterface + + .. method:: set(key, value[, timeout]) + + Stores the bytecode in the cache. `value` is a string and + `timeout` the timeout of the key. If timeout is not provided + a default timeout or no timeout should be assumed, if it's + provided it's an integer with the number of seconds the cache + item should exist. + + .. method:: get(key) + + Returns the value for the cache key. If the item does not + exist in the cache the return value must be `None`. + + The other arguments to the constructor are the prefix for all keys that + is added before the actual cache key and the timeout for the bytecode in + the cache system. We recommend a high (or no) timeout. + + This bytecode cache does not support clearing of used items in the cache. + The clear method is a no-operation function. + + .. versionadded:: 2.7 + Added support for ignoring memcache errors through the + `ignore_memcache_errors` parameter. + """ + + def __init__( + self, + client: "_MemcachedClient", + prefix: str = "jinja2/bytecode/", + timeout: t.Optional[int] = None, + ignore_memcache_errors: bool = True, + ): + self.client = client + self.prefix = prefix + self.timeout = timeout + self.ignore_memcache_errors = ignore_memcache_errors + + def load_bytecode(self, bucket: Bucket) -> None: + try: + code = self.client.get(self.prefix + bucket.key) + except Exception: + if not self.ignore_memcache_errors: + raise + else: + bucket.bytecode_from_string(code) + + def dump_bytecode(self, bucket: Bucket) -> None: + key = self.prefix + bucket.key + value = bucket.bytecode_to_string() + + try: + if self.timeout is not None: + self.client.set(key, value, self.timeout) + else: + self.client.set(key, value) + except Exception: + if not self.ignore_memcache_errors: + raise diff --git a/server/venv/lib/python3.10/site-packages/jinja2/compiler.py b/server/venv/lib/python3.10/site-packages/jinja2/compiler.py new file mode 100644 index 0000000..3458095 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/compiler.py @@ -0,0 +1,1957 @@ +"""Compiles nodes from the parser into Python code.""" +import typing as t +from contextlib import contextmanager +from functools import update_wrapper +from io import StringIO +from itertools import chain +from keyword import iskeyword as is_python_keyword + +from markupsafe import escape +from markupsafe import Markup + +from . import nodes +from .exceptions import TemplateAssertionError +from .idtracking import Symbols +from .idtracking import VAR_LOAD_ALIAS +from .idtracking import VAR_LOAD_PARAMETER +from .idtracking import VAR_LOAD_RESOLVE +from .idtracking import VAR_LOAD_UNDEFINED +from .nodes import EvalContext +from .optimizer import Optimizer +from .utils import _PassArg +from .utils import concat +from .visitor import NodeVisitor + +if t.TYPE_CHECKING: + import typing_extensions as te + from .environment import Environment + +F = t.TypeVar("F", bound=t.Callable[..., t.Any]) + +operators = { + "eq": "==", + "ne": "!=", + "gt": ">", + "gteq": ">=", + "lt": "<", + "lteq": "<=", + "in": "in", + "notin": "not in", +} + + +def optimizeconst(f: F) -> F: + def new_func( + self: "CodeGenerator", node: nodes.Expr, frame: "Frame", **kwargs: t.Any + ) -> t.Any: + # Only optimize if the frame is not volatile + if self.optimizer is not None and not frame.eval_ctx.volatile: + new_node = self.optimizer.visit(node, frame.eval_ctx) + + if new_node != node: + return self.visit(new_node, frame) + + return f(self, node, frame, **kwargs) + + return update_wrapper(t.cast(F, new_func), f) + + +def _make_binop(op: str) -> t.Callable[["CodeGenerator", nodes.BinExpr, "Frame"], None]: + @optimizeconst + def visitor(self: "CodeGenerator", node: nodes.BinExpr, frame: Frame) -> None: + if ( + self.environment.sandboxed + and op in self.environment.intercepted_binops # type: ignore + ): + self.write(f"environment.call_binop(context, {op!r}, ") + self.visit(node.left, frame) + self.write(", ") + self.visit(node.right, frame) + else: + self.write("(") + self.visit(node.left, frame) + self.write(f" {op} ") + self.visit(node.right, frame) + + self.write(")") + + return visitor + + +def _make_unop( + op: str, +) -> t.Callable[["CodeGenerator", nodes.UnaryExpr, "Frame"], None]: + @optimizeconst + def visitor(self: "CodeGenerator", node: nodes.UnaryExpr, frame: Frame) -> None: + if ( + self.environment.sandboxed + and op in self.environment.intercepted_unops # type: ignore + ): + self.write(f"environment.call_unop(context, {op!r}, ") + self.visit(node.node, frame) + else: + self.write("(" + op) + self.visit(node.node, frame) + + self.write(")") + + return visitor + + +def generate( + node: nodes.Template, + environment: "Environment", + name: t.Optional[str], + filename: t.Optional[str], + stream: t.Optional[t.TextIO] = None, + defer_init: bool = False, + optimized: bool = True, +) -> t.Optional[str]: + """Generate the python source for a node tree.""" + if not isinstance(node, nodes.Template): + raise TypeError("Can't compile non template nodes") + + generator = environment.code_generator_class( + environment, name, filename, stream, defer_init, optimized + ) + generator.visit(node) + + if stream is None: + return generator.stream.getvalue() # type: ignore + + return None + + +def has_safe_repr(value: t.Any) -> bool: + """Does the node have a safe representation?""" + if value is None or value is NotImplemented or value is Ellipsis: + return True + + if type(value) in {bool, int, float, complex, range, str, Markup}: + return True + + if type(value) in {tuple, list, set, frozenset}: + return all(has_safe_repr(v) for v in value) + + if type(value) is dict: + return all(has_safe_repr(k) and has_safe_repr(v) for k, v in value.items()) + + return False + + +def find_undeclared( + nodes: t.Iterable[nodes.Node], names: t.Iterable[str] +) -> t.Set[str]: + """Check if the names passed are accessed undeclared. The return value + is a set of all the undeclared names from the sequence of names found. + """ + visitor = UndeclaredNameVisitor(names) + try: + for node in nodes: + visitor.visit(node) + except VisitorExit: + pass + return visitor.undeclared + + +class MacroRef: + def __init__(self, node: t.Union[nodes.Macro, nodes.CallBlock]) -> None: + self.node = node + self.accesses_caller = False + self.accesses_kwargs = False + self.accesses_varargs = False + + +class Frame: + """Holds compile time information for us.""" + + def __init__( + self, + eval_ctx: EvalContext, + parent: t.Optional["Frame"] = None, + level: t.Optional[int] = None, + ) -> None: + self.eval_ctx = eval_ctx + + # the parent of this frame + self.parent = parent + + if parent is None: + self.symbols = Symbols(level=level) + + # in some dynamic inheritance situations the compiler needs to add + # write tests around output statements. + self.require_output_check = False + + # inside some tags we are using a buffer rather than yield statements. + # this for example affects {% filter %} or {% macro %}. If a frame + # is buffered this variable points to the name of the list used as + # buffer. + self.buffer: t.Optional[str] = None + + # the name of the block we're in, otherwise None. + self.block: t.Optional[str] = None + + else: + self.symbols = Symbols(parent.symbols, level=level) + self.require_output_check = parent.require_output_check + self.buffer = parent.buffer + self.block = parent.block + + # a toplevel frame is the root + soft frames such as if conditions. + self.toplevel = False + + # the root frame is basically just the outermost frame, so no if + # conditions. This information is used to optimize inheritance + # situations. + self.rootlevel = False + + # variables set inside of loops and blocks should not affect outer frames, + # but they still needs to be kept track of as part of the active context. + self.loop_frame = False + self.block_frame = False + + # track whether the frame is being used in an if-statement or conditional + # expression as it determines which errors should be raised during runtime + # or compile time. + self.soft_frame = False + + def copy(self) -> "Frame": + """Create a copy of the current one.""" + rv = object.__new__(self.__class__) + rv.__dict__.update(self.__dict__) + rv.symbols = self.symbols.copy() + return rv + + def inner(self, isolated: bool = False) -> "Frame": + """Return an inner frame.""" + if isolated: + return Frame(self.eval_ctx, level=self.symbols.level + 1) + return Frame(self.eval_ctx, self) + + def soft(self) -> "Frame": + """Return a soft frame. A soft frame may not be modified as + standalone thing as it shares the resources with the frame it + was created of, but it's not a rootlevel frame any longer. + + This is only used to implement if-statements and conditional + expressions. + """ + rv = self.copy() + rv.rootlevel = False + rv.soft_frame = True + return rv + + __copy__ = copy + + +class VisitorExit(RuntimeError): + """Exception used by the `UndeclaredNameVisitor` to signal a stop.""" + + +class DependencyFinderVisitor(NodeVisitor): + """A visitor that collects filter and test calls.""" + + def __init__(self) -> None: + self.filters: t.Set[str] = set() + self.tests: t.Set[str] = set() + + def visit_Filter(self, node: nodes.Filter) -> None: + self.generic_visit(node) + self.filters.add(node.name) + + def visit_Test(self, node: nodes.Test) -> None: + self.generic_visit(node) + self.tests.add(node.name) + + def visit_Block(self, node: nodes.Block) -> None: + """Stop visiting at blocks.""" + + +class UndeclaredNameVisitor(NodeVisitor): + """A visitor that checks if a name is accessed without being + declared. This is different from the frame visitor as it will + not stop at closure frames. + """ + + def __init__(self, names: t.Iterable[str]) -> None: + self.names = set(names) + self.undeclared: t.Set[str] = set() + + def visit_Name(self, node: nodes.Name) -> None: + if node.ctx == "load" and node.name in self.names: + self.undeclared.add(node.name) + if self.undeclared == self.names: + raise VisitorExit() + else: + self.names.discard(node.name) + + def visit_Block(self, node: nodes.Block) -> None: + """Stop visiting a blocks.""" + + +class CompilerExit(Exception): + """Raised if the compiler encountered a situation where it just + doesn't make sense to further process the code. Any block that + raises such an exception is not further processed. + """ + + +class CodeGenerator(NodeVisitor): + def __init__( + self, + environment: "Environment", + name: t.Optional[str], + filename: t.Optional[str], + stream: t.Optional[t.TextIO] = None, + defer_init: bool = False, + optimized: bool = True, + ) -> None: + if stream is None: + stream = StringIO() + self.environment = environment + self.name = name + self.filename = filename + self.stream = stream + self.created_block_context = False + self.defer_init = defer_init + self.optimizer: t.Optional[Optimizer] = None + + if optimized: + self.optimizer = Optimizer(environment) + + # aliases for imports + self.import_aliases: t.Dict[str, str] = {} + + # a registry for all blocks. Because blocks are moved out + # into the global python scope they are registered here + self.blocks: t.Dict[str, nodes.Block] = {} + + # the number of extends statements so far + self.extends_so_far = 0 + + # some templates have a rootlevel extends. In this case we + # can safely assume that we're a child template and do some + # more optimizations. + self.has_known_extends = False + + # the current line number + self.code_lineno = 1 + + # registry of all filters and tests (global, not block local) + self.tests: t.Dict[str, str] = {} + self.filters: t.Dict[str, str] = {} + + # the debug information + self.debug_info: t.List[t.Tuple[int, int]] = [] + self._write_debug_info: t.Optional[int] = None + + # the number of new lines before the next write() + self._new_lines = 0 + + # the line number of the last written statement + self._last_line = 0 + + # true if nothing was written so far. + self._first_write = True + + # used by the `temporary_identifier` method to get new + # unique, temporary identifier + self._last_identifier = 0 + + # the current indentation + self._indentation = 0 + + # Tracks toplevel assignments + self._assign_stack: t.List[t.Set[str]] = [] + + # Tracks parameter definition blocks + self._param_def_block: t.List[t.Set[str]] = [] + + # Tracks the current context. + self._context_reference_stack = ["context"] + + @property + def optimized(self) -> bool: + return self.optimizer is not None + + # -- Various compilation helpers + + def fail(self, msg: str, lineno: int) -> "te.NoReturn": + """Fail with a :exc:`TemplateAssertionError`.""" + raise TemplateAssertionError(msg, lineno, self.name, self.filename) + + def temporary_identifier(self) -> str: + """Get a new unique identifier.""" + self._last_identifier += 1 + return f"t_{self._last_identifier}" + + def buffer(self, frame: Frame) -> None: + """Enable buffering for the frame from that point onwards.""" + frame.buffer = self.temporary_identifier() + self.writeline(f"{frame.buffer} = []") + + def return_buffer_contents( + self, frame: Frame, force_unescaped: bool = False + ) -> None: + """Return the buffer contents of the frame.""" + if not force_unescaped: + if frame.eval_ctx.volatile: + self.writeline("if context.eval_ctx.autoescape:") + self.indent() + self.writeline(f"return Markup(concat({frame.buffer}))") + self.outdent() + self.writeline("else:") + self.indent() + self.writeline(f"return concat({frame.buffer})") + self.outdent() + return + elif frame.eval_ctx.autoescape: + self.writeline(f"return Markup(concat({frame.buffer}))") + return + self.writeline(f"return concat({frame.buffer})") + + def indent(self) -> None: + """Indent by one.""" + self._indentation += 1 + + def outdent(self, step: int = 1) -> None: + """Outdent by step.""" + self._indentation -= step + + def start_write(self, frame: Frame, node: t.Optional[nodes.Node] = None) -> None: + """Yield or write into the frame buffer.""" + if frame.buffer is None: + self.writeline("yield ", node) + else: + self.writeline(f"{frame.buffer}.append(", node) + + def end_write(self, frame: Frame) -> None: + """End the writing process started by `start_write`.""" + if frame.buffer is not None: + self.write(")") + + def simple_write( + self, s: str, frame: Frame, node: t.Optional[nodes.Node] = None + ) -> None: + """Simple shortcut for start_write + write + end_write.""" + self.start_write(frame, node) + self.write(s) + self.end_write(frame) + + def blockvisit(self, nodes: t.Iterable[nodes.Node], frame: Frame) -> None: + """Visit a list of nodes as block in a frame. If the current frame + is no buffer a dummy ``if 0: yield None`` is written automatically. + """ + try: + self.writeline("pass") + for node in nodes: + self.visit(node, frame) + except CompilerExit: + pass + + def write(self, x: str) -> None: + """Write a string into the output stream.""" + if self._new_lines: + if not self._first_write: + self.stream.write("\n" * self._new_lines) + self.code_lineno += self._new_lines + if self._write_debug_info is not None: + self.debug_info.append((self._write_debug_info, self.code_lineno)) + self._write_debug_info = None + self._first_write = False + self.stream.write(" " * self._indentation) + self._new_lines = 0 + self.stream.write(x) + + def writeline( + self, x: str, node: t.Optional[nodes.Node] = None, extra: int = 0 + ) -> None: + """Combination of newline and write.""" + self.newline(node, extra) + self.write(x) + + def newline(self, node: t.Optional[nodes.Node] = None, extra: int = 0) -> None: + """Add one or more newlines before the next write.""" + self._new_lines = max(self._new_lines, 1 + extra) + if node is not None and node.lineno != self._last_line: + self._write_debug_info = node.lineno + self._last_line = node.lineno + + def signature( + self, + node: t.Union[nodes.Call, nodes.Filter, nodes.Test], + frame: Frame, + extra_kwargs: t.Optional[t.Mapping[str, t.Any]] = None, + ) -> None: + """Writes a function call to the stream for the current node. + A leading comma is added automatically. The extra keyword + arguments may not include python keywords otherwise a syntax + error could occur. The extra keyword arguments should be given + as python dict. + """ + # if any of the given keyword arguments is a python keyword + # we have to make sure that no invalid call is created. + kwarg_workaround = any( + is_python_keyword(t.cast(str, k)) + for k in chain((x.key for x in node.kwargs), extra_kwargs or ()) + ) + + for arg in node.args: + self.write(", ") + self.visit(arg, frame) + + if not kwarg_workaround: + for kwarg in node.kwargs: + self.write(", ") + self.visit(kwarg, frame) + if extra_kwargs is not None: + for key, value in extra_kwargs.items(): + self.write(f", {key}={value}") + if node.dyn_args: + self.write(", *") + self.visit(node.dyn_args, frame) + + if kwarg_workaround: + if node.dyn_kwargs is not None: + self.write(", **dict({") + else: + self.write(", **{") + for kwarg in node.kwargs: + self.write(f"{kwarg.key!r}: ") + self.visit(kwarg.value, frame) + self.write(", ") + if extra_kwargs is not None: + for key, value in extra_kwargs.items(): + self.write(f"{key!r}: {value}, ") + if node.dyn_kwargs is not None: + self.write("}, **") + self.visit(node.dyn_kwargs, frame) + self.write(")") + else: + self.write("}") + + elif node.dyn_kwargs is not None: + self.write(", **") + self.visit(node.dyn_kwargs, frame) + + def pull_dependencies(self, nodes: t.Iterable[nodes.Node]) -> None: + """Find all filter and test names used in the template and + assign them to variables in the compiled namespace. Checking + that the names are registered with the environment is done when + compiling the Filter and Test nodes. If the node is in an If or + CondExpr node, the check is done at runtime instead. + + .. versionchanged:: 3.0 + Filters and tests in If and CondExpr nodes are checked at + runtime instead of compile time. + """ + visitor = DependencyFinderVisitor() + + for node in nodes: + visitor.visit(node) + + for id_map, names, dependency in (self.filters, visitor.filters, "filters"), ( + self.tests, + visitor.tests, + "tests", + ): + for name in sorted(names): + if name not in id_map: + id_map[name] = self.temporary_identifier() + + # add check during runtime that dependencies used inside of executed + # blocks are defined, as this step may be skipped during compile time + self.writeline("try:") + self.indent() + self.writeline(f"{id_map[name]} = environment.{dependency}[{name!r}]") + self.outdent() + self.writeline("except KeyError:") + self.indent() + self.writeline("@internalcode") + self.writeline(f"def {id_map[name]}(*unused):") + self.indent() + self.writeline( + f'raise TemplateRuntimeError("No {dependency[:-1]}' + f' named {name!r} found.")' + ) + self.outdent() + self.outdent() + + def enter_frame(self, frame: Frame) -> None: + undefs = [] + for target, (action, param) in frame.symbols.loads.items(): + if action == VAR_LOAD_PARAMETER: + pass + elif action == VAR_LOAD_RESOLVE: + self.writeline(f"{target} = {self.get_resolve_func()}({param!r})") + elif action == VAR_LOAD_ALIAS: + self.writeline(f"{target} = {param}") + elif action == VAR_LOAD_UNDEFINED: + undefs.append(target) + else: + raise NotImplementedError("unknown load instruction") + if undefs: + self.writeline(f"{' = '.join(undefs)} = missing") + + def leave_frame(self, frame: Frame, with_python_scope: bool = False) -> None: + if not with_python_scope: + undefs = [] + for target in frame.symbols.loads: + undefs.append(target) + if undefs: + self.writeline(f"{' = '.join(undefs)} = missing") + + def choose_async(self, async_value: str = "async ", sync_value: str = "") -> str: + return async_value if self.environment.is_async else sync_value + + def func(self, name: str) -> str: + return f"{self.choose_async()}def {name}" + + def macro_body( + self, node: t.Union[nodes.Macro, nodes.CallBlock], frame: Frame + ) -> t.Tuple[Frame, MacroRef]: + """Dump the function def of a macro or call block.""" + frame = frame.inner() + frame.symbols.analyze_node(node) + macro_ref = MacroRef(node) + + explicit_caller = None + skip_special_params = set() + args = [] + + for idx, arg in enumerate(node.args): + if arg.name == "caller": + explicit_caller = idx + if arg.name in ("kwargs", "varargs"): + skip_special_params.add(arg.name) + args.append(frame.symbols.ref(arg.name)) + + undeclared = find_undeclared(node.body, ("caller", "kwargs", "varargs")) + + if "caller" in undeclared: + # In older Jinja versions there was a bug that allowed caller + # to retain the special behavior even if it was mentioned in + # the argument list. However thankfully this was only really + # working if it was the last argument. So we are explicitly + # checking this now and error out if it is anywhere else in + # the argument list. + if explicit_caller is not None: + try: + node.defaults[explicit_caller - len(node.args)] + except IndexError: + self.fail( + "When defining macros or call blocks the " + 'special "caller" argument must be omitted ' + "or be given a default.", + node.lineno, + ) + else: + args.append(frame.symbols.declare_parameter("caller")) + macro_ref.accesses_caller = True + if "kwargs" in undeclared and "kwargs" not in skip_special_params: + args.append(frame.symbols.declare_parameter("kwargs")) + macro_ref.accesses_kwargs = True + if "varargs" in undeclared and "varargs" not in skip_special_params: + args.append(frame.symbols.declare_parameter("varargs")) + macro_ref.accesses_varargs = True + + # macros are delayed, they never require output checks + frame.require_output_check = False + frame.symbols.analyze_node(node) + self.writeline(f"{self.func('macro')}({', '.join(args)}):", node) + self.indent() + + self.buffer(frame) + self.enter_frame(frame) + + self.push_parameter_definitions(frame) + for idx, arg in enumerate(node.args): + ref = frame.symbols.ref(arg.name) + self.writeline(f"if {ref} is missing:") + self.indent() + try: + default = node.defaults[idx - len(node.args)] + except IndexError: + self.writeline( + f'{ref} = undefined("parameter {arg.name!r} was not provided",' + f" name={arg.name!r})" + ) + else: + self.writeline(f"{ref} = ") + self.visit(default, frame) + self.mark_parameter_stored(ref) + self.outdent() + self.pop_parameter_definitions() + + self.blockvisit(node.body, frame) + self.return_buffer_contents(frame, force_unescaped=True) + self.leave_frame(frame, with_python_scope=True) + self.outdent() + + return frame, macro_ref + + def macro_def(self, macro_ref: MacroRef, frame: Frame) -> None: + """Dump the macro definition for the def created by macro_body.""" + arg_tuple = ", ".join(repr(x.name) for x in macro_ref.node.args) + name = getattr(macro_ref.node, "name", None) + if len(macro_ref.node.args) == 1: + arg_tuple += "," + self.write( + f"Macro(environment, macro, {name!r}, ({arg_tuple})," + f" {macro_ref.accesses_kwargs!r}, {macro_ref.accesses_varargs!r}," + f" {macro_ref.accesses_caller!r}, context.eval_ctx.autoescape)" + ) + + def position(self, node: nodes.Node) -> str: + """Return a human readable position for the node.""" + rv = f"line {node.lineno}" + if self.name is not None: + rv = f"{rv} in {self.name!r}" + return rv + + def dump_local_context(self, frame: Frame) -> str: + items_kv = ", ".join( + f"{name!r}: {target}" + for name, target in frame.symbols.dump_stores().items() + ) + return f"{{{items_kv}}}" + + def write_commons(self) -> None: + """Writes a common preamble that is used by root and block functions. + Primarily this sets up common local helpers and enforces a generator + through a dead branch. + """ + self.writeline("resolve = context.resolve_or_missing") + self.writeline("undefined = environment.undefined") + self.writeline("concat = environment.concat") + # always use the standard Undefined class for the implicit else of + # conditional expressions + self.writeline("cond_expr_undefined = Undefined") + self.writeline("if 0: yield None") + + def push_parameter_definitions(self, frame: Frame) -> None: + """Pushes all parameter targets from the given frame into a local + stack that permits tracking of yet to be assigned parameters. In + particular this enables the optimization from `visit_Name` to skip + undefined expressions for parameters in macros as macros can reference + otherwise unbound parameters. + """ + self._param_def_block.append(frame.symbols.dump_param_targets()) + + def pop_parameter_definitions(self) -> None: + """Pops the current parameter definitions set.""" + self._param_def_block.pop() + + def mark_parameter_stored(self, target: str) -> None: + """Marks a parameter in the current parameter definitions as stored. + This will skip the enforced undefined checks. + """ + if self._param_def_block: + self._param_def_block[-1].discard(target) + + def push_context_reference(self, target: str) -> None: + self._context_reference_stack.append(target) + + def pop_context_reference(self) -> None: + self._context_reference_stack.pop() + + def get_context_ref(self) -> str: + return self._context_reference_stack[-1] + + def get_resolve_func(self) -> str: + target = self._context_reference_stack[-1] + if target == "context": + return "resolve" + return f"{target}.resolve" + + def derive_context(self, frame: Frame) -> str: + return f"{self.get_context_ref()}.derived({self.dump_local_context(frame)})" + + def parameter_is_undeclared(self, target: str) -> bool: + """Checks if a given target is an undeclared parameter.""" + if not self._param_def_block: + return False + return target in self._param_def_block[-1] + + def push_assign_tracking(self) -> None: + """Pushes a new layer for assignment tracking.""" + self._assign_stack.append(set()) + + def pop_assign_tracking(self, frame: Frame) -> None: + """Pops the topmost level for assignment tracking and updates the + context variables if necessary. + """ + vars = self._assign_stack.pop() + if ( + not frame.block_frame + and not frame.loop_frame + and not frame.toplevel + or not vars + ): + return + public_names = [x for x in vars if x[:1] != "_"] + if len(vars) == 1: + name = next(iter(vars)) + ref = frame.symbols.ref(name) + if frame.loop_frame: + self.writeline(f"_loop_vars[{name!r}] = {ref}") + return + if frame.block_frame: + self.writeline(f"_block_vars[{name!r}] = {ref}") + return + self.writeline(f"context.vars[{name!r}] = {ref}") + else: + if frame.loop_frame: + self.writeline("_loop_vars.update({") + elif frame.block_frame: + self.writeline("_block_vars.update({") + else: + self.writeline("context.vars.update({") + for idx, name in enumerate(vars): + if idx: + self.write(", ") + ref = frame.symbols.ref(name) + self.write(f"{name!r}: {ref}") + self.write("})") + if not frame.block_frame and not frame.loop_frame and public_names: + if len(public_names) == 1: + self.writeline(f"context.exported_vars.add({public_names[0]!r})") + else: + names_str = ", ".join(map(repr, public_names)) + self.writeline(f"context.exported_vars.update(({names_str}))") + + # -- Statement Visitors + + def visit_Template( + self, node: nodes.Template, frame: t.Optional[Frame] = None + ) -> None: + assert frame is None, "no root frame allowed" + eval_ctx = EvalContext(self.environment, self.name) + + from .runtime import exported, async_exported + + if self.environment.is_async: + exported_names = sorted(exported + async_exported) + else: + exported_names = sorted(exported) + + self.writeline("from jinja2.runtime import " + ", ".join(exported_names)) + + # if we want a deferred initialization we cannot move the + # environment into a local name + envenv = "" if self.defer_init else ", environment=environment" + + # do we have an extends tag at all? If not, we can save some + # overhead by just not processing any inheritance code. + have_extends = node.find(nodes.Extends) is not None + + # find all blocks + for block in node.find_all(nodes.Block): + if block.name in self.blocks: + self.fail(f"block {block.name!r} defined twice", block.lineno) + self.blocks[block.name] = block + + # find all imports and import them + for import_ in node.find_all(nodes.ImportedName): + if import_.importname not in self.import_aliases: + imp = import_.importname + self.import_aliases[imp] = alias = self.temporary_identifier() + if "." in imp: + module, obj = imp.rsplit(".", 1) + self.writeline(f"from {module} import {obj} as {alias}") + else: + self.writeline(f"import {imp} as {alias}") + + # add the load name + self.writeline(f"name = {self.name!r}") + + # generate the root render function. + self.writeline( + f"{self.func('root')}(context, missing=missing{envenv}):", extra=1 + ) + self.indent() + self.write_commons() + + # process the root + frame = Frame(eval_ctx) + if "self" in find_undeclared(node.body, ("self",)): + ref = frame.symbols.declare_parameter("self") + self.writeline(f"{ref} = TemplateReference(context)") + frame.symbols.analyze_node(node) + frame.toplevel = frame.rootlevel = True + frame.require_output_check = have_extends and not self.has_known_extends + if have_extends: + self.writeline("parent_template = None") + self.enter_frame(frame) + self.pull_dependencies(node.body) + self.blockvisit(node.body, frame) + self.leave_frame(frame, with_python_scope=True) + self.outdent() + + # make sure that the parent root is called. + if have_extends: + if not self.has_known_extends: + self.indent() + self.writeline("if parent_template is not None:") + self.indent() + if not self.environment.is_async: + self.writeline("yield from parent_template.root_render_func(context)") + else: + self.writeline( + "async for event in parent_template.root_render_func(context):" + ) + self.indent() + self.writeline("yield event") + self.outdent() + self.outdent(1 + (not self.has_known_extends)) + + # at this point we now have the blocks collected and can visit them too. + for name, block in self.blocks.items(): + self.writeline( + f"{self.func('block_' + name)}(context, missing=missing{envenv}):", + block, + 1, + ) + self.indent() + self.write_commons() + # It's important that we do not make this frame a child of the + # toplevel template. This would cause a variety of + # interesting issues with identifier tracking. + block_frame = Frame(eval_ctx) + block_frame.block_frame = True + undeclared = find_undeclared(block.body, ("self", "super")) + if "self" in undeclared: + ref = block_frame.symbols.declare_parameter("self") + self.writeline(f"{ref} = TemplateReference(context)") + if "super" in undeclared: + ref = block_frame.symbols.declare_parameter("super") + self.writeline(f"{ref} = context.super({name!r}, block_{name})") + block_frame.symbols.analyze_node(block) + block_frame.block = name + self.writeline("_block_vars = {}") + self.enter_frame(block_frame) + self.pull_dependencies(block.body) + self.blockvisit(block.body, block_frame) + self.leave_frame(block_frame, with_python_scope=True) + self.outdent() + + blocks_kv_str = ", ".join(f"{x!r}: block_{x}" for x in self.blocks) + self.writeline(f"blocks = {{{blocks_kv_str}}}", extra=1) + debug_kv_str = "&".join(f"{k}={v}" for k, v in self.debug_info) + self.writeline(f"debug_info = {debug_kv_str!r}") + + def visit_Block(self, node: nodes.Block, frame: Frame) -> None: + """Call a block and register it for the template.""" + level = 0 + if frame.toplevel: + # if we know that we are a child template, there is no need to + # check if we are one + if self.has_known_extends: + return + if self.extends_so_far > 0: + self.writeline("if parent_template is None:") + self.indent() + level += 1 + + if node.scoped: + context = self.derive_context(frame) + else: + context = self.get_context_ref() + + if node.required: + self.writeline(f"if len(context.blocks[{node.name!r}]) <= 1:", node) + self.indent() + self.writeline( + f'raise TemplateRuntimeError("Required block {node.name!r} not found")', + node, + ) + self.outdent() + + if not self.environment.is_async and frame.buffer is None: + self.writeline( + f"yield from context.blocks[{node.name!r}][0]({context})", node + ) + else: + self.writeline( + f"{self.choose_async()}for event in" + f" context.blocks[{node.name!r}][0]({context}):", + node, + ) + self.indent() + self.simple_write("event", frame) + self.outdent() + + self.outdent(level) + + def visit_Extends(self, node: nodes.Extends, frame: Frame) -> None: + """Calls the extender.""" + if not frame.toplevel: + self.fail("cannot use extend from a non top-level scope", node.lineno) + + # if the number of extends statements in general is zero so + # far, we don't have to add a check if something extended + # the template before this one. + if self.extends_so_far > 0: + + # if we have a known extends we just add a template runtime + # error into the generated code. We could catch that at compile + # time too, but i welcome it not to confuse users by throwing the + # same error at different times just "because we can". + if not self.has_known_extends: + self.writeline("if parent_template is not None:") + self.indent() + self.writeline('raise TemplateRuntimeError("extended multiple times")') + + # if we have a known extends already we don't need that code here + # as we know that the template execution will end here. + if self.has_known_extends: + raise CompilerExit() + else: + self.outdent() + + self.writeline("parent_template = environment.get_template(", node) + self.visit(node.template, frame) + self.write(f", {self.name!r})") + self.writeline("for name, parent_block in parent_template.blocks.items():") + self.indent() + self.writeline("context.blocks.setdefault(name, []).append(parent_block)") + self.outdent() + + # if this extends statement was in the root level we can take + # advantage of that information and simplify the generated code + # in the top level from this point onwards + if frame.rootlevel: + self.has_known_extends = True + + # and now we have one more + self.extends_so_far += 1 + + def visit_Include(self, node: nodes.Include, frame: Frame) -> None: + """Handles includes.""" + if node.ignore_missing: + self.writeline("try:") + self.indent() + + func_name = "get_or_select_template" + if isinstance(node.template, nodes.Const): + if isinstance(node.template.value, str): + func_name = "get_template" + elif isinstance(node.template.value, (tuple, list)): + func_name = "select_template" + elif isinstance(node.template, (nodes.Tuple, nodes.List)): + func_name = "select_template" + + self.writeline(f"template = environment.{func_name}(", node) + self.visit(node.template, frame) + self.write(f", {self.name!r})") + if node.ignore_missing: + self.outdent() + self.writeline("except TemplateNotFound:") + self.indent() + self.writeline("pass") + self.outdent() + self.writeline("else:") + self.indent() + + skip_event_yield = False + if node.with_context: + self.writeline( + f"{self.choose_async()}for event in template.root_render_func(" + "template.new_context(context.get_all(), True," + f" {self.dump_local_context(frame)})):" + ) + elif self.environment.is_async: + self.writeline( + "for event in (await template._get_default_module_async())" + "._body_stream:" + ) + else: + self.writeline("yield from template._get_default_module()._body_stream") + skip_event_yield = True + + if not skip_event_yield: + self.indent() + self.simple_write("event", frame) + self.outdent() + + if node.ignore_missing: + self.outdent() + + def _import_common( + self, node: t.Union[nodes.Import, nodes.FromImport], frame: Frame + ) -> None: + self.write(f"{self.choose_async('await ')}environment.get_template(") + self.visit(node.template, frame) + self.write(f", {self.name!r}).") + + if node.with_context: + f_name = f"make_module{self.choose_async('_async')}" + self.write( + f"{f_name}(context.get_all(), True, {self.dump_local_context(frame)})" + ) + else: + self.write(f"_get_default_module{self.choose_async('_async')}(context)") + + def visit_Import(self, node: nodes.Import, frame: Frame) -> None: + """Visit regular imports.""" + self.writeline(f"{frame.symbols.ref(node.target)} = ", node) + if frame.toplevel: + self.write(f"context.vars[{node.target!r}] = ") + + self._import_common(node, frame) + + if frame.toplevel and not node.target.startswith("_"): + self.writeline(f"context.exported_vars.discard({node.target!r})") + + def visit_FromImport(self, node: nodes.FromImport, frame: Frame) -> None: + """Visit named imports.""" + self.newline(node) + self.write("included_template = ") + self._import_common(node, frame) + var_names = [] + discarded_names = [] + for name in node.names: + if isinstance(name, tuple): + name, alias = name + else: + alias = name + self.writeline( + f"{frame.symbols.ref(alias)} =" + f" getattr(included_template, {name!r}, missing)" + ) + self.writeline(f"if {frame.symbols.ref(alias)} is missing:") + self.indent() + message = ( + "the template {included_template.__name__!r}" + f" (imported on {self.position(node)})" + f" does not export the requested name {name!r}" + ) + self.writeline( + f"{frame.symbols.ref(alias)} = undefined(f{message!r}, name={name!r})" + ) + self.outdent() + if frame.toplevel: + var_names.append(alias) + if not alias.startswith("_"): + discarded_names.append(alias) + + if var_names: + if len(var_names) == 1: + name = var_names[0] + self.writeline(f"context.vars[{name!r}] = {frame.symbols.ref(name)}") + else: + names_kv = ", ".join( + f"{name!r}: {frame.symbols.ref(name)}" for name in var_names + ) + self.writeline(f"context.vars.update({{{names_kv}}})") + if discarded_names: + if len(discarded_names) == 1: + self.writeline(f"context.exported_vars.discard({discarded_names[0]!r})") + else: + names_str = ", ".join(map(repr, discarded_names)) + self.writeline( + f"context.exported_vars.difference_update(({names_str}))" + ) + + def visit_For(self, node: nodes.For, frame: Frame) -> None: + loop_frame = frame.inner() + loop_frame.loop_frame = True + test_frame = frame.inner() + else_frame = frame.inner() + + # try to figure out if we have an extended loop. An extended loop + # is necessary if the loop is in recursive mode if the special loop + # variable is accessed in the body if the body is a scoped block. + extended_loop = ( + node.recursive + or "loop" + in find_undeclared(node.iter_child_nodes(only=("body",)), ("loop",)) + or any(block.scoped for block in node.find_all(nodes.Block)) + ) + + loop_ref = None + if extended_loop: + loop_ref = loop_frame.symbols.declare_parameter("loop") + + loop_frame.symbols.analyze_node(node, for_branch="body") + if node.else_: + else_frame.symbols.analyze_node(node, for_branch="else") + + if node.test: + loop_filter_func = self.temporary_identifier() + test_frame.symbols.analyze_node(node, for_branch="test") + self.writeline(f"{self.func(loop_filter_func)}(fiter):", node.test) + self.indent() + self.enter_frame(test_frame) + self.writeline(self.choose_async("async for ", "for ")) + self.visit(node.target, loop_frame) + self.write(" in ") + self.write(self.choose_async("auto_aiter(fiter)", "fiter")) + self.write(":") + self.indent() + self.writeline("if ", node.test) + self.visit(node.test, test_frame) + self.write(":") + self.indent() + self.writeline("yield ") + self.visit(node.target, loop_frame) + self.outdent(3) + self.leave_frame(test_frame, with_python_scope=True) + + # if we don't have an recursive loop we have to find the shadowed + # variables at that point. Because loops can be nested but the loop + # variable is a special one we have to enforce aliasing for it. + if node.recursive: + self.writeline( + f"{self.func('loop')}(reciter, loop_render_func, depth=0):", node + ) + self.indent() + self.buffer(loop_frame) + + # Use the same buffer for the else frame + else_frame.buffer = loop_frame.buffer + + # make sure the loop variable is a special one and raise a template + # assertion error if a loop tries to write to loop + if extended_loop: + self.writeline(f"{loop_ref} = missing") + + for name in node.find_all(nodes.Name): + if name.ctx == "store" and name.name == "loop": + self.fail( + "Can't assign to special loop variable in for-loop target", + name.lineno, + ) + + if node.else_: + iteration_indicator = self.temporary_identifier() + self.writeline(f"{iteration_indicator} = 1") + + self.writeline(self.choose_async("async for ", "for "), node) + self.visit(node.target, loop_frame) + if extended_loop: + self.write(f", {loop_ref} in {self.choose_async('Async')}LoopContext(") + else: + self.write(" in ") + + if node.test: + self.write(f"{loop_filter_func}(") + if node.recursive: + self.write("reciter") + else: + if self.environment.is_async and not extended_loop: + self.write("auto_aiter(") + self.visit(node.iter, frame) + if self.environment.is_async and not extended_loop: + self.write(")") + if node.test: + self.write(")") + + if node.recursive: + self.write(", undefined, loop_render_func, depth):") + else: + self.write(", undefined):" if extended_loop else ":") + + self.indent() + self.enter_frame(loop_frame) + + self.writeline("_loop_vars = {}") + self.blockvisit(node.body, loop_frame) + if node.else_: + self.writeline(f"{iteration_indicator} = 0") + self.outdent() + self.leave_frame( + loop_frame, with_python_scope=node.recursive and not node.else_ + ) + + if node.else_: + self.writeline(f"if {iteration_indicator}:") + self.indent() + self.enter_frame(else_frame) + self.blockvisit(node.else_, else_frame) + self.leave_frame(else_frame) + self.outdent() + + # if the node was recursive we have to return the buffer contents + # and start the iteration code + if node.recursive: + self.return_buffer_contents(loop_frame) + self.outdent() + self.start_write(frame, node) + self.write(f"{self.choose_async('await ')}loop(") + if self.environment.is_async: + self.write("auto_aiter(") + self.visit(node.iter, frame) + if self.environment.is_async: + self.write(")") + self.write(", loop)") + self.end_write(frame) + + # at the end of the iteration, clear any assignments made in the + # loop from the top level + if self._assign_stack: + self._assign_stack[-1].difference_update(loop_frame.symbols.stores) + + def visit_If(self, node: nodes.If, frame: Frame) -> None: + if_frame = frame.soft() + self.writeline("if ", node) + self.visit(node.test, if_frame) + self.write(":") + self.indent() + self.blockvisit(node.body, if_frame) + self.outdent() + for elif_ in node.elif_: + self.writeline("elif ", elif_) + self.visit(elif_.test, if_frame) + self.write(":") + self.indent() + self.blockvisit(elif_.body, if_frame) + self.outdent() + if node.else_: + self.writeline("else:") + self.indent() + self.blockvisit(node.else_, if_frame) + self.outdent() + + def visit_Macro(self, node: nodes.Macro, frame: Frame) -> None: + macro_frame, macro_ref = self.macro_body(node, frame) + self.newline() + if frame.toplevel: + if not node.name.startswith("_"): + self.write(f"context.exported_vars.add({node.name!r})") + self.writeline(f"context.vars[{node.name!r}] = ") + self.write(f"{frame.symbols.ref(node.name)} = ") + self.macro_def(macro_ref, macro_frame) + + def visit_CallBlock(self, node: nodes.CallBlock, frame: Frame) -> None: + call_frame, macro_ref = self.macro_body(node, frame) + self.writeline("caller = ") + self.macro_def(macro_ref, call_frame) + self.start_write(frame, node) + self.visit_Call(node.call, frame, forward_caller=True) + self.end_write(frame) + + def visit_FilterBlock(self, node: nodes.FilterBlock, frame: Frame) -> None: + filter_frame = frame.inner() + filter_frame.symbols.analyze_node(node) + self.enter_frame(filter_frame) + self.buffer(filter_frame) + self.blockvisit(node.body, filter_frame) + self.start_write(frame, node) + self.visit_Filter(node.filter, filter_frame) + self.end_write(frame) + self.leave_frame(filter_frame) + + def visit_With(self, node: nodes.With, frame: Frame) -> None: + with_frame = frame.inner() + with_frame.symbols.analyze_node(node) + self.enter_frame(with_frame) + for target, expr in zip(node.targets, node.values): + self.newline() + self.visit(target, with_frame) + self.write(" = ") + self.visit(expr, frame) + self.blockvisit(node.body, with_frame) + self.leave_frame(with_frame) + + def visit_ExprStmt(self, node: nodes.ExprStmt, frame: Frame) -> None: + self.newline(node) + self.visit(node.node, frame) + + class _FinalizeInfo(t.NamedTuple): + const: t.Optional[t.Callable[..., str]] + src: t.Optional[str] + + @staticmethod + def _default_finalize(value: t.Any) -> t.Any: + """The default finalize function if the environment isn't + configured with one. Or, if the environment has one, this is + called on that function's output for constants. + """ + return str(value) + + _finalize: t.Optional[_FinalizeInfo] = None + + def _make_finalize(self) -> _FinalizeInfo: + """Build the finalize function to be used on constants and at + runtime. Cached so it's only created once for all output nodes. + + Returns a ``namedtuple`` with the following attributes: + + ``const`` + A function to finalize constant data at compile time. + + ``src`` + Source code to output around nodes to be evaluated at + runtime. + """ + if self._finalize is not None: + return self._finalize + + finalize: t.Optional[t.Callable[..., t.Any]] + finalize = default = self._default_finalize + src = None + + if self.environment.finalize: + src = "environment.finalize(" + env_finalize = self.environment.finalize + pass_arg = { + _PassArg.context: "context", + _PassArg.eval_context: "context.eval_ctx", + _PassArg.environment: "environment", + }.get( + _PassArg.from_obj(env_finalize) # type: ignore + ) + finalize = None + + if pass_arg is None: + + def finalize(value: t.Any) -> t.Any: + return default(env_finalize(value)) + + else: + src = f"{src}{pass_arg}, " + + if pass_arg == "environment": + + def finalize(value: t.Any) -> t.Any: + return default(env_finalize(self.environment, value)) + + self._finalize = self._FinalizeInfo(finalize, src) + return self._finalize + + def _output_const_repr(self, group: t.Iterable[t.Any]) -> str: + """Given a group of constant values converted from ``Output`` + child nodes, produce a string to write to the template module + source. + """ + return repr(concat(group)) + + def _output_child_to_const( + self, node: nodes.Expr, frame: Frame, finalize: _FinalizeInfo + ) -> str: + """Try to optimize a child of an ``Output`` node by trying to + convert it to constant, finalized data at compile time. + + If :exc:`Impossible` is raised, the node is not constant and + will be evaluated at runtime. Any other exception will also be + evaluated at runtime for easier debugging. + """ + const = node.as_const(frame.eval_ctx) + + if frame.eval_ctx.autoescape: + const = escape(const) + + # Template data doesn't go through finalize. + if isinstance(node, nodes.TemplateData): + return str(const) + + return finalize.const(const) # type: ignore + + def _output_child_pre( + self, node: nodes.Expr, frame: Frame, finalize: _FinalizeInfo + ) -> None: + """Output extra source code before visiting a child of an + ``Output`` node. + """ + if frame.eval_ctx.volatile: + self.write("(escape if context.eval_ctx.autoescape else str)(") + elif frame.eval_ctx.autoescape: + self.write("escape(") + else: + self.write("str(") + + if finalize.src is not None: + self.write(finalize.src) + + def _output_child_post( + self, node: nodes.Expr, frame: Frame, finalize: _FinalizeInfo + ) -> None: + """Output extra source code after visiting a child of an + ``Output`` node. + """ + self.write(")") + + if finalize.src is not None: + self.write(")") + + def visit_Output(self, node: nodes.Output, frame: Frame) -> None: + # If an extends is active, don't render outside a block. + if frame.require_output_check: + # A top-level extends is known to exist at compile time. + if self.has_known_extends: + return + + self.writeline("if parent_template is None:") + self.indent() + + finalize = self._make_finalize() + body: t.List[t.Union[t.List[t.Any], nodes.Expr]] = [] + + # Evaluate constants at compile time if possible. Each item in + # body will be either a list of static data or a node to be + # evaluated at runtime. + for child in node.nodes: + try: + if not ( + # If the finalize function requires runtime context, + # constants can't be evaluated at compile time. + finalize.const + # Unless it's basic template data that won't be + # finalized anyway. + or isinstance(child, nodes.TemplateData) + ): + raise nodes.Impossible() + + const = self._output_child_to_const(child, frame, finalize) + except (nodes.Impossible, Exception): + # The node was not constant and needs to be evaluated at + # runtime. Or another error was raised, which is easier + # to debug at runtime. + body.append(child) + continue + + if body and isinstance(body[-1], list): + body[-1].append(const) + else: + body.append([const]) + + if frame.buffer is not None: + if len(body) == 1: + self.writeline(f"{frame.buffer}.append(") + else: + self.writeline(f"{frame.buffer}.extend((") + + self.indent() + + for item in body: + if isinstance(item, list): + # A group of constant data to join and output. + val = self._output_const_repr(item) + + if frame.buffer is None: + self.writeline("yield " + val) + else: + self.writeline(val + ",") + else: + if frame.buffer is None: + self.writeline("yield ", item) + else: + self.newline(item) + + # A node to be evaluated at runtime. + self._output_child_pre(item, frame, finalize) + self.visit(item, frame) + self._output_child_post(item, frame, finalize) + + if frame.buffer is not None: + self.write(",") + + if frame.buffer is not None: + self.outdent() + self.writeline(")" if len(body) == 1 else "))") + + if frame.require_output_check: + self.outdent() + + def visit_Assign(self, node: nodes.Assign, frame: Frame) -> None: + self.push_assign_tracking() + self.newline(node) + self.visit(node.target, frame) + self.write(" = ") + self.visit(node.node, frame) + self.pop_assign_tracking(frame) + + def visit_AssignBlock(self, node: nodes.AssignBlock, frame: Frame) -> None: + self.push_assign_tracking() + block_frame = frame.inner() + # This is a special case. Since a set block always captures we + # will disable output checks. This way one can use set blocks + # toplevel even in extended templates. + block_frame.require_output_check = False + block_frame.symbols.analyze_node(node) + self.enter_frame(block_frame) + self.buffer(block_frame) + self.blockvisit(node.body, block_frame) + self.newline(node) + self.visit(node.target, frame) + self.write(" = (Markup if context.eval_ctx.autoescape else identity)(") + if node.filter is not None: + self.visit_Filter(node.filter, block_frame) + else: + self.write(f"concat({block_frame.buffer})") + self.write(")") + self.pop_assign_tracking(frame) + self.leave_frame(block_frame) + + # -- Expression Visitors + + def visit_Name(self, node: nodes.Name, frame: Frame) -> None: + if node.ctx == "store" and ( + frame.toplevel or frame.loop_frame or frame.block_frame + ): + if self._assign_stack: + self._assign_stack[-1].add(node.name) + ref = frame.symbols.ref(node.name) + + # If we are looking up a variable we might have to deal with the + # case where it's undefined. We can skip that case if the load + # instruction indicates a parameter which are always defined. + if node.ctx == "load": + load = frame.symbols.find_load(ref) + if not ( + load is not None + and load[0] == VAR_LOAD_PARAMETER + and not self.parameter_is_undeclared(ref) + ): + self.write( + f"(undefined(name={node.name!r}) if {ref} is missing else {ref})" + ) + return + + self.write(ref) + + def visit_NSRef(self, node: nodes.NSRef, frame: Frame) -> None: + # NSRefs can only be used to store values; since they use the normal + # `foo.bar` notation they will be parsed as a normal attribute access + # when used anywhere but in a `set` context + ref = frame.symbols.ref(node.name) + self.writeline(f"if not isinstance({ref}, Namespace):") + self.indent() + self.writeline( + "raise TemplateRuntimeError" + '("cannot assign attribute on non-namespace object")' + ) + self.outdent() + self.writeline(f"{ref}[{node.attr!r}]") + + def visit_Const(self, node: nodes.Const, frame: Frame) -> None: + val = node.as_const(frame.eval_ctx) + if isinstance(val, float): + self.write(str(val)) + else: + self.write(repr(val)) + + def visit_TemplateData(self, node: nodes.TemplateData, frame: Frame) -> None: + try: + self.write(repr(node.as_const(frame.eval_ctx))) + except nodes.Impossible: + self.write( + f"(Markup if context.eval_ctx.autoescape else identity)({node.data!r})" + ) + + def visit_Tuple(self, node: nodes.Tuple, frame: Frame) -> None: + self.write("(") + idx = -1 + for idx, item in enumerate(node.items): + if idx: + self.write(", ") + self.visit(item, frame) + self.write(",)" if idx == 0 else ")") + + def visit_List(self, node: nodes.List, frame: Frame) -> None: + self.write("[") + for idx, item in enumerate(node.items): + if idx: + self.write(", ") + self.visit(item, frame) + self.write("]") + + def visit_Dict(self, node: nodes.Dict, frame: Frame) -> None: + self.write("{") + for idx, item in enumerate(node.items): + if idx: + self.write(", ") + self.visit(item.key, frame) + self.write(": ") + self.visit(item.value, frame) + self.write("}") + + visit_Add = _make_binop("+") + visit_Sub = _make_binop("-") + visit_Mul = _make_binop("*") + visit_Div = _make_binop("/") + visit_FloorDiv = _make_binop("//") + visit_Pow = _make_binop("**") + visit_Mod = _make_binop("%") + visit_And = _make_binop("and") + visit_Or = _make_binop("or") + visit_Pos = _make_unop("+") + visit_Neg = _make_unop("-") + visit_Not = _make_unop("not ") + + @optimizeconst + def visit_Concat(self, node: nodes.Concat, frame: Frame) -> None: + if frame.eval_ctx.volatile: + func_name = "(markup_join if context.eval_ctx.volatile else str_join)" + elif frame.eval_ctx.autoescape: + func_name = "markup_join" + else: + func_name = "str_join" + self.write(f"{func_name}((") + for arg in node.nodes: + self.visit(arg, frame) + self.write(", ") + self.write("))") + + @optimizeconst + def visit_Compare(self, node: nodes.Compare, frame: Frame) -> None: + self.write("(") + self.visit(node.expr, frame) + for op in node.ops: + self.visit(op, frame) + self.write(")") + + def visit_Operand(self, node: nodes.Operand, frame: Frame) -> None: + self.write(f" {operators[node.op]} ") + self.visit(node.expr, frame) + + @optimizeconst + def visit_Getattr(self, node: nodes.Getattr, frame: Frame) -> None: + if self.environment.is_async: + self.write("(await auto_await(") + + self.write("environment.getattr(") + self.visit(node.node, frame) + self.write(f", {node.attr!r})") + + if self.environment.is_async: + self.write("))") + + @optimizeconst + def visit_Getitem(self, node: nodes.Getitem, frame: Frame) -> None: + # slices bypass the environment getitem method. + if isinstance(node.arg, nodes.Slice): + self.visit(node.node, frame) + self.write("[") + self.visit(node.arg, frame) + self.write("]") + else: + if self.environment.is_async: + self.write("(await auto_await(") + + self.write("environment.getitem(") + self.visit(node.node, frame) + self.write(", ") + self.visit(node.arg, frame) + self.write(")") + + if self.environment.is_async: + self.write("))") + + def visit_Slice(self, node: nodes.Slice, frame: Frame) -> None: + if node.start is not None: + self.visit(node.start, frame) + self.write(":") + if node.stop is not None: + self.visit(node.stop, frame) + if node.step is not None: + self.write(":") + self.visit(node.step, frame) + + @contextmanager + def _filter_test_common( + self, node: t.Union[nodes.Filter, nodes.Test], frame: Frame, is_filter: bool + ) -> t.Iterator[None]: + if self.environment.is_async: + self.write("(await auto_await(") + + if is_filter: + self.write(f"{self.filters[node.name]}(") + func = self.environment.filters.get(node.name) + else: + self.write(f"{self.tests[node.name]}(") + func = self.environment.tests.get(node.name) + + # When inside an If or CondExpr frame, allow the filter to be + # undefined at compile time and only raise an error if it's + # actually called at runtime. See pull_dependencies. + if func is None and not frame.soft_frame: + type_name = "filter" if is_filter else "test" + self.fail(f"No {type_name} named {node.name!r}.", node.lineno) + + pass_arg = { + _PassArg.context: "context", + _PassArg.eval_context: "context.eval_ctx", + _PassArg.environment: "environment", + }.get( + _PassArg.from_obj(func) # type: ignore + ) + + if pass_arg is not None: + self.write(f"{pass_arg}, ") + + # Back to the visitor function to handle visiting the target of + # the filter or test. + yield + + self.signature(node, frame) + self.write(")") + + if self.environment.is_async: + self.write("))") + + @optimizeconst + def visit_Filter(self, node: nodes.Filter, frame: Frame) -> None: + with self._filter_test_common(node, frame, True): + # if the filter node is None we are inside a filter block + # and want to write to the current buffer + if node.node is not None: + self.visit(node.node, frame) + elif frame.eval_ctx.volatile: + self.write( + f"(Markup(concat({frame.buffer}))" + f" if context.eval_ctx.autoescape else concat({frame.buffer}))" + ) + elif frame.eval_ctx.autoescape: + self.write(f"Markup(concat({frame.buffer}))") + else: + self.write(f"concat({frame.buffer})") + + @optimizeconst + def visit_Test(self, node: nodes.Test, frame: Frame) -> None: + with self._filter_test_common(node, frame, False): + self.visit(node.node, frame) + + @optimizeconst + def visit_CondExpr(self, node: nodes.CondExpr, frame: Frame) -> None: + frame = frame.soft() + + def write_expr2() -> None: + if node.expr2 is not None: + self.visit(node.expr2, frame) + return + + self.write( + f'cond_expr_undefined("the inline if-expression on' + f" {self.position(node)} evaluated to false and no else" + f' section was defined.")' + ) + + self.write("(") + self.visit(node.expr1, frame) + self.write(" if ") + self.visit(node.test, frame) + self.write(" else ") + write_expr2() + self.write(")") + + @optimizeconst + def visit_Call( + self, node: nodes.Call, frame: Frame, forward_caller: bool = False + ) -> None: + if self.environment.is_async: + self.write("(await auto_await(") + if self.environment.sandboxed: + self.write("environment.call(context, ") + else: + self.write("context.call(") + self.visit(node.node, frame) + extra_kwargs = {"caller": "caller"} if forward_caller else None + loop_kwargs = {"_loop_vars": "_loop_vars"} if frame.loop_frame else {} + block_kwargs = {"_block_vars": "_block_vars"} if frame.block_frame else {} + if extra_kwargs: + extra_kwargs.update(loop_kwargs, **block_kwargs) + elif loop_kwargs or block_kwargs: + extra_kwargs = dict(loop_kwargs, **block_kwargs) + self.signature(node, frame, extra_kwargs) + self.write(")") + if self.environment.is_async: + self.write("))") + + def visit_Keyword(self, node: nodes.Keyword, frame: Frame) -> None: + self.write(node.key + "=") + self.visit(node.value, frame) + + # -- Unused nodes for extensions + + def visit_MarkSafe(self, node: nodes.MarkSafe, frame: Frame) -> None: + self.write("Markup(") + self.visit(node.expr, frame) + self.write(")") + + def visit_MarkSafeIfAutoescape( + self, node: nodes.MarkSafeIfAutoescape, frame: Frame + ) -> None: + self.write("(Markup if context.eval_ctx.autoescape else identity)(") + self.visit(node.expr, frame) + self.write(")") + + def visit_EnvironmentAttribute( + self, node: nodes.EnvironmentAttribute, frame: Frame + ) -> None: + self.write("environment." + node.name) + + def visit_ExtensionAttribute( + self, node: nodes.ExtensionAttribute, frame: Frame + ) -> None: + self.write(f"environment.extensions[{node.identifier!r}].{node.name}") + + def visit_ImportedName(self, node: nodes.ImportedName, frame: Frame) -> None: + self.write(self.import_aliases[node.importname]) + + def visit_InternalName(self, node: nodes.InternalName, frame: Frame) -> None: + self.write(node.name) + + def visit_ContextReference( + self, node: nodes.ContextReference, frame: Frame + ) -> None: + self.write("context") + + def visit_DerivedContextReference( + self, node: nodes.DerivedContextReference, frame: Frame + ) -> None: + self.write(self.derive_context(frame)) + + def visit_Continue(self, node: nodes.Continue, frame: Frame) -> None: + self.writeline("continue", node) + + def visit_Break(self, node: nodes.Break, frame: Frame) -> None: + self.writeline("break", node) + + def visit_Scope(self, node: nodes.Scope, frame: Frame) -> None: + scope_frame = frame.inner() + scope_frame.symbols.analyze_node(node) + self.enter_frame(scope_frame) + self.blockvisit(node.body, scope_frame) + self.leave_frame(scope_frame) + + def visit_OverlayScope(self, node: nodes.OverlayScope, frame: Frame) -> None: + ctx = self.temporary_identifier() + self.writeline(f"{ctx} = {self.derive_context(frame)}") + self.writeline(f"{ctx}.vars = ") + self.visit(node.context, frame) + self.push_context_reference(ctx) + + scope_frame = frame.inner(isolated=True) + scope_frame.symbols.analyze_node(node) + self.enter_frame(scope_frame) + self.blockvisit(node.body, scope_frame) + self.leave_frame(scope_frame) + self.pop_context_reference() + + def visit_EvalContextModifier( + self, node: nodes.EvalContextModifier, frame: Frame + ) -> None: + for keyword in node.options: + self.writeline(f"context.eval_ctx.{keyword.key} = ") + self.visit(keyword.value, frame) + try: + val = keyword.value.as_const(frame.eval_ctx) + except nodes.Impossible: + frame.eval_ctx.volatile = True + else: + setattr(frame.eval_ctx, keyword.key, val) + + def visit_ScopedEvalContextModifier( + self, node: nodes.ScopedEvalContextModifier, frame: Frame + ) -> None: + old_ctx_name = self.temporary_identifier() + saved_ctx = frame.eval_ctx.save() + self.writeline(f"{old_ctx_name} = context.eval_ctx.save()") + self.visit_EvalContextModifier(node, frame) + for child in node.body: + self.visit(child, frame) + frame.eval_ctx.revert(saved_ctx) + self.writeline(f"context.eval_ctx.revert({old_ctx_name})") diff --git a/server/venv/lib/python3.10/site-packages/jinja2/constants.py b/server/venv/lib/python3.10/site-packages/jinja2/constants.py new file mode 100644 index 0000000..41a1c23 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/constants.py @@ -0,0 +1,20 @@ +#: list of lorem ipsum words used by the lipsum() helper function +LOREM_IPSUM_WORDS = """\ +a ac accumsan ad adipiscing aenean aliquam aliquet amet ante aptent arcu at +auctor augue bibendum blandit class commodo condimentum congue consectetuer +consequat conubia convallis cras cubilia cum curabitur curae cursus dapibus +diam dictum dictumst dignissim dis dolor donec dui duis egestas eget eleifend +elementum elit enim erat eros est et etiam eu euismod facilisi facilisis fames +faucibus felis fermentum feugiat fringilla fusce gravida habitant habitasse hac +hendrerit hymenaeos iaculis id imperdiet in inceptos integer interdum ipsum +justo lacinia lacus laoreet lectus leo libero ligula litora lobortis lorem +luctus maecenas magna magnis malesuada massa mattis mauris metus mi molestie +mollis montes morbi mus nam nascetur natoque nec neque netus nibh nisi nisl non +nonummy nostra nulla nullam nunc odio orci ornare parturient pede pellentesque +penatibus per pharetra phasellus placerat platea porta porttitor posuere +potenti praesent pretium primis proin pulvinar purus quam quis quisque rhoncus +ridiculus risus rutrum sagittis sapien scelerisque sed sem semper senectus sit +sociis sociosqu sodales sollicitudin suscipit suspendisse taciti tellus tempor +tempus tincidunt torquent tortor tristique turpis ullamcorper ultrices +ultricies urna ut varius vehicula vel velit venenatis vestibulum vitae vivamus +viverra volutpat vulputate""" diff --git a/server/venv/lib/python3.10/site-packages/jinja2/debug.py b/server/venv/lib/python3.10/site-packages/jinja2/debug.py new file mode 100644 index 0000000..7ed7e92 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/debug.py @@ -0,0 +1,191 @@ +import sys +import typing as t +from types import CodeType +from types import TracebackType + +from .exceptions import TemplateSyntaxError +from .utils import internal_code +from .utils import missing + +if t.TYPE_CHECKING: + from .runtime import Context + + +def rewrite_traceback_stack(source: t.Optional[str] = None) -> BaseException: + """Rewrite the current exception to replace any tracebacks from + within compiled template code with tracebacks that look like they + came from the template source. + + This must be called within an ``except`` block. + + :param source: For ``TemplateSyntaxError``, the original source if + known. + :return: The original exception with the rewritten traceback. + """ + _, exc_value, tb = sys.exc_info() + exc_value = t.cast(BaseException, exc_value) + tb = t.cast(TracebackType, tb) + + if isinstance(exc_value, TemplateSyntaxError) and not exc_value.translated: + exc_value.translated = True + exc_value.source = source + # Remove the old traceback, otherwise the frames from the + # compiler still show up. + exc_value.with_traceback(None) + # Outside of runtime, so the frame isn't executing template + # code, but it still needs to point at the template. + tb = fake_traceback( + exc_value, None, exc_value.filename or "", exc_value.lineno + ) + else: + # Skip the frame for the render function. + tb = tb.tb_next + + stack = [] + + # Build the stack of traceback object, replacing any in template + # code with the source file and line information. + while tb is not None: + # Skip frames decorated with @internalcode. These are internal + # calls that aren't useful in template debugging output. + if tb.tb_frame.f_code in internal_code: + tb = tb.tb_next + continue + + template = tb.tb_frame.f_globals.get("__jinja_template__") + + if template is not None: + lineno = template.get_corresponding_lineno(tb.tb_lineno) + fake_tb = fake_traceback(exc_value, tb, template.filename, lineno) + stack.append(fake_tb) + else: + stack.append(tb) + + tb = tb.tb_next + + tb_next = None + + # Assign tb_next in reverse to avoid circular references. + for tb in reversed(stack): + tb.tb_next = tb_next + tb_next = tb + + return exc_value.with_traceback(tb_next) + + +def fake_traceback( # type: ignore + exc_value: BaseException, tb: t.Optional[TracebackType], filename: str, lineno: int +) -> TracebackType: + """Produce a new traceback object that looks like it came from the + template source instead of the compiled code. The filename, line + number, and location name will point to the template, and the local + variables will be the current template context. + + :param exc_value: The original exception to be re-raised to create + the new traceback. + :param tb: The original traceback to get the local variables and + code info from. + :param filename: The template filename. + :param lineno: The line number in the template source. + """ + if tb is not None: + # Replace the real locals with the context that would be + # available at that point in the template. + locals = get_template_locals(tb.tb_frame.f_locals) + locals.pop("__jinja_exception__", None) + else: + locals = {} + + globals = { + "__name__": filename, + "__file__": filename, + "__jinja_exception__": exc_value, + } + # Raise an exception at the correct line number. + code: CodeType = compile( + "\n" * (lineno - 1) + "raise __jinja_exception__", filename, "exec" + ) + + # Build a new code object that points to the template file and + # replaces the location with a block name. + location = "template" + + if tb is not None: + function = tb.tb_frame.f_code.co_name + + if function == "root": + location = "top-level template code" + elif function.startswith("block_"): + location = f"block {function[6:]!r}" + + if sys.version_info >= (3, 8): + code = code.replace(co_name=location) + else: + code = CodeType( + code.co_argcount, + code.co_kwonlyargcount, + code.co_nlocals, + code.co_stacksize, + code.co_flags, + code.co_code, + code.co_consts, + code.co_names, + code.co_varnames, + code.co_filename, + location, + code.co_firstlineno, + code.co_lnotab, + code.co_freevars, + code.co_cellvars, + ) + + # Execute the new code, which is guaranteed to raise, and return + # the new traceback without this frame. + try: + exec(code, globals, locals) + except BaseException: + return sys.exc_info()[2].tb_next # type: ignore + + +def get_template_locals(real_locals: t.Mapping[str, t.Any]) -> t.Dict[str, t.Any]: + """Based on the runtime locals, get the context that would be + available at that point in the template. + """ + # Start with the current template context. + ctx: "t.Optional[Context]" = real_locals.get("context") + + if ctx is not None: + data: t.Dict[str, t.Any] = ctx.get_all().copy() + else: + data = {} + + # Might be in a derived context that only sets local variables + # rather than pushing a context. Local variables follow the scheme + # l_depth_name. Find the highest-depth local that has a value for + # each name. + local_overrides: t.Dict[str, t.Tuple[int, t.Any]] = {} + + for name, value in real_locals.items(): + if not name.startswith("l_") or value is missing: + # Not a template variable, or no longer relevant. + continue + + try: + _, depth_str, name = name.split("_", 2) + depth = int(depth_str) + except ValueError: + continue + + cur_depth = local_overrides.get(name, (-1,))[0] + + if cur_depth < depth: + local_overrides[name] = (depth, value) + + # Modify the context with any derived context. + for name, (_, value) in local_overrides.items(): + if value is missing: + data.pop(name, None) + else: + data[name] = value + + return data diff --git a/server/venv/lib/python3.10/site-packages/jinja2/defaults.py b/server/venv/lib/python3.10/site-packages/jinja2/defaults.py new file mode 100644 index 0000000..638cad3 --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/defaults.py @@ -0,0 +1,48 @@ +import typing as t + +from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 +from .tests import TESTS as DEFAULT_TESTS # noqa: F401 +from .utils import Cycler +from .utils import generate_lorem_ipsum +from .utils import Joiner +from .utils import Namespace + +if t.TYPE_CHECKING: + import typing_extensions as te + +# defaults for the parser / lexer +BLOCK_START_STRING = "{%" +BLOCK_END_STRING = "%}" +VARIABLE_START_STRING = "{{" +VARIABLE_END_STRING = "}}" +COMMENT_START_STRING = "{#" +COMMENT_END_STRING = "#}" +LINE_STATEMENT_PREFIX: t.Optional[str] = None +LINE_COMMENT_PREFIX: t.Optional[str] = None +TRIM_BLOCKS = False +LSTRIP_BLOCKS = False +NEWLINE_SEQUENCE: "te.Literal['\\n', '\\r\\n', '\\r']" = "\n" +KEEP_TRAILING_NEWLINE = False + +# default filters, tests and namespace + +DEFAULT_NAMESPACE = { + "range": range, + "dict": dict, + "lipsum": generate_lorem_ipsum, + "cycler": Cycler, + "joiner": Joiner, + "namespace": Namespace, +} + +# default policies +DEFAULT_POLICIES: t.Dict[str, t.Any] = { + "compiler.ascii_str": True, + "urlize.rel": "noopener", + "urlize.target": None, + "urlize.extra_schemes": None, + "truncate.leeway": 5, + "json.dumps_function": None, + "json.dumps_kwargs": {"sort_keys": True}, + "ext.i18n.trimmed": False, +} diff --git a/server/venv/lib/python3.10/site-packages/jinja2/environment.py b/server/venv/lib/python3.10/site-packages/jinja2/environment.py new file mode 100644 index 0000000..ea04e8b --- /dev/null +++ b/server/venv/lib/python3.10/site-packages/jinja2/environment.py @@ -0,0 +1,1667 @@ +"""Classes for managing templates and their runtime and compile time +options. +""" +import os +import typing +import typing as t +import weakref +from collections import ChainMap +from functools import lru_cache +from functools import partial +from functools import reduce +from types import CodeType + +from markupsafe import Markup + +from . import nodes +from .compiler import CodeGenerator +from .compiler import generate +from .defaults import BLOCK_END_STRING +from .defaults import BLOCK_START_STRING +from .defaults import COMMENT_END_STRING +from .defaults import COMMENT_START_STRING +from .defaults import DEFAULT_FILTERS +from .defaults import DEFAULT_NAMESPACE +from .defaults import DEFAULT_POLICIES +from .defaults import DEFAULT_TESTS +from .defaults import KEEP_TRAILING_NEWLINE +from .defaults import LINE_COMMENT_PREFIX +from .defaults import LINE_STATEMENT_PREFIX +from .defaults import LSTRIP_BLOCKS +from .defaults import NEWLINE_SEQUENCE +from .defaults import TRIM_BLOCKS +from .defaults import VARIABLE_END_STRING +from .defaults import VARIABLE_START_STRING +from .exceptions import TemplateNotFound +from .exceptions import TemplateRuntimeError +from .exceptions import TemplatesNotFound +from .exceptions import TemplateSyntaxError +from .exceptions import UndefinedError +from .lexer import get_lexer +from .lexer import Lexer +from .lexer import TokenStream +from .nodes import EvalContext +from .parser import Parser +from .runtime import Context +from .runtime import new_context +from .runtime import Undefined +from .utils import _PassArg +from .utils import concat +from .utils import consume +from .utils import import_string +from .utils import internalcode +from .utils import LRUCache +from .utils import missing + +if t.TYPE_CHECKING: + import typing_extensions as te + from .bccache import BytecodeCache + from .ext import Extension + from .loaders import BaseLoader + +_env_bound = t.TypeVar("_env_bound", bound="Environment") + + +# for direct template usage we have up to ten living environments +@lru_cache(maxsize=10) +def get_spontaneous_environment(cls: t.Type[_env_bound], *args: t.Any) -> _env_bound: + """Return a new spontaneous environment. A spontaneous environment + is used for templates created directly rather than through an + existing environment. + + :param cls: Environment class to create. + :param args: Positional arguments passed to environment. + """ + env = cls(*args) + env.shared = True + return env + + +def create_cache( + size: int, +) -> t.Optional[t.MutableMapping[t.Tuple[weakref.ref, str], "Template"]]: + """Return the cache class for the given size.""" + if size == 0: + return None + + if size < 0: + return {} + + return LRUCache(size) # type: ignore + + +def copy_cache( + cache: t.Optional[t.MutableMapping], +) -> t.Optional[t.MutableMapping[t.Tuple[weakref.ref, str], "Template"]]: + """Create an empty copy of the given cache.""" + if cache is None: + return None + + if type(cache) is dict: + return {} + + return LRUCache(cache.capacity) # type: ignore + + +def load_extensions( + environment: "Environment", + extensions: t.Sequence[t.Union[str, t.Type["Extension"]]], +) -> t.Dict[str, "Extension"]: + """Load the extensions from the list and bind it to the environment. + Returns a dict of instantiated extensions. + """ + result = {} + + for extension in extensions: + if isinstance(extension, str): + extension = t.cast(t.Type["Extension"], import_string(extension)) + + result[extension.identifier] = extension(environment) + + return result + + +def _environment_config_check(environment: "Environment") -> "Environment": + """Perform a sanity check on the environment.""" + assert issubclass( + environment.undefined, Undefined + ), "'undefined' must be a subclass of 'jinja2.Undefined'." + assert ( + environment.block_start_string + != environment.variable_start_string + != environment.comment_start_string + ), "block, variable and comment start strings must be different." + assert environment.newline_sequence in { + "\r", + "\r\n", + "\n", + }, "'newline_sequence' must be one of '\\n', '\\r\\n', or '\\r'." + return environment + + +class Environment: + r"""The core component of Jinja is the `Environment`. It contains + important shared variables like configuration, filters, tests, + globals and others. Instances of this class may be modified if + they are not shared and if no template was loaded so far. + Modifications on environments after the first template was loaded + will lead to surprising effects and undefined behavior. + + Here are the possible initialization parameters: + + `block_start_string` + The string marking the beginning of a block. Defaults to ``'{%'``. + + `block_end_string` + The string marking the end of a block. Defaults to ``'%}'``. + + `variable_start_string` + The string marking the beginning of a print statement. + Defaults to ``'{{'``. + + `variable_end_string` + The string marking the end of a print statement. Defaults to + ``'}}'``. + + `comment_start_string` + The string marking the beginning of a comment. Defaults to ``'{#'``. + + `comment_end_string` + The string marking the end of a comment. Defaults to ``'#}'``. + + `line_statement_prefix` + If given and a string, this will be used as prefix for line based + statements. See also :ref:`line-statements`. + + `line_comment_prefix` + If given and a string, this will be used as prefix for line based + comments. See also :ref:`line-statements`. + + .. versionadded:: 2.2 + + `trim_blocks` + If this is set to ``True`` the first newline after a block is + removed (block, not variable tag!). Defaults to `False`. + + `lstrip_blocks` + If this is set to ``True`` leading spaces and tabs are stripped + from the start of a line to a block. Defaults to `False`. + + `newline_sequence` + The sequence that starts a newline. Must be one of ``'\r'``, + ``'\n'`` or ``'\r\n'``. The default is ``'\n'`` which is a + useful default for Linux and OS X systems as well as web + applications. + + `keep_trailing_newline` + Preserve the trailing newline when rendering templates. + The default is ``False``, which causes a single newline, + if present, to be stripped from the end of the template. + + .. versionadded:: 2.7 + + `extensions` + List of Jinja extensions to use. This can either be import paths + as strings or extension classes. For more information have a + look at :ref:`the extensions documentation `. + + `optimized` + should the optimizer be enabled? Default is ``True``. + + `undefined` + :class:`Undefined` or a subclass of it that is used to represent + undefined values in the template. + + `finalize` + A callable that can be used to process the result of a variable + expression before it is output. For example one can convert + ``None`` implicitly into an empty string here. + + `autoescape` + If set to ``True`` the XML/HTML autoescaping feature is enabled by + default. For more details about autoescaping see + :class:`~markupsafe.Markup`. As of Jinja 2.4 this can also + be a callable that is passed the template name and has to + return ``True`` or ``False`` depending on autoescape should be + enabled by default. + + .. versionchanged:: 2.4 + `autoescape` can now be a function + + `loader` + The template loader for this environment. + + `cache_size` + The size of the cache. Per default this is ``400`` which means + that if more than 400 templates are loaded the loader will clean + out the least recently used template. If the cache size is set to + ``0`` templates are recompiled all the time, if the cache size is + ``-1`` the cache will not be cleaned. + + .. versionchanged:: 2.8 + The cache size was increased to 400 from a low 50. + + `auto_reload` + Some loaders load templates from locations where the template + sources may change (ie: file system or database). If + ``auto_reload`` is set to ``True`` (default) every time a template is + requested the loader checks if the source changed and if yes, it + will reload the template. For higher performance it's possible to + disable that. + + `bytecode_cache` + If set to a bytecode cache object, this object will provide a + cache for the internal Jinja bytecode so that templates don't + have to be parsed if they were not changed. + + See :ref:`bytecode-cache` for more information. + + `enable_async` + If set to true this enables async template execution which + allows using async functions and generators. + """ + + #: if this environment is sandboxed. Modifying this variable won't make + #: the environment sandboxed though. For a real sandboxed environment + #: have a look at jinja2.sandbox. This flag alone controls the code + #: generation by the compiler. + sandboxed = False + + #: True if the environment is just an overlay + overlayed = False + + #: the environment this environment is linked to if it is an overlay + linked_to: t.Optional["Environment"] = None + + #: shared environments have this set to `True`. A shared environment + #: must not be modified + shared = False + + #: the class that is used for code generation. See + #: :class:`~jinja2.compiler.CodeGenerator` for more information. + code_generator_class: t.Type["CodeGenerator"] = CodeGenerator + + concat = "".join + + #: the context class that is used for templates. See + #: :class:`~jinja2.runtime.Context` for more information. + context_class: t.Type[Context] = Context + + template_class: t.Type["Template"] + + def __init__( + self, + block_start_string: str = BLOCK_START_STRING, + block_end_string: str = BLOCK_END_STRING, + variable_start_string: str = VARIABLE_START_STRING, + variable_end_string: str = VARIABLE_END_STRING, + comment_start_string: str = COMMENT_START_STRING, + comment_end_string: str = COMMENT_END_STRING, + line_statement_prefix: t.Optional[str] = LINE_STATEMENT_PREFIX, + line_comment_prefix: t.Optional[str] = LINE_COMMENT_PREFIX, + trim_blocks: bool = TRIM_BLOCKS, + lstrip_blocks: bool = LSTRIP_BLOCKS, + newline_sequence: "te.Literal['\\n', '\\r\\n', '\\r']" = NEWLINE_SEQUENCE, + keep_trailing_newline: bool = KEEP_TRAILING_NEWLINE, + extensions: t.Sequence[t.Union[str, t.Type["Extension"]]] = (), + optimized: bool = True, + undefined: t.Type[Undefined] = Undefined, + finalize: t.Optional[t.Callable[..., t.Any]] = None, + autoescape: t.Union[bool, t.Callable[[t.Optional[str]], bool]] = False, + loader: t.Optional["BaseLoader"] = None, + cache_size: int = 400, + auto_reload: bool = True, + bytecode_cache: t.Optional["BytecodeCache"] = None, + enable_async: bool = False, + ): + # !!Important notice!! + # The constructor accepts quite a few arguments that should be + # passed by keyword rather than position. However it's important to + # not change the order of arguments because it's used at least + # internally in those cases: + # - spontaneous environments (i18n extension and Template) + # - unittests + # If parameter changes are required only add parameters at the end + # and don't change the arguments (or the defaults!) of the arguments + # existing already. + + # lexer / parser information + self.block_start_string = block_start_string + self.block_end_string = block_end_string + self.variable_start_string = variable_start_string + self.variable_end_string = variable_end_string + self.comment_start_string = comment_start_string + self.comment_end_string = comment_end_string + self.line_statement_prefix = line_statement_prefix + self.line_comment_prefix = line_comment_prefix + self.trim_blocks = trim_blocks + self.lstrip_blocks = lstrip_blocks + self.newline_sequence = newline_sequence + self.keep_trailing_newline = keep_trailing_newline + + # runtime information + self.undefined: t.Type[Undefined] = undefined + self.optimized = optimized + self.finalize = finalize + self.autoescape = autoescape + + # defaults + self.filters = DEFAULT_FILTERS.copy() + self.tests = DEFAULT_TESTS.copy() + self.globals = DEFAULT_NAMESPACE.copy() + + # set the loader provided + self.loader = loader + self.cache = create_cache(cache_size) + self.bytecode_cache = bytecode_cache + self.auto_reload = auto_reload + + # configurable policies + self.policies = DEFAULT_POLICIES.copy() + + # load extensions + self.extensions = load_extensions(self, extensions) + + self.is_async = enable_async + _environment_config_check(self) + + def add_extension(self, extension: t.Union[str, t.Type["Extension"]]) -> None: + """Adds an extension after the environment was created. + + .. versionadded:: 2.5 + """ + self.extensions.update(load_extensions(self, [extension])) + + def extend(self, **attributes: t.Any) -> None: + """Add the items to the instance of the environment if they do not exist + yet. This is used by :ref:`extensions ` to register + callbacks and configuration values without breaking inheritance. + """ + for key, value in attributes.items(): + if not hasattr(self, key): + setattr(self, key, value) + + def overlay( + self, + block_start_string: str = missing, + block_end_string: str = missing, + variable_start_string: str = missing, + variable_end_string: str = missing, + comment_start_string: str = missing, + comment_end_string: str = missing, + line_statement_prefix: t.Optional[str] = missing, + line_comment_prefix: t.Optional[str] = missing, + trim_blocks: bool = missing, + lstrip_blocks: bool = missing, + newline_sequence: "te.Literal['\\n', '\\r\\n', '\\r']" = missing, + keep_trailing_newline: bool = missing, + extensions: t.Sequence[t.Union[str, t.Type["Extension"]]] = missing, + optimized: bool = missing, + undefined: t.Type[Undefined] = missing, + finalize: t.Optional[t.Callable[..., t.Any]] = missing, + autoescape: t.Union[bool, t.Callable[[t.Optional[str]], bool]] = missing, + loader: t.Optional["BaseLoader"] = missing, + cache_size: int = missing, + auto_reload: bool = missing, + bytecode_cache: t.Optional["BytecodeCache"] = missing, + enable_async: bool = False, + ) -> "Environment": + """Create a new overlay environment that shares all the data with the + current environment except for cache and the overridden attributes. + Extensions cannot be removed for an overlayed environment. An overlayed + environment automatically gets all the extensions of the environment it + is linked to plus optional extra extensions. + + Creating overlays should happen after the initial environment was set + up completely. Not all attributes are truly linked, some are just + copied over so modifications on the original environment may not shine + through. + + .. versionchanged:: 3.1.2 + Added the ``newline_sequence``,, ``keep_trailing_newline``, + and ``enable_async`` parameters to match ``__init__``. + """ + args = dict(locals()) + del args["self"], args["cache_size"], args["extensions"], args["enable_async"] + + rv = object.__new__(self.__class__) + rv.__dict__.update(self.__dict__) + rv.overlayed = True + rv.linked_to = self + + for key, value in args.items(): + if value is not missing: + setattr(rv, key, value) + + if cache_size is not missing: + rv.cache = create_cache(cache_size) + else: + rv.cache = copy_cache(self.cache) + + rv.extensions = {} + for key, value in self.extensions.items(): + rv.extensions[key] = value.bind(rv) + if extensions is not missing: + rv.extensions.update(load_extensions(rv, extensions)) + + if enable_async is not missing: + rv.is_async = enable_async + + return _environment_config_check(rv) + + @property + def lexer(self) -> Lexer: + """The lexer for this environment.""" + return get_lexer(self) + + def iter_extensions(self) -> t.Iterator["Extension"]: + """Iterates over the extensions by priority.""" + return iter(sorted(self.extensions.values(), key=lambda x: x.priority)) + + def getitem( + self, obj: t.Any, argument: t.Union[str, t.Any] + ) -> t.Union[t.Any, Undefined]: + """Get an item or attribute of an object but prefer the item.""" + try: + return obj[argument] + except (AttributeError, TypeError, LookupError): + if isinstance(argument, str): + try: + attr = str(argument) + except Exception: + pass + else: + try: + return getattr(obj, attr) + except AttributeError: + pass + return self.undefined(obj=obj, name=argument) + + def getattr(self, obj: t.Any, attribute: str) -> t.Any: + """Get an item or attribute of an object but prefer the attribute. + Unlike :meth:`getitem` the attribute *must* be a string. + """ + try: + return getattr(obj, attribute) + except AttributeError: + pass + try: + return obj[attribute] + except (TypeError, LookupError, AttributeError): + return self.undefined(obj=obj, name=attribute) + + def _filter_test_common( + self, + name: t.Union[str, Undefined], + value: t.Any, + args: t.Optional[t.Sequence[t.Any]], + kwargs: t.Optional[t.Mapping[str, t.Any]], + context: t.Optional[Context], + eval_ctx: t.Optional[EvalContext], + is_filter: bool, + ) -> t.Any: + if is_filter: + env_map = self.filters + type_name = "filter" + else: + env_map = self.tests + type_name = "test" + + func = env_map.get(name) # type: ignore + + if func is None: + msg = f"No {type_name} named {name!r}." + + if isinstance(name, Undefined): + try: + name._fail_with_undefined_error() + except Exception as e: + msg = f"{msg} ({e}; did you forget to quote the callable name?)" + + raise TemplateRuntimeError(msg) + + args = [value, *(args if args is not None else ())] + kwargs = kwargs if kwargs is not None else {} + pass_arg = _PassArg.from_obj(func) + + if pass_arg is _PassArg.context: + if context is None: + raise TemplateRuntimeError( + f"Attempted to invoke a context {type_name} without context." + ) + + args.insert(0, context) + elif pass_arg is _PassArg.eval_context: + if eval_ctx is None: + if context is not None: + eval_ctx = context.eval_ctx + else: + eval_ctx = EvalContext(self) + + args.insert(0, eval_ctx) + elif pass_arg is _PassArg.environment: + args.insert(0, self) + + return func(*args, **kwargs) + + def call_filter( + self, + name: str, + value: t.Any, + args: t.Optional[t.Sequence[t.Any]] = None, + kwargs: t.Optional[t.Mapping[str, t.Any]] = None, + context: t.Optional[Context] = None, + eval_ctx: t.Optional[EvalContext] = None, + ) -> t.Any: + """Invoke a filter on a value the same way the compiler does. + + This might return a coroutine if the filter is running from an + environment in async mode and the filter supports async + execution. It's your responsibility to await this if needed. + + .. versionadded:: 2.7 + """ + return self._filter_test_common( + name, value, args, kwargs, context, eval_ctx, True + ) + + def call_test( + self, + name: str, + value: t.Any, + args: t.Optional[t.Sequence[t.Any]] = None, + kwargs: t.Optional[t.Mapping[str, t.Any]] = None, + context: t.Optional[Context] = None, + eval_ctx: t.Optional[EvalContext] = None, + ) -> t.Any: + """Invoke a test on a value the same way the compiler does. + + This might return a coroutine if the test is running from an + environment in async mode and the test supports async execution. + It's your responsibility to await this if needed. + + .. versionchanged:: 3.0 + Tests support ``@pass_context``, etc. decorators. Added + the ``context`` and ``eval_ctx`` parameters. + + .. versionadded:: 2.7 + """ + return self._filter_test_common( + name, value, args, kwargs, context, eval_ctx, False + ) + + @internalcode + def parse( + self, + source: str, + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + ) -> nodes.Template: + """Parse the sourcecode and return the abstract syntax tree. This + tree of nodes is used by the compiler to convert the template into + executable source- or bytecode. This is useful for debugging or to + extract information from templates. + + If you are :ref:`developing Jinja extensions ` + this gives you a good overview of the node tree generated. + """ + try: + return self._parse(source, name, filename) + except TemplateSyntaxError: + self.handle_exception(source=source) + + def _parse( + self, source: str, name: t.Optional[str], filename: t.Optional[str] + ) -> nodes.Template: + """Internal parsing function used by `parse` and `compile`.""" + return Parser(self, source, name, filename).parse() + + def lex( + self, + source: str, + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + ) -> t.Iterator[t.Tuple[int, str, str]]: + """Lex the given sourcecode and return a generator that yields + tokens as tuples in the form ``(lineno, token_type, value)``. + This can be useful for :ref:`extension development ` + and debugging templates. + + This does not perform preprocessing. If you want the preprocessing + of the extensions to be applied you have to filter source through + the :meth:`preprocess` method. + """ + source = str(source) + try: + return self.lexer.tokeniter(source, name, filename) + except TemplateSyntaxError: + self.handle_exception(source=source) + + def preprocess( + self, + source: str, + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + ) -> str: + """Preprocesses the source with all extensions. This is automatically + called for all parsing and compiling methods but *not* for :meth:`lex` + because there you usually only want the actual source tokenized. + """ + return reduce( + lambda s, e: e.preprocess(s, name, filename), + self.iter_extensions(), + str(source), + ) + + def _tokenize( + self, + source: str, + name: t.Optional[str], + filename: t.Optional[str] = None, + state: t.Optional[str] = None, + ) -> TokenStream: + """Called by the parser to do the preprocessing and filtering + for all the extensions. Returns a :class:`~jinja2.lexer.TokenStream`. + """ + source = self.preprocess(source, name, filename) + stream = self.lexer.tokenize(source, name, filename, state) + + for ext in self.iter_extensions(): + stream = ext.filter_stream(stream) # type: ignore + + if not isinstance(stream, TokenStream): + stream = TokenStream(stream, name, filename) # type: ignore + + return stream + + def _generate( + self, + source: nodes.Template, + name: t.Optional[str], + filename: t.Optional[str], + defer_init: bool = False, + ) -> str: + """Internal hook that can be overridden to hook a different generate + method in. + + .. versionadded:: 2.5 + """ + return generate( # type: ignore + source, + self, + name, + filename, + defer_init=defer_init, + optimized=self.optimized, + ) + + def _compile(self, source: str, filename: str) -> CodeType: + """Internal hook that can be overridden to hook a different compile + method in. + + .. versionadded:: 2.5 + """ + return compile(source, filename, "exec") # type: ignore + + @typing.overload + def compile( # type: ignore + self, + source: t.Union[str, nodes.Template], + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + raw: "te.Literal[False]" = False, + defer_init: bool = False, + ) -> CodeType: + ... + + @typing.overload + def compile( + self, + source: t.Union[str, nodes.Template], + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + raw: "te.Literal[True]" = ..., + defer_init: bool = False, + ) -> str: + ... + + @internalcode + def compile( + self, + source: t.Union[str, nodes.Template], + name: t.Optional[str] = None, + filename: t.Optional[str] = None, + raw: bool = False, + defer_init: bool = False, + ) -> t.Union[str, CodeType]: + """Compile a node or template source code. The `name` parameter is + the load name of the template after it was joined using + :meth:`join_path` if necessary, not the filename on the file system. + the `filename` parameter is the estimated filename of the template on + the file system. If the template came from a database or memory this + can be omitted. + + The return value of this method is a python code object. If the `raw` + parameter is `True` the return value will be a string with python + code equivalent to the bytecode returned otherwise. This method is + mainly used internally. + + `defer_init` is use internally to aid the module code generator. This + causes the generated code to be able to import without the global + environment variable to be set. + + .. versionadded:: 2.4 + `defer_init` parameter added. + """ + source_hint = None + try: + if isinstance(source, str): + source_hint = source + source = self._parse(source, name, filename) + source = self._generate(source, name, filename, defer_init=defer_init) + if raw: + return source + if filename is None: + filename = "